  :root {
    --orange-primary: #F04122;
    --orange-secondary: #FD853B;
    --midnight: #171923;
    --midnight-soft: #1e2235;
    --midnight-lighter: #2a2f48;
    --teal: #1DA1A8;
    --teal-dark: #178a90;
    --slate-100: #F7FAFC;
    --slate-200: #EDF2F7;
    --slate-300: #E2E8F0;
    --slate-400: #A0AEC0;
    --slate-500: #718096;
    --slate-600: #4A5568;
    --white: #FFFFFF;
    --gradient-brand: linear-gradient(135deg, #F04122 0%, #FD853B 100%);
    --gradient-dark: linear-gradient(180deg, #171923 0%, #1e2235 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 40px rgba(240,65,34,0.15);
    --radius: 8px;
    --radius-lg: 16px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--midnight);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,65,34,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,161,168,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 32px 100px;
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(240,65,34,0.12);
    border: 1px solid rgba(240,65,34,0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange-primary);
    animation: pulse-dot 2s ease infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--orange-secondary);
  }
  .hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate-400);
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s 0.2s ease both;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-brand);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(240,65,34,0.3);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(240,65,34,0.4);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
  }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--midnight);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--slate-300);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-outline:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
  }
  .btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--teal);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(29,161,168,0.3);
  }
  .btn-teal:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(29,161,168,0.4);
    background: var(--teal-dark);
  }

  /* Hero right: stats card */
  .hero-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s 0.4s ease both;
  }
  .hero-card-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-500);
    margin-bottom: 28px;
  }
  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item {
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
  }
  .stat-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(240,65,34,0.15);
  }
  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-number em { color: var(--orange-secondary); font-style: normal; }
  .stat-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--slate-500);
    line-height: 1.4;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============ TRUST BAR ============ */
  .trust-bar {
    background: var(--slate-100);
    padding: 28px 0;
    border-bottom: 1px solid var(--slate-200);
  }
  .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-600);
  }
  .trust-icon {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    color: var(--teal);
    font-size: 14px;
  }

  /* ============ SECTION BASE ============ */
  .section { padding: 100px 0; }
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange-primary);
    margin-bottom: 16px;
  }
  .section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
  }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 20px;
  }
  .section-subtitle {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 640px;
    margin-bottom: 56px;
  }

  /* ============ CONTEXT ============ */
  .context-section { background: var(--white); }
  .context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .context-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    background: var(--white);
    transition: all 0.3s ease;
  }
  .context-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }
  .context-card.highlight {
    border-color: var(--orange-primary);
    background: linear-gradient(135deg, rgba(240,65,34,0.02) 0%, rgba(253,133,59,0.02) 100%);
  }
  .context-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .context-icon.red { background: rgba(240,65,34,0.08); color: var(--orange-primary); }
  .context-icon.teal { background: rgba(29,161,168,0.08); color: var(--teal); }
  .context-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 12px;
  }
  .context-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-500);
  }

  /* ============ MARKET TRANSITION ============ */
  .transition-section {
    background: var(--slate-100);
    position: relative;
    overflow: hidden;
  }
  .transition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .transition-visual {
    position: relative;
  }
  .flow-diagram {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .flow-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    transition: all 0.3s;
  }
  .flow-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
  }
  .flow-item + .flow-item { margin-top: -1px; }
  .flow-item.declining {
    border-color: rgba(240,65,34,0.2);
    background: rgba(240,65,34,0.02);
  }
  .flow-item.growing {
    border-color: rgba(29,161,168,0.3);
    background: rgba(29,161,168,0.03);
  }
  .flow-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
  }
  .flow-icon.red { background: rgba(240,65,34,0.1); color: var(--orange-primary); }
  .flow-icon.teal { background: rgba(29,161,168,0.1); color: var(--teal); }
  .flow-icon.neutral { background: var(--slate-200); color: var(--slate-500); }
  .flow-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 4px;
  }
  .flow-content p {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.5;
  }
  .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: var(--slate-400);
    font-size: 14px;
    position: relative;
    z-index: 1;
  }

  .transition-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 16px;
  }
  .transition-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 20px;
  }
  .transition-text .highlight-box {
    padding: 24px;
    background: var(--white);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 28px;
  }
  .highlight-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 0;
  }
  .highlight-box strong { color: var(--midnight); }

  /* ============ MARKET DATA ============ */
  .market-data-section {
    background: var(--white);
    padding-top: 0;
  }
  .market-data-panel {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
  }
  .market-data-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,65,34,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .market-data-panel-inner {
    position: relative;
    z-index: 2;
  }
  .market-data-label { color: var(--orange-secondary); }
  .market-data-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .market-data-subtitle {
    font-size: 15px;
    color: var(--slate-400);
    max-width: 640px;
    margin-bottom: 44px;
    line-height: 1.7;
  }
  .market-data-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  .market-data-kpi {
    padding: 28px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
  }
  .market-data-kpi-value {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    line-height: 1;
  }
  .market-data-kpi-value.orange { color: var(--orange-primary); }
  .market-data-kpi-value.orange-soft { color: var(--orange-secondary); }
  .market-data-kpi-value.teal { color: var(--teal); }
  .market-data-kpi-text {
    font-size: 12px;
    color: var(--slate-400);
    margin-top: 6px;
    line-height: 1.4;
  }
  .market-data-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .market-data-column-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .market-data-arrow.down { color: var(--orange-primary); }
  .market-data-arrow.up { color: var(--teal); }
  .market-data-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .market-data-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .market-data-row-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-400);
    width: 58px;
    flex-shrink: 0;
  }
  .market-data-track {
    flex: 1;
    min-height: 28px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
  }
  .market-data-fill {
    min-height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .market-data-fill.orange { background: linear-gradient(90deg, #F04122, #FD853B); }
  .market-data-fill.orange-fade { background: rgba(240,65,34,0.4); }
  .market-data-fill.teal { background: linear-gradient(90deg, #178a90, #1DA1A8); }
  .market-data-fill.teal-dashed {
    background: rgba(29,161,168,0.2);
    border: 1px dashed rgba(29,161,168,0.4);
    color: var(--teal);
    font-weight: 500;
  }
  .market-data-row-note {
    font-size: 11px;
    color: var(--slate-500);
    white-space: nowrap;
  }
  .market-data-row-note-inline {
    flex: 1;
    white-space: normal;
  }
  .market-data-source {
    font-size: 11px;
    color: var(--slate-600);
    margin-top: 32px;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
  }

  .content-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-primary);
    text-decoration: none;
    transition: gap 0.2s;
  }
  .content-link:hover { gap: 10px; }
  .content-link-pdf {
    gap: 8px;
    margin-top: 16px;
  }
  .content-link-pdf:hover { gap: 12px; }

  /* ============ COVERAGE ============ */
  .coverage-section { background: var(--white); }
  .coverage-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
  }
  .pillar-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .pillar-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
  .pillar-card:hover::after { transform: scaleX(1); }
  .pillar-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 16px;
    font-size: 22px;
    background: linear-gradient(135deg, rgba(240,65,34,0.06) 0%, rgba(253,133,59,0.06) 100%);
    color: var(--orange-primary);
  }
  .pillar-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 8px;
  }
  .pillar-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--slate-500);
  }

  .coverage-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .coverage-list h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .coverage-list h3 .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange-primary);
  }
  .coverage-list ul { list-style: none; }
  .coverage-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 14px;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .coverage-list li:last-child { border-bottom: none; }
  .coverage-list li i {
    color: var(--teal);
    font-size: 12px;
    width: 20px;
    text-align: center;
  }

  /* ============ WEBINAR SECTION ============ */
  .webinar-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
  }
  .webinar-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,161,168,0.08) 0%, transparent 70%);
  }
  .webinar-section .section-label { color: var(--orange-secondary); }
  .webinar-section .section-title { color: var(--white); }
  .webinar-section .section-subtitle { color: var(--slate-400); }

  .webinar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .webinar-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .webinar-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
  }
  .webinar-card-header {
    padding: 32px 32px 0;
  }
  .webinar-number {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(29,161,168,0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .webinar-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .webinar-card .webinar-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-400);
    margin-bottom: 24px;
  }
  .webinar-card-body {
    padding: 0 32px 32px;
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .webinar-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }
  .webinar-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--slate-400);
  }
  .webinar-meta-item i {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: var(--slate-400);
    font-size: 13px;
  }
  .webinar-agenda {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    margin-bottom: 24px;
    min-height: 186px;
  }
  .webinar-agenda h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-500);
    margin-bottom: 12px;
  }
  .agenda-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
  }
  .agenda-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    white-space: nowrap;
    min-width: 48px;
    padding-top: 1px;
  }
  .agenda-text {
    font-size: 13px;
    color: var(--slate-400);
    line-height: 1.4;
  }
  .webinar-card .btn-teal,
  .webinar-card .btn-outline-light {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    min-height: 48px;
  }
  .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-outline-light:hover {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.04);
  }

  /* ============ TIMELINE ============ */
  .timeline-section { background: var(--slate-100); }
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--slate-300);
  }
  .timeline-item {
    display: flex;
    gap: 28px;
    padding-bottom: 40px;
    position: relative;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-dot {
    width: 50px; min-width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--slate-300);
    z-index: 2;
    font-size: 18px;
    color: var(--slate-400);
    transition: all 0.3s;
  }
  .timeline-item:hover .timeline-dot {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    box-shadow: 0 0 0 4px rgba(240,65,34,0.08);
  }
  .timeline-item.active .timeline-dot {
    border-color: var(--orange-primary);
    background: var(--orange-primary);
    color: var(--white);
  }
  .timeline-item.completed .timeline-dot {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--white);
  }
  .timeline-card {
    flex: 1;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
  }
  .timeline-item:hover .timeline-card {
    box-shadow: var(--shadow-md);
  }
  .timeline-week {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange-primary);
    margin-bottom: 4px;
  }
  .timeline-date {
    font-size: 12px;
    color: var(--slate-400);
    margin-bottom: 10px;
  }
  .timeline-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 8px;
  }
  .timeline-card p {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.6;
  }
  .timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
  }
  .timeline-tag.email { background: rgba(240,65,34,0.08); color: var(--orange-primary); }
  .timeline-tag.webinar { background: rgba(29,161,168,0.08); color: var(--teal); }
  .timeline-tag.deadline { background: rgba(240,65,34,0.12); color: var(--orange-primary); }

  /* ============ WHY SECTION ============ */
  .why-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .why-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
  }
  .why-card:hover {
    background: var(--white);
    border-color: rgba(240,65,34,0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .why-card-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: rgba(240,65,34,0.2);
    margin-bottom: 16px;
    line-height: 1;
  }
  .why-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 12px;
  }
  .why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
  }

  /* ============ PRICING ============ */
  .pricing-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
  }
  .pricing-section::before {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,65,34,0.06) 0%, transparent 70%);
  }
  .pricing-section .section-label { color: var(--orange-secondary); }
  .pricing-section .section-title { color: var(--white); }
  .pricing-section .section-subtitle { color: var(--slate-400); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    align-items: stretch;
  }
  .price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
  }
  .price-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
  }
  .price-card.featured {
    border-color: var(--orange-primary);
    background: rgba(255,255,255,0.06);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
  }
  .price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
  }
  .price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient-brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .price-tier {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate-400);
    margin-bottom: 8px;
  }
  .price-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
  }
  .price-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .price-amount sup {
    font-size: 28px;
    vertical-align: super;
    top: -8px;
    position: relative;
  }
  .price-period {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 28px;
  }
  .price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
  }
  .price-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--slate-400);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .price-features li i {
    color: var(--teal);
    margin-top: 3px;
    font-size: 12px;
  }
  .price-card .btn-primary,
  .price-card .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
  .pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--slate-500);
    max-width: 520px;
    margin: 0 auto;
  }

  /* ============ FORM SECTION ============ */
  .form-section {
    background: var(--white);
    position: relative;
  }
  .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .form-intro h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 20px;
  }
  .form-intro > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 36px;
  }
  .form-benefits { list-style: none; }
  .form-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--slate-200);
  }
  .form-benefits li:last-child { border-bottom: none; }
  .benefit-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(29,161,168,0.08);
    color: var(--teal);
    font-size: 16px;
  }
  .form-benefits li strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 2px;
  }
  .form-benefits li .benefit-text {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.5;
  }

  /* Form card */
  .form-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
  }
  .form-card form {
    display: block;
  }
  .form-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--midnight);
    margin-bottom: 8px;
  }
  .form-card > p,
  .form-card form > p {
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 32px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 6px;
  }
  .form-group label .optional {
    font-weight: 400;
    color: var(--slate-400);
    white-space: nowrap;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: var(--midnight);
    background: var(--slate-100);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius);
    outline: none;
    transition: all 0.2s ease;
  }
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23718096' d='M6 8 .8 1.8 2.2.4 6 4.9 9.8.4l1.4 1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 42px;
  }
  .form-group select:invalid { color: var(--slate-400); }
  .form-group option { color: var(--midnight); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240,65,34,0.08);
  }
  .form-group .is-invalid {
    border-color: var(--orange-primary);
    background: #fff8f6;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--slate-400); }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
  }
  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-brand);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(240,65,34,0.25);
    margin-top: 8px;
  }
  .form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(240,65,34,0.35);
  }
  .form-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: 0 4px 20px rgba(240,65,34,0.15);
  }
  .form-error {
    display: none;
    margin-top: 12px;
    color: var(--orange-primary);
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
  }
  .form-error.show { display: block; }
  .form-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .form-disclaimer {
    margin-top: 16px;
    font-size: 11px;
    color: var(--slate-400);
    line-height: 1.5;
    text-align: center;
  }
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form-success.show { display: block; }
  .form-success-icon {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(29,161,168,0.1);
    color: var(--teal);
    font-size: 28px;
  }
  .form-success h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--midnight);
    margin-bottom: 12px;
  }
  .form-success p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
  }

  /* ============ FOOTER ============ */
  .footer {
    background: var(--midnight);
    padding: 56px 0 32px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-logo-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
    display: block;
  }
  .footer-brand .logo-mark { color: var(--white); }
  .footer-brand p {
    font-size: 13px;
    color: var(--slate-500);
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.6;
  }
  .footer-contact { text-align: right; }
  .footer-contact a {
    display: block;
    font-size: 14px;
    color: var(--slate-400);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--orange-secondary); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-legal {
    font-size: 11px;
    color: var(--slate-500);
    line-height: 1.6;
    max-width: 800px;
  }
  .footer-copy {
    font-size: 12px;
    color: var(--slate-500);
    white-space: nowrap;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .coverage-pillars { grid-template-columns: repeat(2, 1fr); }
    .market-data-panel { padding: 44px 36px; }
    .market-data-kpis { grid-template-columns: repeat(2, 1fr); }
    .market-data-columns { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .price-card.featured { transform: scale(1); }
    .price-card.featured:hover { transform: translateY(-4px); }
    .why-grid { grid-template-columns: 1fr; max-width: 480px; }
    .form-wrapper { grid-template-columns: 1fr; }
    .form-card { position: static; }
    .context-grid { grid-template-columns: 1fr; }
    .webinar-grid { grid-template-columns: 1fr; }
    .transition-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    .hero-inner { padding: 120px 24px 80px; }
    .section { padding: 72px 0; }
    .section-inner { padding: 0 24px; }
    .market-data-panel { padding: 36px 24px; }
    .market-data-kpis { grid-template-columns: 1fr; }
    .market-data-row-note {
      width: 100%;
      padding-left: 70px;
      white-space: normal;
    }
    .coverage-pillars { grid-template-columns: 1fr; }
    .coverage-list-grid { grid-template-columns: 1fr; }
    .form-card { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .webinar-agenda { min-height: 0; }
    .trust-bar-inner { gap: 24px; }
    .footer-contact { text-align: left; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .timeline::before { left: 24px; }
  }

  /* ============ SCROLL ANIMATIONS ============ */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
