
/* Homepage Css */
:root {
    --gold: #B8952A;
    --gold-light: #D4AF5A;
    --gold-pale: #F5EDD6;
    --gold-dim: rgba(184,149,42,0.18);
    --navy: #0D1B2A;
    --navy-mid: #152335;
    --navy-light: #1E3348;
    --slate: #2B3F55;
    --mist: #8BA3BC;
    --cream: #FAF8F3;
    --white: #FFFFFF;
    --text-dark: #0D1B2A;
    --text-mid: #3A5068;
    --text-muted: #6B8199;
    --border: rgba(184,149,42,0.18);
    --border-light: rgba(184,149,42,0.1);
    --border-faint: rgba(184,149,42,0.09);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    /* Aliases used by peacock-services styles */
    --font-d: 'Cormorant Garamond', Georgia, serif;
    --font-b: 'DM Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
    overflow-x: hidden;
    max-width: 100vw;
  }

  body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }

  /* ───── NAVIGATION ───── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: rgba(13,27,42,0.0);
    transition: background 0.4s var(--ease), backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(13,27,42,0.95);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 36px;
    height: 36px;
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1.2;
  }
  .nav-logo-sub {
    display: block;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-family: var(--font-body);
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    padding: 10px 22px;
    border: 1px solid var(--gold);
    color: var(--gold-light) !important;
    border-radius: 2px;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
    transition: background 0.25s, color 0.25s !important;
  }
  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
  }
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 9999;
  }
  .nav-hamburger span {
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
  }
  .nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ───── HERO ───── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184,149,42,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(30,51,72,0.9) 0%, transparent 50%),
      linear-gradient(135deg, #0D1B2A 0%, #152335 40%, #0D1B2A 100%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(184,149,42,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,149,42,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 80%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 8% 60px;
    max-width: 720px;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
  }
  .hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .hero-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.4s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.6s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.8s forwards;
  }
  .btn-primary {
    padding: 16px 36px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }
  .btn-ghost {
    padding: 15px 36px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }
  /* Hero stats bar */
  .hero-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: 24px 8%;
    border-top: 1px solid rgba(184,149,42,0.15);
    background: rgba(13,27,42,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    gap: 0;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.2s forwards;
  }
  .stat-item {
    flex: 1;
    padding: 0 32px 0 0;
    border-right: 1px solid rgba(184,149,42,0.12);
  }
  .stat-item:last-child { border-right: none; padding-right: 0; }
  .stat-item:not(:first-child) { padding-left: 32px; }
  .stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
  }
  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    right: 8%;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.5s forwards;
  }
  .scroll-hint span {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(184,149,42,0.6), transparent);
    animation: pulse 2s ease-in-out infinite;
  }

  /* ───── TRUST BAR ───── */
  .trust-bar {
    background: var(--white);
    padding: 28px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    white-space: nowrap;
  }
  .trust-partners {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .trust-partner {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-mid);
    opacity: 0.55;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    cursor: default;
  }
  .trust-partner:hover { opacity: 0.85; }
  .trust-badges {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 400;
  }
  .trust-badge-icon {
    width: 20px;
    height: 20px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
  }

  /* ───── KOTAK MARQUEE ───── */
  .kotak-marquee-section {
    background: var(--navy);
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .kotak-marquee-track {
    display: flex;
    flex: none;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
  }
  .kotak-marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
  }
  .kotak-marquee-item {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
  }
  .kotak-accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
  }
  .kotak-marquee-divider {
    color: var(--gold);
    font-size: 14px;
    opacity: 0.6;
  }

  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ───── SECTION COMMON ───── */
  section { padding: 100px 8%; }
  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .section-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.01em;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 560px;
    margin-top: 16px;
  }

  /* ───── PHILOSOPHY ───── */
  .philosophy {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 100px 8%;
  }
  .philosophy::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,149,42,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .philosophy-left .section-title { color: var(--white); }
  .philosophy-left .section-subtitle { color: rgba(255,255,255,0.45); }
  .philosophy-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 28px;
    margin-top: 48px;
    opacity: 0.85;
  }
  .philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
  }
  .phil-card {
    padding: 32px;
    border: 1px solid rgba(184,149,42,0.15);
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
  }
  .phil-card:hover {
    border-color: rgba(184,149,42,0.4);
    background: rgba(184,149,42,0.04);
  }
  .phil-card-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 400;
  }
  .phil-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
  }
  .phil-card-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
  }

  /* ───── SERVICES ───── */
  .services { background: var(--cream); }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border-light);
  }
  .service-card {
    background: var(--white);
    padding: 40px 36px;
    transition: background 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
    transform-origin: left;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover {
    background: var(--navy);
  }
  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }
  .service-number {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
    opacity: 0.6;
  }
  .service-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.25;
    transition: color 0.3s;
  }
  .service-card:hover .service-name { color: var(--white); }
  .service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    transition: color 0.3s;
  }
  .service-card:hover .service-desc { color: rgba(255,255,255,0.5); }
  .service-arrow {
    margin-top: 24px;
    font-size: 18px;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
    display: block;
  }
  .service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* ───── WHY PEACOCK ───── */
  .why-peacock {
    background: var(--navy);
    padding: 100px 8%;
    color: var(--white);
  }
  .why-peacock .section-title {
    color: var(--white);
  }
  .why-peacock .section-subtitle {
    color: rgba(255,255,255,0.6);
  }
  .advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 149, 42, 0.15);
    padding: 40px 32px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
  }
  .advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(184, 149, 42, 0.05);
    border-color: rgba(184, 149, 42, 0.3);
  }
  .advantage-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }
  .advantage-icon {
    width: 100%;
    height: 100%;
  }
  .advantage-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .advantage-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--white);
  }
  .advantage-desc {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
  }
  .advantage-accent-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
  }
  .advantage-card:hover .advantage-accent-line {
    transform: scaleX(1);
  }
  .advantage-counters {
    display: flex;
    justify-content: space-around;
    margin: 80px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .advantage-counter {
    text-align: center;
  }
  .advantage-counter .counter-value {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold-light);
    display: inline-block;
    line-height: 1;
  }
  .advantage-counter .counter-suffix {
    font-size: 20px;
    color: var(--gold);
    display: inline-block;
    margin-left: 4px;
  }
  .advantage-counter .counter-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
  }
  .advantage-counter-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  .advantage-quote-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  .advantage-quote {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
  }
  .advantage-quote-highlight {
    color: var(--white);
    border-bottom: 1px solid var(--gold);
  }

  /* ───── PERFORMANCE ───── */
  .performance {
    background: var(--white);
    padding: 100px 8%;
  }
  .performance-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .metric-card {
    padding: 28px;
    background: var(--cream);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .metric-card.featured {
    background: var(--navy);
    grid-column: span 2;
  }
  .metric-value {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--gold-light);
  }
  .metric-card:not(.featured) .metric-value { color: var(--navy); }
  .metric-name {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
  }
  .metric-card.featured .metric-name { color: rgba(255,255,255,0.45); }
  .metric-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    background: var(--gold);
    width: 60%;
    border-radius: 0 2px 2px 0;
  }
  /* Chart area */
  .perf-chart {
    position: relative;
  }
  .chart-title {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  .chart-container {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .chart-svg { width: 100%; height: 100%; }

  /* ───── PROCESS ───── */
  .process {
    background: var(--cream);
    padding: 100px 8%;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: var(--border);
    z-index: 0;
  }
  .process-step {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
  }
  .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin: 0 auto 24px;
    transition: background 0.3s, border-color 0.3s;
  }
  .process-step:hover .step-number {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  .step-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ───── TESTIMONIALS ───── */
  .testimonials {
    background: var(--navy);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
  }
  .testimonials::before {
    content: '"';
    position: absolute;
    top: -20px; left: 5%;
    font-family: var(--font-display);
    font-size: 280px;
    color: rgba(184,149,42,0.06);
    line-height: 1;
    pointer-events: none;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
  }
  .testimonial-card {
    padding: 36px;
    border: 1px solid rgba(184,149,42,0.12);
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
    transition: border-color 0.3s, background 0.3s;
  }
  .testimonial-card:hover {
    border-color: rgba(184,149,42,0.35);
    background: rgba(255,255,255,0.06);
  }
  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
  }
  .star {
    width: 14px;
    height: 14px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  .testimonial-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 24px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold-light);
    font-weight: 500;
  }
  .author-info { flex: 1; }
  .author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 3px;
  }
  .author-role {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
  }

  /* ───── PRICING PREVIEW ───── */
  .pricing-preview {
    background: var(--cream);
    padding: 100px 8%;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
  .pricing-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .pricing-card.featured {
    background: var(--navy);
    border-color: var(--gold);
    transform: translateY(-8px);
  }
  .pricing-card:hover:not(.featured) {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  }
  .pricing-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
  }
  .pricing-tier {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 400;
  }
  .pricing-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.1;
  }
  .pricing-card.featured .pricing-name { color: var(--white); }
  .pricing-amount {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
    margin: 20px 0 6px;
  }
  .pricing-card.featured .pricing-amount { color: var(--gold-light); }
  .pricing-amount-suffix {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
  }
  .pricing-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 28px 0;
  }
  .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    flex-grow: 1;
  }
  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.5;
  }
  .pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.6); }
  .feature-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
  }
  .pricing-cta {
    width: 100%;
    padding: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid var(--navy);
    background: transparent;
    color: var(--navy);
  }
  .pricing-card.featured .pricing-cta {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }
  .pricing-cta:hover { background: var(--navy); color: var(--white); }
  .pricing-card.featured .pricing-cta:hover { background: var(--gold-light); border-color: var(--gold-light); }

  /* ───── CTA SECTION ───── */
  .cta-section {
    background: var(--gold);
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
  }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
  }
  .cta-subtitle {
    font-size: 16px;
    color: rgba(13,27,42,0.65);
    font-weight: 300;
    margin-top: 8px;
  }
  .cta-actions {
    display: flex;
    gap: 14px;
    white-space: nowrap;
  }
  .btn-navy {
    padding: 16px 36px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.25s;
    white-space: nowrap;
  }
  .btn-navy:hover { background: var(--navy-mid); }
  .btn-outline-navy {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid rgba(13,27,42,0.4);
    color: var(--navy);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.25s;
    white-space: nowrap;
  }
  .btn-outline-navy:hover { border-color: var(--navy); }

  /* ───── FOOTER ───── */
  footer {
    background: #080F17;
    padding: 72px 8% 40px;
    color: rgba(255,255,255,0.45);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand { max-width: 300px; }
  .footer-brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
  }
  .footer-brand-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
  }
  .footer-brand-text {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 300px;
    margin-bottom: 24px;
  }
  .footer-contact-item {
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.4);
  }
  .footer-col-title {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    margin-bottom: 20px;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px;
    font-weight: 300;
  }
  .footer-legal {
    display: flex;
    gap: 24px;
  }
  .footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.6); }
  .sebi-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(184,149,42,0.2);
    border-radius: 2px;
  }
  .sebi-badge-text {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
  }

  /* ───── ANIMATIONS ───── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  @keyframes drawLine {
    from { stroke-dashoffset: 400; }
    to   { stroke-dashoffset: 0; }
  }
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--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; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ───── DASHBOARD PREVIEW ───── */
  .dashboard-preview {
    background: var(--navy);
    padding: 100px 8%;
  }
  .dashboard-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }
  .dashboard-frame {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(184,149,42,0.18);
    border-radius: 10px;
    overflow: hidden;
    max-width: 1060px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(184,149,42,0.1);
  }
  .dashboard-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(184,149,42,0.1);
    background: rgba(0,0,0,0.25);
  }
  .db-client-info {
    display: flex; align-items: center; gap: 12px;
  }
  .db-avatar {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .db-client-name {
    font-size: 13px; color: var(--white); font-weight: 400; letter-spacing: 0.02em;
  }
  .db-client-tier {
    font-size: 10px; color: var(--gold); letter-spacing: 0.14em;
    text-transform: uppercase; margin-top: 2px;
  }
  .db-live-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 10px; color: rgba(100,220,150,0.9); letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .db-live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #64DC96;
    box-shadow: 0 0 8px rgba(100,220,150,0.7);
    animation: livePulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  .db-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .db-period-label {
    font-size: 10px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  @keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .dashboard-main {
    display: grid;
    grid-template-columns: 1fr 260px;
    min-height: 300px;
  }
  .db-chart-panel {
    padding: 28px 28px 20px;
    border-right: 1px solid rgba(184,149,42,0.08);
  }
  .db-chart-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .db-chart-label {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 6px;
  }
  .db-chart-value {
    font-family: var(--font-display);
    font-size: 30px; color: var(--white); font-weight: 300; letter-spacing: -0.02em;
  }
  .db-chart-change {
    font-size: 13px; color: #64DC96; margin-top: 4px; font-weight: 300;
  }
  .db-period-tabs {
    display: flex; gap: 3px; align-self: flex-start;
  }
  .db-tab {
    font-size: 10px; letter-spacing: 0.08em; padding: 5px 10px;
    color: rgba(255,255,255,0.3); cursor: pointer; border-radius: 3px;
    transition: all 0.2s; border: 1px solid transparent;
    user-select: none;
  }
  .db-tab.active, .db-tab:hover {
    background: rgba(184,149,42,0.12);
    color: var(--gold-light);
    border-color: rgba(184,149,42,0.2);
  }
  .db-chart-svg {
    width: 100%; overflow: visible;
  }
  .db-chart-line-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawDashLine 2s cubic-bezier(0.4,0,0.2,1) forwards 0.8s;
  }
  @keyframes drawDashLine {
    to { stroke-dashoffset: 0; }
  }
  .db-right-panel {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .db-alloc-label {
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 12px;
  }
  .db-alloc-bar {
    display: flex; height: 5px; border-radius: 3px; overflow: hidden; gap: 2px; margin-bottom: 12px;
  }
  .db-alloc-seg {
    height: 100%; border-radius: 2px; transition: opacity 0.2s;
    cursor: default;
  }
  .db-alloc-legend {
    display: flex; flex-direction: column; gap: 5px;
  }
  .db-legend-row {
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; color: rgba(255,255,255,0.35);
  }
  .db-legend-dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  }
  .db-metrics-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  }
  .db-metric-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184,149,42,0.1);
    border-radius: 6px;
    padding: 12px 10px;
    transition: border-color 0.2s;
  }
  .db-metric-card:hover { border-color: rgba(184,149,42,0.25); }
  .db-metric-lbl {
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 6px;
  }
  .db-metric-val {
    font-family: var(--font-display);
    font-size: 17px; color: var(--white); font-weight: 300;
  }
  .db-metric-val.green { color: #64DC96; }
  .db-metric-val.gold { color: var(--gold-light); }
  .dashboard-statusbar {
    display: flex;
    border-top: 1px solid rgba(184,149,42,0.08);
    background: rgba(0,0,0,0.2);
  }
  .db-status-item {
    flex: 1; display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    border-right: 1px solid rgba(184,149,42,0.06);
    font-size: 11px; color: rgba(255,255,255,0.3);
    letter-spacing: 0.03em;
  }
  .db-status-item:last-child { border-right: none; }
  .db-status-pip {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.15); flex-shrink: 0;
  }
  .db-status-pip.green { background: #64DC96; box-shadow: 0 0 5px rgba(100,220,150,0.5); }
  .db-status-pip.gold { background: var(--gold); box-shadow: 0 0 5px rgba(184,149,42,0.5); }

  /* Metric top cards row */
  .db-metrics-row {
    display: flex;
    border-bottom: 1px solid rgba(184,149,42,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .db-metrics-row::-webkit-scrollbar { display: none; }
  .db-metric-top-card {
    flex: 1;
    min-width: 140px;
    padding: 16px 18px 12px;
    border-right: 1px solid rgba(184,149,42,0.07);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .db-metric-top-card:last-child { border-right: none; }
  .db-metric-top-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
  }
  .db-metric-top-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .db-sparkline {
    width: 100%;
    height: 32px;
    margin: 4px 0;
    overflow: visible;
  }
  .db-metric-top-change {
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.3);
  }
  .db-metric-top-change.positive { color: #64DC96; }

  /* Asset category tabs */
  .db-asset-tabs {
    display: flex;
    gap: 4px;
    padding: 12px 0 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid rgba(184,149,42,0.08);
    margin-top: 8px;
  }
  .db-asset-tabs::-webkit-scrollbar { display: none; }
  .db-asset-tab {
    font-size: 10px;
    letter-spacing: 0.07em;
    white-space: nowrap;
    padding: 5px 12px;
    border-radius: 3px;
    cursor: pointer;
    color: rgba(255,255,255,0.3);
    border: 1px solid transparent;
    transition: all 0.2s;
    user-select: none;
    flex-shrink: 0;
  }
  .db-asset-tab.active {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    border-color: var(--gold);
  }
  .db-asset-tab:not(.active):hover {
    background: rgba(184,149,42,0.1);
    color: var(--gold-light);
    border-color: rgba(184,149,42,0.2);
  }

  /* Category breakdown list */
  .db-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .db-cat-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .db-cat-name {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
    width: 90px;
    flex-shrink: 0;
  }
  .db-cat-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
  }
  .db-cat-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .db-cat-pct {
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    width: 28px;
    text-align: right;
    flex-shrink: 0;
  }

  /* ───── MOBILE ───── */

  @media (max-width: 900px) {
    /* NAV */
    .nav-hamburger { display: flex !important; position: fixed !important; right: 5%; top: 22px; z-index: 110000 !important; }
    .nav-links {
      position: fixed;
      top: 0; right: -100vw; left: auto;
      width: 80vw; height: 100vh;
      background: #0D1B2A;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 36px;
      transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 100000;
      padding: 80px 5% 40px;
      display: flex;
      box-shadow: -8px 0 32px rgba(0,0,0,0.5);
    }
    .nav-links.open { right: 0; }
    .nav-links li { opacity: 1; transform: none; width: 100%; text-align: center; }
    .nav-links a { font-size: 22px; }

    /* HERO — column layout so stats never overlap content */
    .hero {
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
    }
    .hero-content {
      padding-top: 80px;
      padding-bottom: 32px;
      flex: 1;
    }
    .hero-eyebrow { margin-bottom: 10px; }
    .hero-title { font-size: 34px; margin-bottom: 12px; }
    .hero-subtitle { margin-bottom: 20px; font-size: 14px; line-height: 1.6; }
    .hero-actions { gap: 10px; flex-direction: column; align-items: flex-start; }
    .scroll-hint { display: none; }

    /* HERO STATS — back in flow, below content, no overlap */
    .hero-stats {
      position: relative !important;
      bottom: auto; left: auto; right: auto;
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 20px 0;
      padding: 20px 5%;
      width: 100%;
    }
    .stat-item {
      padding: 0 !important;
      margin: 0 !important;
      text-align: left !important;
      border-right: none !important;
    }
    .stat-number { text-align: left !important; }
    .stat-label { text-align: left !important; }

    /* KOTAK MARQUEE */
    .kotak-marquee-item { font-size: 18px; }

    /* SERVICES */
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; }

    /* PHILOSOPHY */
    .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }

    /* WHY PEACOCK */
    .advantage-grid { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
    .advantage-counters { flex-wrap: wrap; gap: 32px; margin: 48px 0; padding: 32px 0; }
    .advantage-counter { flex: 1 1 40%; text-align: center; }
    .advantage-counter-divider { display: none; }

    /* PROCESS */
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }

    /* INSIGHTS */
    .insights-grid { grid-template-columns: 1fr; }

    /* TESTIMONIALS */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* PRICING */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }

    /* CTA STRIP */
    .cta-section { grid-template-columns: 1fr; gap: 24px; padding: 56px 6%; }
    .cta-actions { flex-wrap: wrap; white-space: normal; gap: 12px; }
    .btn-navy, .btn-outline-navy { white-space: normal; width: 100%; text-align: center; }

    /* CONTACT */
    .contact-strip { grid-template-columns: 1fr; gap: 40px; }
    .contact-input { width: 100%; box-sizing: border-box; }

    /* FOOTER */
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

    /* PERFORMANCE */
    .performance-layout { grid-template-columns: 1fr; }

    /* DASHBOARD */
    .dashboard-preview { padding: 72px 5%; }
    .dashboard-topbar { flex-wrap: wrap; gap: 8px; padding: 12px 16px; }
    .dashboard-main { grid-template-columns: 1fr; }
    .db-chart-panel { border-right: none; border-bottom: 1px solid rgba(184,149,42,0.08); }
    .db-right-panel { flex-direction: column; gap: 16px; }
    .db-metric-top-card { min-width: 130px; }
    .dashboard-statusbar { flex-wrap: wrap; }
    .db-status-item { flex: 1 1 45%; }
  }

  @media (max-width: 600px) {
    /* SECTIONS */
    section { padding: 60px 5%; }

    /* HERO — further reduce on very small phones */
    .hero-content { padding-top: 75px; padding-bottom: 16px; }
    .hero-title { font-size: 30px; }

    /* WHY PEACOCK */
    .advantage-grid { grid-template-columns: 1fr; }
    .advantage-counters { gap: 24px; }
    .advantage-counter { flex: 1 1 100%; }

    /* SERVICES */
    .services-grid { grid-template-columns: 1fr; }

    /* PROCESS */
    .process-steps { grid-template-columns: 1fr; }

    /* PRICING */
    .pricing-cta { width: 100%; }

    /* CTA */
    .cta-section { padding: 48px 5%; }

    /* METRICS */
    .metrics-grid { grid-template-columns: 1fr; }
    .metric-card.featured { grid-column: span 1; }

    /* FOOTER */
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-legal { flex-wrap: wrap; gap: 14px; }

    /* DASHBOARD — phone fixes */
    .dashboard-preview { padding: 48px 5%; }
    .dashboard-frame { border-radius: 6px; }
    .dashboard-topbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 14px;
    }
    .db-client-info { width: 100%; }
    .db-client-tier { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
    .db-period-label { display: none; }

    /* Metric cards: 2×3 grid — no scroll, all visible */
    .db-metrics-row {
      display: grid !important;
      grid-template-columns: 1fr 1fr;
      overflow-x: visible;
    }
    .db-metric-top-card {
      min-width: unset !important;
      border-right: none !important;
      border-bottom: 1px solid rgba(184,149,42,0.07);
      padding: 12px 14px 10px;
    }
    .db-metric-top-card:nth-child(odd):not(:last-child) {
      border-right: 1px solid rgba(184,149,42,0.07) !important;
    }
    .db-metric-top-card:last-child {
      grid-column: 1 / -1; /* Last card spans full width */
      border-bottom: none;
    }
    .db-metric-top-value { font-size: 18px; }
    .db-metric-top-card { min-width: unset; padding: 12px 14px 10px; }
    .db-chart-value { font-size: 20px; }
    .db-chart-top { flex-direction: column; gap: 10px; align-items: flex-start; }
    .db-right-panel { flex-direction: column; }
    .db-status-item { flex: 1 1 100%; }
    .db-cat-name { width: 80px; font-size: 9px; }

  }


  /* ───── RESEARCH / BLOG PREVIEW ───── */
  .insights { background: var(--white); padding: 100px 8%; }
  .insights-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .insight-card {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s var(--ease);
    cursor: pointer;
  }
  .insight-card:hover { transform: translateY(-4px); }
  .insight-card.large { grid-row: span 2; display: flex; flex-direction: column; }
  .insight-thumb {
    height: 200px;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
  }
  .insight-card.large .insight-thumb { flex: 1; height: auto; min-height: 240px; }
  .insight-thumb-pattern {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(45deg, rgba(184,149,42,0.06) 0, rgba(184,149,42,0.06) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
  }
  .insight-thumb-label {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
  }
  .insight-body { padding: 24px; }
  .insight-meta {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .insight-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .insight-card.large .insight-title { font-size: 26px; }
  .insight-excerpt {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ───── CONTACT STRIP ───── */
  .contact-strip {
    background: var(--cream);
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .contact-form-group { margin-bottom: 20px; }
  .contact-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 400;
  }
  .contact-input {
    width: 100%;
    padding: 13px 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s;
  }
  .contact-input:focus { border-color: var(--gold); }
  .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-direct {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }
  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
  }
  .contact-item-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 400;
  }
  .contact-item-value {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
  }

  /* Make images responsive */

img {
max-width: 100%;
height: auto;
}

/* Make container responsive */

.container {
width: 100%;
padding-left: 15px;
padding-right: 15px;
margin: auto;
}

/* Mobile Responsive */

@media (max-width: 768px) {

h1{
font-size: 24px;
}

h2{
font-size: 22px;
}

h3{
font-size: 20px;
}

p{
font-size:14px;
}

/* Stack columns */

.row{
flex-direction: column;
}

/* Navbar mobile */

.navbar{
padding:10px;
}

.navbar ul{
flex-direction:column;
text-align:center;
}

/* Buttons responsive */

.btn{
width:100%;
margin-bottom:10px;
}

/* Sections spacing */

section{
padding:30px 15px;
}

}

/* Small Mobile */

@media (max-width: 480px){

h1{
font-size:20px;
}

h2{
font-size:18px;
}

p{
font-size:13px;
}

}
/* services Css */

/* ───── EXPLICIT MOBILE GRID OVERRIDES (FAILSAFE) ───── */
@media (max-width: 900px) {
  .advantage-grid, .philosophy-grid, .insights-grid, .contact-strip {
    grid-template-columns: 1fr !important;
  }
  .advantage-counters {
    flex-direction: column !important;
    gap: 40px !important;
  }
}


/* ─── PEACOCK-SERVICES PAGE STYLES ─── */

/* ─── SCROLLBAR (services page override) ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── HERO ─── */
.page-hero {
  position: relative; min-height: 62vh;
  display: flex; align-items: flex-end;
  background: var(--navy); overflow: hidden;
  padding-bottom: 72px;
}
.hero-bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 75% 30%, rgba(184,149,42,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(30,51,72,.8) 0%, transparent 55%),
    linear-gradient(150deg, #0D1B2A 0%, #152335 50%, #0D1B2A 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,149,42,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(184,149,42,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 75%);
}
/* Decorative large numeral */
.hero-deco {
  position: absolute; right: 6%; bottom: 0;
  font-family: var(--font-d); font-size: clamp(160px, 22vw, 260px);
  font-weight: 600; line-height: .85;
  color: rgba(184,149,42,.045); pointer-events: none; user-select: none;
  letter-spacing: -.04em;
}
.page-hero .hero-content {
  position: relative; z-index: 2;
  padding: 140px 6% 0;
  max-width: 760px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s var(--ease) .2s forwards;
}
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.eyebrow-text { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 300; }
.hero-title {
  font-family: var(--font-d); font-size: clamp(46px, 6.5vw, 78px);
  font-weight: 300; line-height: 1.06; color: #fff;
  letter-spacing: -.01em; margin-bottom: 22px;
  opacity: 0; animation: fadeUp .9s var(--ease) .38s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 16px; line-height: 1.8; font-weight: 300;
  color: rgba(255,255,255,.48); max-width: 520px;
  opacity: 0; animation: fadeUp .9s var(--ease) .56s forwards;
}
/* Stats strip inside hero bottom */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid rgba(184,149,42,.13);
  background: rgba(13,27,42,.82); backdrop-filter: blur(10px);
  display: flex; align-items: stretch;
  opacity: 0; animation: fadeIn .9s var(--ease) 1s forwards;
}
.hstrip-item {
  flex: 1; padding: 20px 6%; border-right: 1px solid rgba(184,149,42,.1);
  display: flex; align-items: center; gap: 14px;
}
.hstrip-item:last-child { border-right: none; }
.hstrip-icon { font-size: 22px; flex-shrink: 0; opacity: .7; }
.hstrip-num { font-family: var(--font-d); font-size: 26px; font-weight: 400; color: var(--gold-light); line-height: 1; }
.hstrip-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 3px; }

/* ─── FILTER BAR ─── */
.filter-bar {
  position: sticky; top: 72px; z-index: 100;
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 0 6%;
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0; padding: 18px 20px;
  font-size: 12.5px; font-weight: 400; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.filter-btn:hover { color: var(--text-dark); }
.filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 500; }
.filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  font-size: 10px; font-weight: 500; margin-left: 6px;
}
.filter-btn.active .filter-count { background: var(--gold); color: var(--navy); }

/* ─── SERVICE SECTIONS ─── */
.services-body { padding: 0 6% 120px; }

.service-category {
  margin-top: 80px;
  transition: opacity .3s, transform .3s;
}
.service-category.hidden { display: none; }

.cat-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border-faint);
}
.cat-header-left { }
.cat-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cat-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.cat-eyebrow-label { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 300; }
.cat-title { font-family: var(--font-d); font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--text-dark); line-height: 1.15; }
.cat-title em { font-style: italic; color: var(--gold); }
.cat-count { font-size: 12px; color: var(--text-muted); border: 1px solid var(--border); border-radius: 2px; padding: 6px 14px; font-weight: 300; white-space: nowrap; }

/* ─── CARD GRID STYLES ─── */

/* 3-col standard grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(184,149,42,.08); }
/* 4-col compact grid */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(184,149,42,.08); }
/* 2-col wide grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(184,149,42,.08); }

/* Base service card */
.svc-card {
  position: relative; background: var(--white);
  padding: 36px 32px; cursor: pointer;
  overflow: hidden;
  transition: background .32s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--navy); }

/* Card icon area */
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 4px;
  background: var(--gold-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
  transition: background .32s, border-color .32s;
}
.svc-card:hover .svc-icon-wrap { background: rgba(184,149,42,.15); border-color: rgba(184,149,42,.35); }
.svc-icon-svg { width: 24px; height: 24px; }

.svc-num { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; opacity: .65; font-weight: 300; }
.svc-name { font-family: var(--font-d); font-size: 21px; font-weight: 500; color: var(--text-dark); line-height: 1.25; margin-bottom: 12px; transition: color .32s; }
.svc-card:hover .svc-name { color: #fff; }
.svc-desc { font-size: 13.5px; line-height: 1.75; color: var(--text-muted); font-weight: 300; flex: 1; transition: color .32s; }
.svc-card:hover .svc-desc { color: rgba(255,255,255,.45); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; font-size: 12px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
.svc-link-arrow { transition: transform .2s; }
.svc-link:hover .svc-link-arrow { transform: translateX(4px); }

/* FEATURED card — larger, dark bg */
.svc-card.featured {
  background: var(--navy);
  grid-column: span 1;
}
.svc-card.featured .svc-icon-wrap { background: rgba(184,149,42,.12); border-color: rgba(184,149,42,.25); }
.svc-card.featured .svc-name { color: #fff; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,.45); }
.svc-card.featured .svc-link { opacity: 1; transform: translateY(0); }
.svc-card.featured::after { transform: scaleX(1); }
.svc-card.featured:hover { background: var(--navy-light); }

/* Tag badge on card */
.svc-tag {
  display: inline-block; padding: 4px 10px; border-radius: 2px;
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold-pale); color: var(--gold);
  margin-bottom: 14px; align-self: flex-start;
}
.svc-card.featured .svc-tag { background: rgba(184,149,42,.18); color: var(--gold-light); }
.svc-card:hover:not(.featured) .svc-tag { background: rgba(184,149,42,.18); color: var(--gold-light); }

/* Highlight row: full-width banner card */
.banner-card {
  background: var(--gold); padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.banner-card::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.07); pointer-events: none;
}
.banner-card::after { display: none; }
.banner-left {}
.banner-tag { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(13,27,42,.6); margin-bottom: 10px; font-weight: 400; }
.banner-title { font-family: var(--font-d); font-size: clamp(22px, 2.8vw, 32px); font-weight: 500; color: var(--navy); line-height: 1.2; }
.banner-sub { font-size: 14px; font-weight: 300; color: rgba(13,27,42,.65); margin-top: 8px; max-width: 480px; line-height: 1.65; }
.banner-cta { flex-shrink: 0; display: flex; gap: 12px; }
.btn-navy { padding: 14px 32px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background .2s; white-space: nowrap; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost-navy { padding: 13px 28px; background: transparent; border: 1px solid rgba(13,27,42,.35); color: var(--navy); font-size: 12px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: border-color .2s; white-space: nowrap; }
.btn-ghost-navy:hover { border-color: var(--navy); }

/* ─── FOREX SPECIAL ─── */
.forex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,149,42,.08);
}
.forex-card {
  background: var(--navy); padding: 36px 32px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: background .3s;
}
.forex-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(184,149,42,.4), transparent);
}
.forex-card:hover { background: var(--navy-light); }
.forex-card-num { font-family: var(--font-d); font-size: 11px; color: var(--gold); letter-spacing: .14em; margin-bottom: 16px; opacity: .6; }
.forex-card-name { font-family: var(--font-d); font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 11px; line-height: 1.25; }
.forex-card-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.42); font-weight: 300; }
.forex-card-arrow { margin-top: 20px; color: var(--gold); font-size: 16px; opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
.forex-card:hover .forex-card-arrow { opacity: 1; transform: translateX(0); }

/* ─── LOANS CARDS ─── */
.loans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loan-card {
  background: var(--white); border: 1px solid rgba(0,0,0,.07);
  border-radius: 4px; padding: 44px 40px;
  display: flex; gap: 28px; align-items: flex-start;
  transition: border-color .3s, box-shadow .3s;
  cursor: pointer;
}
.loan-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(184,149,42,.1); }
.loan-icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px;
}
.loan-title { font-family: var(--font-d); font-size: 22px; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; }
.loan-desc { font-size: 14px; line-height: 1.75; color: var(--text-muted); font-weight: 300; margin-bottom: 18px; }
.loan-link { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-weight: 400; }

/* ─── INSURANCE HERO CARD ─── */
.insurance-card {
  background: var(--navy);
  border: 1px solid rgba(184,149,42,.18);
  border-radius: 4px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.insurance-left {
  padding: 56px 48px; border-right: 1px solid rgba(184,149,42,.12);
}
.insurance-right {
  padding: 48px 40px; background: rgba(255,255,255,.025);
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.ins-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.ins-feature:last-child { border-bottom: none; }
.ins-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(184,149,42,.18); border: 1px solid rgba(184,149,42,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: var(--gold); }
.ins-feature-title { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.ins-feature-desc { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 300; line-height: 1.6; }

/* ─── RESEARCH CARDS ─── */
.research-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1px; background: rgba(184,149,42,.08); }
.research-card {
  background: var(--white); padding: 40px 36px; cursor: pointer; position: relative; overflow: hidden;
  transition: background .3s;
}
.research-card.primary { background: var(--cream); }
.research-card:hover { background: var(--navy); }
.research-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.research-card:hover::after { transform: scaleX(1); }
.research-icon { font-size: 32px; margin-bottom: 20px; }
.research-name { font-family: var(--font-d); font-size: 22px; font-weight: 500; color: var(--text-dark); margin-bottom: 11px; line-height: 1.25; transition: color .3s; }
.research-card:hover .research-name { color: #fff; }
.research-desc { font-size: 13.5px; line-height: 1.75; color: var(--text-muted); font-weight: 300; transition: color .3s; }
.research-card:hover .research-desc { color: rgba(255,255,255,.45); }
.research-tag { display: inline-block; margin-bottom: 14px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: var(--gold-pale); color: var(--gold); padding: 4px 10px; border-radius: 2px; }
.research-card:hover .research-tag { background: rgba(184,149,42,.2); color: var(--gold-light); }

/* ─── CTA BOTTOM ─── */
.bottom-cta {
  margin-top: 80px; padding: 72px 60px;
  background: var(--navy); border-radius: 4px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.bottom-cta::before {
  content: ''; position: absolute; left: -100px; top: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,42,.09) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta::after {
  content: ''; position: absolute; right: 0; bottom: 0;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,42,.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-left { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-d); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: #fff; line-height: 1.2; }
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.45); font-weight: 300; margin-top: 10px; }
.cta-right { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold { padding: 16px 36px; background: var(--gold); color: var(--navy); font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background .2s; white-space: nowrap; }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost-gold { padding: 15px 30px; background: transparent; border: 1px solid rgba(184,149,42,.4); color: var(--gold-light); font-size: 12.5px; font-weight: 300; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: border-color .2s; white-space: nowrap; }
.btn-ghost-gold:hover { border-color: var(--gold-light); }

/* ─── FOOTER ─── */
footer { background: #07101A; padding: 64px 6% 36px; color: rgba(255,255,255,.35); }
.footer-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand-name { font-family: var(--font-d); font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.footer-brand-tag { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 18px; }
.footer-brand-text { font-size: 13px; line-height: 1.8; font-weight: 300; max-width: 280px; margin-bottom: 22px; }
.f-col-title { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 18px; font-weight: 400; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 13px; color: rgba(255,255,255,.32); text-decoration: none; font-weight: 300; transition: color .2s; }
.f-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.sebi-mark { display: flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid rgba(184,149,42,.2); border-radius: 2px; }
.sebi-check { width: 18px; height: 18px; background: rgba(184,149,42,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 10px; }
.sebi-text { font-size: 10.5px; letter-spacing: .06em; color: rgba(255,255,255,.35); }

/* ─── REVEAL ANIMATION (.in class used by services page) ─── */
.reveal.in { opacity:1; transform:none; }
.d1 { transition-delay:.1s; } .d2 { transition-delay:.18s; } .d3 { transition-delay:.26s; } .d4 { transition-delay:.34s; }

/* ─── SERVICES PAGE RESPONSIVE ─── */
@media (max-width:1100px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .forex-grid { grid-template-columns: repeat(2, 1fr); }
  .research-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:900px) {
  /* nav is handled by the main responsive block above */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .research-grid { grid-template-columns: 1fr 1fr; }
  .insurance-card { grid-template-columns: 1fr; }
  .insurance-right { border-top: 1px solid rgba(184,149,42,.12); }
  .loans-grid { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr 1fr; gap:36px; }
  .hero-strip { flex-wrap:wrap; }
  .hstrip-item { flex:1 1 45%; border-right:none; border-bottom: 1px solid rgba(184,149,42,.1); }
  /* Services page hero — scoped so homepage is unaffected */
  .page-hero { min-height: 55vh; padding-bottom: 48px; }
  .page-hero .hero-content { padding: 100px 6% 0; }
  .hero-deco { display: none; }
  /* Filter / layout */
  .services-body { padding: 0 4% 80px; }
  .cat-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bottom-cta { flex-direction: column; align-items: flex-start; gap: 24px; padding: 48px 36px; }
}
@media (max-width:600px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .forex-grid { grid-template-columns: 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; }
  .bottom-cta { padding: 36px 24px; }
  .banner-card { padding: 32px 24px; flex-direction: column; }
  .banner-cta { flex-direction: column; width: 100%; }
  .banner-cta button { width: 100%; }
  .filter-btn { padding:14px 12px; font-size:11px; }
  .services-body { padding: 0 4% 60px; }
  .page-hero { min-height: 50vh; }
  .page-hero .hero-content { padding: 90px 5% 0; }
  .hstrip-item { flex: 1 1 100%; }
  .insurance-left { padding: 36px 28px; }
  .insurance-right { padding: 28px 24px; }
  .loan-card { flex-direction: column; padding: 32px 24px; }
  .svc-card { padding: 28px 24px; }
  .research-card { padding: 28px 24px; }
  .forex-card { padding: 28px 24px; }
  .bottom-cta .cta-right { flex-direction: column; width: 100%; }
  .bottom-cta .cta-right button { width: 100%; }
  /* NPS full-width card fix */
  .svc-card[style*="grid-column:span 4"] { grid-column: span 1 !important; }
  /* Research wide card fix */
  .research-card[style*="grid-column:span 3"] { grid-column: span 1 !important; }
}
@media (max-width:400px) {
  .filter-bar { padding: 0 3%; }
  .filter-btn { padding:12px 9px; font-size:10.5px; }
  .page-hero .hero-title { font-size: 38px; }
}

    .skip-link { position: absolute; top: -100px; left: 16px; z-index: 9999; background: #B8952A; color: #0D1B2A; padding: 10px 20px; border-radius: 2px; font-size: 13px; font-weight: 500; text-decoration: none; transition: top 0.2s; }
    .skip-link:focus { top: 16px; }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }

    /* WhatsApp Floating Button */
    #whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.18);
      text-decoration: none;
      transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
      animation: wa-pulse 2.5s ease-in-out infinite;
    }
    #whatsapp-float:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.22);
      animation: none;
    }
    #whatsapp-float:hover .whatsapp-tooltip {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .whatsapp-tooltip {
      position: absolute;
      right: 68px;
      background: #1a1a1a;
      color: #fff;
      font-size: 12px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      white-space: nowrap;
      padding: 6px 12px;
      border-radius: 4px;
      opacity: 0;
      pointer-events: none;
      transform: translateX(8px);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .whatsapp-tooltip::after {
      content: '';
      position: absolute;
      right: -5px;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left-color: #1a1a1a;
      border-right: none;
    }
    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.18); }
      50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
    }
