*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #C9A84C;
    --gold-dark: #9A7A2E;
    --gold-light: #F0D080;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --white: #FFFFFF;
    --off-white: #F5F3EE;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    height: 72px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: background 0.3s;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--white); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
  .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); margin: 5px 0; transition: 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
    background: rgba(10,10,10,0.98);
    padding: 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block; padding: 0.8rem 0;
    color: var(--gray-light); text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .nav-cta { display: inline-block; margin-top: 1.2rem; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
    background: var(--black);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  }
  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 900px;
    text-align: left;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: var(--gold); font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 2rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 32px; height: 1px;
    background: var(--gold);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    color: var(--white);
  }
  .hero-title .gold { color: var(--gold); }
  .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-bottom: 3rem;
    line-height: 1.75;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: var(--black);
    padding: 1rem 2.4rem;
    font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--white);
    padding: 1rem 2.4rem;
    font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    position: absolute; bottom: 4rem; left: 4rem; right: 4rem;
    display: flex; gap: 4rem;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding-top: 2rem;
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 700; color: var(--gold);
  }
  .hero-stat-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem;
  }
  .hero-scroll-hint {
    position: absolute; bottom: 2rem; right: 4rem;
    writing-mode: vertical-rl;
    color: rgba(255,255,255,0.3);
    font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-scroll-hint::after {
    content: ''; display: block; width: 1px; height: 40px;
    background: rgba(201,168,76,0.4);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
  }

  /* ===== MARQUEE ===== */
  .marquee-section {
    background: var(--gold);
    padding: 1rem 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 4rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.78rem; font-weight: 700;
    color: var(--black); text-transform: uppercase;
    letter-spacing: 0.15em; flex-shrink: 0;
  }
  .marquee-dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ===== SECTION BASE ===== */
  section { padding: 7rem 4rem; }
  .section-label {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: var(--gold); font-size: 0.75rem;
    font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 1.2rem;
  }
  .section-label::before {
    content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; line-height: 1.15;
    color: var(--white);
  }
  .section-title .gold { color: var(--gold); }
  .section-lead {
    font-size: 1rem; color: rgba(255,255,255,0.55);
    line-height: 1.8; max-width: 540px; margin-top: 1rem;
    font-weight: 300;
  }
  .divider {
    width: 48px; height: 2px; background: var(--gold); margin: 1.6rem 0;
  }

  /* ===== ABOUT ===== */
  .about-section { background: var(--dark); }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center; max-width: 1200px; margin: 0 auto;
  }
  .about-visual {
    position: relative; aspect-ratio: 3/4; max-height: 600px;
  }
  .about-photo-main {
    width: 75%; height: 85%;
    object-fit: cover;
    position: absolute; top: 0; right: 0;
    filter: grayscale(20%) contrast(1.05);
  }
  .about-photo-accent {
    width: 50%; height: 45%;
    object-fit: cover;
    position: absolute; bottom: 0; left: 0;
    border: 4px solid var(--dark);
    filter: grayscale(20%) contrast(1.05);
  }
  .about-photo-placeholder {
    background: var(--dark3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.85rem; text-align: center;
  }
  .about-years-badge {
    position: absolute; bottom: 5%; right: 10%;
    background: var(--gold); color: var(--black);
    padding: 1.2rem 1.4rem; text-align: center;
  }
  .about-years-badge .num {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 900; line-height: 1;
  }
  .about-years-badge .label {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
  }
  .about-text { padding: 2rem 0; }
  .about-text p {
    color: rgba(255,255,255,0.65); font-size: 1rem;
    line-height: 1.85; font-weight: 300; margin-bottom: 1.2rem;
  }
  .about-pillars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
  }
  .about-pillar {
    padding: 1.2rem; border: 1px solid rgba(201,168,76,0.15);
    background: rgba(201,168,76,0.04);
  }
  .about-pillar-title {
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .about-pillar-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6;
  }

  /* ===== SERVICES ===== */
  .services-section { background: var(--black); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    max-width: 1200px; margin: 0 auto 4rem;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(201,168,76,0.1);
    max-width: 1200px; margin: 0 auto;
  }
  .service-card {
    background: var(--black); padding: 3rem 2.5rem;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card:hover { background: var(--dark2); }
  .service-num {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 900;
    color: rgba(201,168,76,0.12); line-height: 1;
    margin-bottom: 1.5rem;
  }
  .service-icon {
    width: 44px; height: 44px; margin-bottom: 1.5rem;
    color: var(--gold);
  }
  .service-title {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    color: var(--white); margin-bottom: 1rem;
  }
  .service-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    line-height: 1.8; font-weight: 300;
  }
  .service-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--gold); font-size: 0.78rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; text-decoration: none;
    margin-top: 1.5rem;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 0.7rem; }
  .service-link-arrow { font-size: 1rem; }

  /* ===== METHODOLOGY ===== */
  .method-section { background: var(--dark); }
  .method-inner { max-width: 1200px; margin: 0 auto; }
  .method-header { margin-bottom: 4rem; }
  .method-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .method-step {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(201,168,76,0.15);
    position: relative;
  }
  .method-step:last-child { border-right: none; }
  .method-step-num {
    font-family: var(--font-display);
    font-size: 4rem; font-weight: 900;
    color: rgba(201,168,76,0.1); line-height: 1;
    margin-bottom: 1.5rem;
  }
  .method-step-title {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    color: var(--gold); margin-bottom: 0.8rem;
  }
  .method-step-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    line-height: 1.75; font-weight: 300;
  }
  .method-connector {
    position: absolute; top: 3.5rem; right: -1px;
    width: 2px; height: 32px;
    background: var(--gold); opacity: 0.5;
  }
  .method-step:last-child .method-connector { display: none; }

  /* ===== PROGRAMS ===== */
  .programs-section { background: var(--black); }
  .programs-inner { max-width: 1200px; margin: 0 auto; }
  .programs-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 3.5rem;
  }
  .programs-tabs {
    display: flex; gap: 0.5rem; margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-width: 1200px; margin-left: auto; margin-right: auto;
  }
  .programs-tab {
    padding: 0.8rem 1.6rem;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    cursor: pointer; border: none; background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px; transition: all 0.2s;
  }
  .programs-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
  .programs-tab:hover { color: var(--white); }
  .programs-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
  }
  .program-card {
    background: var(--dark2);
    padding: 2.5rem; border: 1px solid rgba(201,168,76,0.08);
    transition: border-color 0.25s, transform 0.25s;
  }
  .program-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
  .program-card.featured {
    grid-column: span 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center; background: var(--dark3);
    border-color: rgba(201,168,76,0.25);
  }
  .program-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--gold); background: rgba(201,168,76,0.1);
    margin-bottom: 1rem;
  }
  .program-title {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.8rem;
    line-height: 1.2;
  }
  .program-desc {
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem;
  }
  .program-meta {
    display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
  }
  .program-meta-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
  }
  .program-meta-item svg { color: var(--gold); }

  /* ===== IMPACT NUMBERS ===== */
  .impact-section {
    background: var(--gold);
    padding: 6rem 4rem;
  }
  .impact-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; border: 1px solid rgba(0,0,0,0.15);
  }
  .impact-item {
    padding: 3rem 2rem; text-align: center;
    border-right: 1px solid rgba(0,0,0,0.12);
  }
  .impact-item:last-child { border-right: none; }
  .impact-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 900;
    color: var(--black); line-height: 1;
    margin-bottom: 0.5rem;
  }
  .impact-label {
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(0,0,0,0.6);
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section { background: var(--dark); }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .testimonials-header { margin-bottom: 3.5rem; }
  .testimonials-slider { position: relative; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .testimonial-card {
    background: var(--dark3); padding: 2.5rem;
    border-top: 2px solid var(--gold);
    position: relative;
  }
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem; line-height: 0.5;
    color: var(--gold); opacity: 0.5; margin-bottom: 1rem;
  }
  .testimonial-text {
    font-size: 0.92rem; color: rgba(255,255,255,0.7);
    line-height: 1.85; font-weight: 300; font-style: italic;
    margin-bottom: 1.8rem;
  }
  .testimonial-author { display: flex; align-items: center; gap: 1rem; }
  .testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: var(--black);
  }
  .testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
  .testimonial-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

  /* ===== CLIENTS ===== */
  .clients-section { background: var(--black); }
  .clients-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
  .clients-title {
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3); margin-bottom: 3rem;
  }
  .clients-logos {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; border: 1px solid rgba(201,168,76,0.1);
  }
  .client-logo-cell {
    padding: 2.5rem 1.5rem;
    border-right: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 700;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase; letter-spacing: 0.1em;
    transition: color 0.2s;
  }
  .client-logo-cell:nth-child(5n) { border-right: none; }
  .client-logo-cell:hover { color: rgba(201,168,76,0.7); }

  /* ===== CTA SECTION ===== */
  .cta-section {
    background: var(--dark); padding: 9rem 4rem;
    position: relative; overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  }
  .cta-inner { max-width: 700px; position: relative; z-index: 2; }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1.05;
    color: var(--white); margin-bottom: 1.5rem;
  }
  .cta-title .gold { color: var(--gold); }
  .cta-desc {
    font-size: 1rem; color: rgba(255,255,255,0.55);
    line-height: 1.8; font-weight: 300; margin-bottom: 3rem;
  }
  .cta-form { display: flex; gap: 0; max-width: 480px; }
  .cta-form input {
    flex: 1; padding: 1rem 1.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    color: var(--white); font-size: 0.9rem;
    outline: none; font-family: var(--font-body);
  }
  .cta-form input::placeholder { color: rgba(255,255,255,0.3); }
  .cta-form input:focus { border-color: var(--gold); }
  .cta-form button {
    padding: 1rem 1.8rem;
    background: var(--gold); color: var(--black);
    border: none; cursor: pointer;
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    font-family: var(--font-body);
    transition: background 0.2s;
  }
  .cta-form button:hover { background: var(--gold-light); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 5rem 4rem 2.5rem;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem; margin-bottom: 4rem;
  }
  .footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700;
    color: var(--gold); margin-bottom: 1rem;
  }
  .footer-brand-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.4);
    line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem;
  }
  .footer-socials { display: flex; gap: 0.8rem; }
  .footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); text-decoration: none;
    font-size: 0.75rem; font-weight: 700;
    transition: all 0.2s;
  }
  .footer-social:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .footer-col-title {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--gold); margin-bottom: 1.2rem;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 0.6rem; }
  .footer-links a {
    color: rgba(255,255,255,0.4); text-decoration: none;
    font-size: 0.85rem; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy {
    font-size: 0.78rem; color: rgba(255,255,255,0.25);
  }
  .footer-legal { display: flex; gap: 2rem; }
  .footer-legal a {
    font-size: 0.78rem; color: rgba(255,255,255,0.25);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--gold); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    nav { padding: 0 2rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    section { padding: 5rem 2rem; }
    .hero { padding: 0 2rem; }
    .hero-stats { left: 2rem; right: 2rem; gap: 2rem; }
    .hero-scroll-hint { right: 2rem; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { max-height: 400px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .method-steps { grid-template-columns: 1fr 1fr; }
    .method-step:nth-child(2) { border-right: none; }
    .programs-grid { grid-template-columns: 1fr; }
    .program-card.featured { grid-column: auto; grid-template-columns: 1fr; gap: 1.5rem; }
    .impact-inner { grid-template-columns: repeat(2, 1fr); }
    .impact-item:nth-child(2) { border-right: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .clients-logos { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .impact-section { padding: 5rem 2rem; }
    .cta-section { padding: 6rem 2rem; }
    footer { padding: 4rem 2rem 2rem; }
  }
  @media (max-width: 640px) {
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 1.5rem; bottom: 2rem; }
    .hero-scroll-hint { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .programs-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .method-steps { grid-template-columns: 1fr; }
    .method-step { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
    .impact-inner { grid-template-columns: 1fr 1fr; }
    .clients-logos { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal { flex-direction: column; gap: 0.8rem; align-items: center; }
    .cta-form { flex-direction: column; }
    .cta-form input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
    .marquee-section { display: none; }
  }

  /* ===== ANIMATIONS ===== */
  .fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; }
    @keyframes marquee { from, to { transform: none; } }
    @keyframes scrollPulse { from, to { opacity: 0.4; } }
  }