:root {
    --orange:    #D96C1A;
    --red:       #E63D29;
    --red-dk:    #B83232;
    --yellow:    #E8B931;
    --white:     #ffffff;
    --off-white: #faf9f7;
    --text-dk:   #111111;
    --text-md:   #4a4a4a;
    --text-lt:   #999;
    --font-d:    'Exo 2', sans-serif;
    --font-lbl:  'Rajdhani', sans-serif;
    --font-ser:  'Crimson Pro', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-d); background: #fff; }
 
 
/* =============================================
   HERO — full-bleed split
============================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 72vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fff;
}
 
/* ── LEFT text column ── */
.hero-left {
    position: relative;
    z-index: 2;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 80px;
    background: #fff;
}
 
/* vertical accent bar */
.hero-left::after {
    content: '';
    position: absolute; right: 0; top: 10%; bottom: 10%; width: 3px;
    background: linear-gradient(180deg, transparent, var(--orange) 35%, var(--red) 65%, transparent);
    border-radius: 2px;
}
 
/* ── RIGHT image column ── */
.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.hero-right img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 8s ease;
}
.hero:hover .hero-right img { transform: scale(1.04); }
 
.hero-right::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, transparent 35%);
}
.hero-right::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: rgba(20,10,5,0.22);
}
 
/* floating badge on image */
.hero-badge {
    position: absolute;
    bottom: 36px; left: -28px;
    z-index: 4;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-lbl);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 10px 22px 10px 28px;
    border-radius: 0 6px 6px 0;
    box-shadow: 4px 6px 24px rgba(217,108,26,0.45);
    display: flex; align-items: center; gap: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
    animation: badgeIn 0.8s 0.7s ease both;
}
.hero-badge i { font-size: 0.85rem; }
 
@keyframes badgeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}
 
/* ── Left content elements ── */
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-lbl);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
}
.hero-tag::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}
 
.hero-h1 {
    font-family: var(--font-d);
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.5px;
    color: var(--text-dk);
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeUp 0.65s 0.08s ease both;
}
.hero-h1 .accent-word {
    display: block;
    -webkit-text-stroke: 2px var(--orange);
    color: transparent;
    letter-spacing: -1px;
}
 
.hero-serif {
    font-family: var(--font-ser);
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-lt);
    margin-bottom: 30px;
    animation: fadeUp 0.65s 0.16s ease both;
}
 
.hero-divider {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
    animation: fadeUp 0.65s 0.22s ease both;
}
.hero-divider-line {
    height: 2px; width: 52px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    border-radius: 2px;
}
.hero-divider-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px rgba(230,61,41,0.5);
}
 
.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-md);
    max-width: 400px;
    margin-bottom: 40px;
    animation: fadeUp 0.65s 0.28s ease both;
}
 
/* stats row */
.hero-stats {
    display: flex; gap: 0;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
    animation: fadeUp 0.65s 0.36s ease both;
}
.hero-stat {
    padding: 14px 22px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.08);
    background: var(--off-white);
}
.hero-stat:last-child { border-right: none; }
.hs-num {
    font-family: var(--font-lbl);
    font-size: 1.35rem; font-weight: 700;
    color: var(--orange); line-height: 1;
    margin-bottom: 3px;
}
.hs-lbl {
    font-family: var(--font-lbl);
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-lt);
}
 
/* CTA button */
.hero-cta {
    margin-top: 32px;
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: #fff; text-decoration: none;
    font-family: var(--font-lbl);
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 0 rgba(184,50,50,0.4), 0 8px 24px rgba(217,108,26,0.3);
    transition: all 0.2s ease;
    width: fit-content;
    animation: fadeUp 0.65s 0.44s ease both;
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(184,50,50,0.35), 0 12px 32px rgba(217,108,26,0.4);
    color: #fff;
}
.hero-cta i { font-size: 0.9rem; transition: transform 0.2s; }
.hero-cta:hover i { transform: translateX(4px); }
 
/* geometric bg deco */
.hero-deco { position: absolute; pointer-events: none; }
.hd1 {
    top: -60px; left: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(217,108,26,0.07);
}
.hd2 {
    top: 20px; left: 20px;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(217,108,26,0.1);
}
.hd3 {
    bottom: -40px; right: 20px;
    width: 160px; height: 160px;
    border: 2px solid rgba(230,61,41,0.06);
    transform: rotate(30deg);
}
 
 
/* =============================================
   INTRO — dark editorial band + white features
============================================= */
.intro { position: relative; background: var(--white); overflow: hidden; }
 
.intro-band {
    background: linear-gradient(135deg, #111111 0%, #2a1a10 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.intro-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.015) 0px,
            rgba(255,255,255,0.015) 1px,
            transparent 1px,
            transparent 12px
        );
}
 
/* giant ghost word */
.intro-bg-word {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-d);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    letter-spacing: -8px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
 
.intro-band-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 48px;
    position: relative; z-index: 1;
}
 
.intro-band-left { flex: 1; }
 
.intro-eyebrow {
    font-family: var(--font-lbl);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--orange);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}
.intro-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: var(--orange); border-radius: 2px;
}
 
.intro-h2 {
    font-family: var(--font-d);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.intro-h2 em {
    font-style: normal;
    color: var(--orange);
}
 
.intro-serif {
    font-family: var(--font-ser);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
}
 
/* vertical divider */
.intro-vr {
    width: 1px; align-self: stretch; flex-shrink: 0;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.12) 70%, transparent);
}
 
.intro-band-right { width: 400px; flex-shrink: 0; }
.intro-desc {
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.55);
}
 
/* white feature cards */
.intro-features {
    background: #fff;
    padding: 56px 0 60px;
}
.intro-features-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.07);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}
.intro-feat {
    background: #fff;
    padding: 38px 28px;
    text-align: center;
    transition: background 0.25s;
    cursor: default;
    position: relative;
}
.intro-feat::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--red));
    border-radius: 2px;
    transition: width 0.35s ease;
}
.intro-feat:hover::after { width: 60%; }
.intro-feat:hover { background: var(--off-white); }
 
.feat-icon-wrap {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(217,108,26,0.08), rgba(230,61,41,0.05));
    border: 1.5px solid rgba(217,108,26,0.18);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.28s;
}
.intro-feat:hover .feat-icon-wrap {
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(217,108,26,0.3);
    transform: translateY(-4px);
}
.feat-icon-wrap i {
    font-size: 1.35rem;
    color: var(--orange);
    transition: color 0.28s;
}
.intro-feat:hover .feat-icon-wrap i { color: #fff; }
 
.feat-title {
    font-family: var(--font-lbl);
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--text-dk);
    margin-bottom: 10px;
}
.feat-body {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-lt);
}
 
 
/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
 
.hero-right { animation: fadeIn 1.1s 0.1s ease both; }
.intro-band-inner { animation: fadeUp 0.7s 0.15s ease both; }
.intro-feat:nth-child(1) { animation: fadeUp 0.55s 0.05s ease both; }
.intro-feat:nth-child(2) { animation: fadeUp 0.55s 0.15s ease both; }
.intro-feat:nth-child(3) { animation: fadeUp 0.55s 0.25s ease both; }
.intro-feat:nth-child(4) { animation: fadeUp 0.55s 0.35s ease both; }
 
 
/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
    .hero { flex-direction: column; min-height: auto; }
    .hero-left { width: 100%; padding: 60px 28px 44px; }
    .hero-left::after { display: none; }
    .hero-right { min-height: 320px; }
    .hero-badge { left: 16px; }
    .intro-band-inner { flex-direction: column; gap: 28px; }
    .intro-vr { display: none; }
    .intro-band-right { width: 100%; }
    .intro-features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .hero-stats { flex-wrap: wrap; width: 100%; }
    .hero-stat  { flex: 1; min-width: 100px; }
    .intro-features-inner { grid-template-columns: 1fr 1fr; }
    .intro-band-inner { padding: 0 24px; }
    .intro-features-inner { margin: 0; }
    .intro-features { padding: 0 16px 44px; }
}