a.our-process-links {
    color: white;
    text-decoration: unset;
}
a.our-process-links:hover {
    text-decoration: underline;
        cursor: pointer;
}
.problem-item:hover{
    cursor: pointer;
}
 /* ── HERO ── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 60px 80px;
    overflow: hidden;
    background: var(--black);
  }
  #hero-canvas {
    position: absolute; inset: 0;
    opacity: 0.6;
  }
  .hero-grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 900px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    color: rgba(255,255,255,0.5);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
  }
  .hero-tag span { width: 4px; height: 4px; background: var(--purple-light); border-radius: 50%; display: inline-block; }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    overflow: hidden;
  }
  .hero-headline .line { display: block; overflow: hidden; }
  .hero-headline .line span { display: block; transform: translateY(110%); }
  .hero-headline em { color: var(--purple-light); font-style: normal; }
  .hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255,255,255,0.45);
    max-width: 480px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 52px;
    opacity: 0;
  }
  .hero-actions { display: flex; align-items: center; gap: 24px; opacity: 0; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: var(--purple);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px; font-weight: 500;
    border: none; border-radius: 4px;
    cursor: none;
    letter-spacing: 0.02em;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    text-decoration: none;
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(65,39,149,0.4); }
  .btn-primary:hover::before { opacity: 1; }
  .btn-primary svg { transition: transform 0.3s var(--ease-out); }
  .btn-primary:hover svg { transform: translateX(4px); }
  .hero-secondary-link {
    color: rgba(255,255,255,0.35);
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .hero-secondary-link:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
    .internal-link {
    color: #5a5a6e;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-bottom: 1px solid #5a5a6e;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .internal-link:hover { color: black; border-color: black; }
  .hero-scroll-indicator {
    position: absolute; bottom: 40px; left: 60px;
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.25); font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
    opacity: 0;
  }
  .scroll-line {
    width: 40px; height: 1px; background: rgba(255,255,255,0.15);
    position: relative; overflow: hidden;
  }
  .scroll-line::after {
    content: ''; position: absolute; inset: 0;
    background: var(--purple-light);
    transform: translateX(-100%);
    animation: scrollLine 2s ease-in-out infinite 2s;
  }
  @keyframes scrollLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

  .hero-stats {
    position: absolute; right: 60px; bottom: 80px;
    display: flex; flex-direction: column; gap: 32px;
    z-index: 2; opacity: 0;
  }
  .hero-stat { text-align: right; }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .hero-stat-num span { color: var(--purple-light); }
  .hero-stat-label {
    font-size: 11px; color: rgba(255,255,255,0.3);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── SECTION BASE ── */
  section { position: relative; }
  .section-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; width: 20px; height: 1.5px; background: var(--purple);
  }
  .section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--black);
  }
  .section-heading.light { color: var(--white); }
  .reveal-text { overflow: hidden; }
  .reveal-text span {transform: translateY(100%); }
  /*.reveal-text span { display: block; transform: translateY(100%); }*/

  /* ── INTRO ── */
  #intro {
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
  }
  .intro-left {}
  .intro-right {}
  .intro-body {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    font-weight: 300;
    margin-top: 32px;
  }
  .intro-right-visual {
    position: relative;
    height: 480px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
  }
  .intro-visual-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 40px;
  }
  .intro-accent-block {
    position: absolute; top: -30px; right: -30px;
    width: 160px; height: 160px;
    background: var(--purple);
    border-radius: 4px;
    opacity: 0.08;
    transform: rotate(15deg);
  }
  .intro-pillars {
    display: flex; gap: 20px; margin-top: 60px;
  }
  .intro-pillar {
    flex: 1;
    padding: 24px 20px;
    border-top: 2px solid var(--gray-200);
    transition: border-color 0.3s;
    cursor: default;
  }
  .intro-pillar:hover { border-color: var(--purple); }
  .intro-pillar-num {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .intro-pillar-name {
    font-family: var(--font-display);
    font-size: 15px; font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
  }

  /* ── PROBLEMS ── */
  #problems {
    padding: 140px 60px;
    background: #1e1e2e;
    overflow: hidden;
  }
  .problems-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    margin-bottom: 80px; align-items: end;
  }
  .problems-head-text { color: rgba(255,255,255,0.45); font-size: 16px; line-height: 1.7; font-weight: 300; }
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .problem-item {
    padding: 40px 32px;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .problem-item::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--purple);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 0;
  }
  .problem-item:hover::before { transform: translateY(0); }
  .problem-item > * { position: relative; z-index: 1; }
  .problem-num {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    transition: color 0.3s;
  }
  .problem-item:hover .problem-num { color: rgba(255,255,255,0.5); }
  .problem-title {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .problem-desc {
    font-size: 13px; color: rgba(255,255,255,0.4);
    line-height: 1.7; font-weight: 300;
    transition: color 0.3s;
  }
  .problem-item:hover .problem-desc { color: rgba(255,255,255,0.8); }

  /* ── SERVICES ── */
  #services {
    padding: 140px 60px;
    background: var(--gray-100);
  }
  .services-list a {
    text-decoration: unset;
}
  .services-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 80px;
  }
  .services-header-right {
    font-size: 15px; color: var(--gray-400);
    max-width: 280px; text-align: right;
    line-height: 1.6;
  }
  .services-list { display: flex; flex-direction: column; }
  .service-item {
    display: grid; grid-template-columns: 80px 1fr auto;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
    cursor: default;
    position: relative;
    transition: padding-left 0.4s var(--ease-out);
  }
  .service-item::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--purple);
    transform: scaleY(0);
    transition: transform 0.4s var(--ease-out);
    transform-origin: top;
  }
  .service-item:hover { padding-left: 20px; }
  .service-item:hover::before { transform: scaleY(1); }
  .service-num {
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.1em;
    padding-top: 4px;
    transition: color 0.3s;
  }
  .service-item:hover .service-num { color: var(--purple); }
  .service-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
  }
  .service-desc {
    font-size: 14px; color: var(--gray-400);
    line-height: 1.7; font-weight: 300;
    max-width: 500px;
    margin-top: 8px;
    height: 0; overflow: hidden;
    transition: height 0.4s var(--ease-out), opacity 0.3s;
    opacity: 0;
  }
  .service-item:hover .service-desc { height: 50px; opacity: 1; }
  .service-arrow {
    width: 44px; height: 44px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 4px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }
  .service-item:hover .service-arrow {
    background: var(--purple);
    border-color: var(--purple);
    transform: rotate(45deg);
  }
  .service-item:hover .service-arrow svg path { stroke: var(--white); }

  /* ── WHY US ── */
  #why {
    padding: 140px 60px;
    background: var(--white);
  }
  .why-header { text-align: center; margin-bottom: 100px; }
  .why-header .section-label { justify-content: center; }
  .why-header .section-label::before { display: none; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-200);
  }
  .why-item {
    background: var(--white);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
  }
  .why-icon {
    width: 48px; height: 48px;
    margin-bottom: 28px;
    position: relative;
  }
  .why-icon-bg {
    position: absolute; inset: 0;
    background: var(--purple-faint);
    border-radius: 10px;
    transition: background 0.3s;
  }
  .why-item:hover .why-icon-bg { background: var(--purple); }
  .why-icon svg {
    position: relative; z-index: 1;
    padding: 12px;
    transition: stroke 0.3s;
  }
  .why-item:hover .why-icon svg path,
  .why-item:hover .why-icon svg polyline,
  .why-item:hover .why-icon svg line,
  .why-item:hover .why-icon svg circle,
  .why-item:hover .why-icon svg rect { stroke: var(--white); }
  .why-counter {
    font-family: var(--font-display);
    font-size: 52px; font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
  }
  .why-counter span { color: var(--purple); }
  .why-label {
    font-size: 14px; color: var(--gray-600);
    line-height: 1.6; font-weight: 400;
  }

  /* ── PROCESS ── */
  #process {
    padding: 140px 60px;
    background: var(--gray-800);
    overflow: hidden;
  }
  .process-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; margin-bottom: 100px; align-items: center;
  }
  .process-header-right {
    color: rgba(255,255,255,0.4);
    font-size: 16px; line-height: 1.8; font-weight: 300;
  }
  .process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .process-line {
    position: absolute; top: 32px; left: 0; right: 0;
    height: 1px; background: rgba(255,255,255,0.08);
    z-index: 0;
  }
  .process-line-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    transition: width 1.5s var(--ease-out);
  }
  .process-step {
    position: relative; z-index: 1;
    padding: 0 32px 0 0;
    /*opacity: 0; transform: translateY(30px);*/
  }
  .step-dot {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 40px;
    position: relative;
    transition: background 0.4s, border-color 0.4s;
  }
  .process-step.active .step-dot {
    background: var(--purple);
    border-color: var(--purple);
  }
  .step-num {
    font-family: var(--font-display);
    font-size: 15px; font-weight: 800;
    color: rgba(255,255,255,0.3);
    transition: color 0.4s;
  }
  .process-step.active .step-num { color: var(--white); }
  .step-title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .step-desc {
    font-size: 14px; color: rgba(255,255,255,0.35);
    line-height: 1.7; font-weight: 300;
  }

  /* ── EXPECT ── */
  #expect {
    padding: 140px 60px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .expect-left {}
  .expect-list {
    margin-top: 60px;
    display: flex; flex-direction: column; gap: 0;
  }
  .expect-item {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
    transform: translateX(-40px); opacity: 0;
  }
  .expect-bullet {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--purple-faint);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
  }
  .expect-item:hover .expect-bullet { background: var(--purple); }
  .expect-bullet svg { transition: stroke 0.3s; }
  .expect-item:hover .expect-bullet svg path { stroke: var(--white); }
  .expect-text {
    font-size: 16px; font-weight: 400;
    color: var(--gray-800);
    letter-spacing: -0.01em;
  }
  .expect-right-visual {
    position: relative; height: 560px;
  }
  .expect-visual-bg {
    position: absolute; inset: 0;
    background: var(--black);
    border-radius: 4px;
    overflow: hidden;
  }
  .expect-visual-content {
    position: absolute; inset: 0;
    padding: 60px;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .expect-visual-tag {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
  }
  .expect-visual-quote {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: -0.02em;
  }
  .expect-visual-quote em { color: var(--purple-light); font-style: normal; }
  .expect-float-badge {
    position: absolute; top: 40px; right: -24px;
    background: var(--purple);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.4;
    box-shadow: 0 20px 60px rgba(65,39,149,0.3);
  }

  /* ── TESTIMONIALS ── */
  #testimonials {
    padding: 140px 60px;
    background: var(--gray-100);
    overflow: hidden;
  }
  .testimonials-header { text-align: center; margin-bottom: 80px; }
  .testimonials-header .section-label { justify-content: center; }
  .testimonials-header .section-label::before { display: none; }
  .testimonials-track-wrap { overflow: hidden; position: relative; }
  .testimonials-track {
    display: flex; gap: 32px;
    width: max-content;
  }
  .testimonial-slide {
    width: 520px;
    background: var(--white);
    padding: 48px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  .t-quote {
    font-size: 18px; color: var(--gray-800);
    line-height: 1.7; font-weight: 300;
    margin-bottom: 36px;
    position: relative;
  }
  .t-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 80px; color: var(--purple-faint);
    position: absolute; top: -20px; left: -8px;
    line-height: 1; pointer-events: none;
    z-index: 0;
  }
  .t-quote p { position: relative; z-index: 1; }
  .t-author { display: flex; align-items: center; gap: 16px; }
  .t-avatar {
    width: 44px; height: 44px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 15px; font-weight: 800;
    color: var(--purple);
  }
  .t-name {
    font-size: 14px; font-weight: 600; color: var(--black);
    letter-spacing: -0.01em;
  }
  .t-role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
  .testimonials-nav {
    display: flex; justify-content: center; gap: 12px; margin-top: 48px;
  }
  .t-nav-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--gray-200);
    background: transparent; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: none; transition: background 0.25s, border-color 0.25s;
  }
  .t-nav-btn:hover { background: var(--black); border-color: var(--black); }
  .t-nav-btn:hover svg path { stroke: var(--white); }

  /* ── CTA ── */
  #cta {
    padding: 160px 60px;
    background: var(--purple);
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  .cta-bg-circle {
    position: absolute; width: 800px; height: 800px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-bg-circle-2 {
    position: absolute; width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-content { position: relative; z-index: 2; }
  .cta-label {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
  }
  .cta-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .cta-sub {
    font-size: 17px; color: rgba(255,255,255,0.55);
    line-height: 1.7; font-weight: 300;
    margin-bottom: 52px;
    max-width: 500px; margin-left: auto; margin-right: auto;
  }
  .btn-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 44px;
    background: var(--white);
    color: var(--purple);
    font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    border: none; border-radius: 4px;
    cursor: none;
    letter-spacing: 0.01em;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
    text-decoration: none;
  }
  .btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.25); background: var(--black); color: var(--white); }
  
  @media (max-width: 1100px) {
 
  /* ── HERO ── */
  #hero {
    padding: 120px 32px 80px;
    min-height: 90vh;
  }
  .hero-scroll-indicator {
    left: 32px;
  }
  /* Hero stats sit below content on tablet — still visible */
  .hero-stats {
    position: static;
    flex-direction: row;
    gap: 40px;
    margin-top: 52px;
    opacity: 1;                 /* override GSAP initial if not yet fired */
  }
  .hero-stat {
    text-align: left;
  }
  .hero-stat-num {
    font-size: 28px;
  }
 
  /* ── INTRO ── */
  #intro {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 32px;
  }
  .intro-right-visual {
    height: 340px;
  }
  .intro-pillars {
    margin-top: 40px;
  }
 
  /* ── PROBLEMS ── */
  #problems {
    padding: 80px 32px;
  }
  .problems-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }
  /* 5-column grid → 3-column on tablet */
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
 
  /* ── SERVICES ── */
  #services {
    padding: 80px 32px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 52px;
  }
  .services-header-right {
    text-align: left;
    max-width: 100%;
  }
  /* Simplify 3-column grid item on tablet */
  .service-item {
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
  }
 
  /* ── WHY ── */
  #why {
    padding: 80px 32px;
  }
  .why-header {
    margin-bottom: 60px;
  }
  /* 3-col → 2-col on tablet */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-item {
    padding: 48px 36px;
  }
  .why-counter {
    font-size: 40px;
  }
 
  /* ── PROCESS ── */
  #process {
    padding: 80px 32px;
  }
  .process-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 64px;
  }
  /* 4-col timeline → 2-col on tablet */
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
  }
  /* Hide the absolute line — doesn't make sense in 2-col layout */
  .process-line {
    display: none;
  }
  .process-step {
    padding: 0;
  }
 
  /* ── EXPECT ── */
  #expect {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px 32px;
  }
  .expect-right-visual {
    height: 400px;
  }
  /* Float badge would overflow on tablet */
  .expect-float-badge {
    display: none;
  }
 
  /* ── TESTIMONIALS ── */
  #testimonials {
    padding: 80px 32px;
  }
  .testimonials-header {
    margin-bottom: 52px;
  }
  .testimonial-slide {
    width: calc(100vw - 96px);   /* full-bleed card on tablet */
    max-width: 520px;
  }
 
  /* ── CTA ── */
  #cta {
    padding: 100px 32px;
  }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT 2 — TABLET PORTRAIT / LARGE PHONE  (max-width: 768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
 
  /* ── HERO ── */
  #hero {
    padding: 110px 24px 72px;
    min-height: 92vh;
    justify-content: flex-end;     /* push content down like service hero */
  }
  .hero-scroll-indicator {
    left: 24px;
    bottom: 28px;
  }
  /* Stack CTA buttons */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .hero-secondary-link {
    align-self: flex-start;
  }
  /* Hero stats: 2 across on large phones */
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-top: 40px;
  }
  .hero-stat-num {
    font-size: 26px;
  }
 
  /* ── INTRO ── */
  #intro {
    padding: 64px 24px;
    gap: 40px;
  }
  .intro-right-visual {
    height: 280px;
  }
  .intro-body {
    font-size: 16px;
  }
  .intro-pillars {
    gap: 12px;
    margin-top: 32px;
  }
  .intro-pillar {
    padding: 18px 14px;
  }
 
  /* ── PROBLEMS ── */
  #problems {
    padding: 64px 24px;
  }
  .problems-header {
    margin-bottom: 40px;
  }
  /* 3-col → 2-col on large phone */
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }
  .problem-item {
    padding: 28px 22px;
  }
 
  /* ── SERVICES ── */
  #services {
    padding: 64px 24px;
  }
  .service-item {
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    padding: 28px 0;
  }
  /* Hide expand description on mobile — too narrow */
  .service-item:hover .service-desc {
    height: 0;
    opacity: 0;
  }
 
  /* ── WHY ── */
  #why {
    padding: 64px 24px;
  }
  /* Keep 2-col on large phones */
  .why-item {
    padding: 40px 28px;
  }
  .why-counter {
    font-size: 36px;
  }
 
  /* ── PROCESS ── */
  #process {
    padding: 64px 24px;
  }
  /* 2-col → 1-col on large phones */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step-dot {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
  }
  .step-title {
    font-size: 18px;
  }
 
  /* ── EXPECT ── */
  #expect {
    padding: 64px 24px;
    gap: 40px;
  }
  .expect-right-visual {
    height: 320px;
  }
  .expect-visual-content {
    padding: 36px;
  }
  .expect-visual-quote {
    font-size: 22px;
  }
  .expect-list {
    margin-top: 40px;
  }
 
  /* ── TESTIMONIALS ── */
  #testimonials {
    padding: 64px 24px;
  }
  .testimonial-slide {
    width: calc(100vw - 64px);
    padding: 36px 28px;
  }
  .t-quote {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .t-quote::before {
    font-size: 60px;
  }
 
  /* ── CTA ── */
  #cta {
    padding: 80px 24px;
  }
  .cta-sub {
    font-size: 15px;
  }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT 3 — STANDARD MOBILE  (max-width: 480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
 
  /* ── HERO ── */
  #hero {
    padding: 100px 20px 64px;
  }
  .hero-scroll-indicator {
    left: 20px;
  }
  /* Single stat row on small phones */
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-stat-num {
    font-size: 28px;
  }
  .hero-sub {
    margin-bottom: 36px;
  }
 
  /* ── INTRO ── */
  #intro {
    padding: 56px 20px;
    gap: 32px;
  }
  .intro-right-visual {
    height: 240px;
  }
  .intro-accent-block {
    display: none;               /* decorative only — remove on small screens */
  }
  .intro-pillars {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 28px;
  }
  .intro-pillar {
    flex: 0 0 50%;               /* 2 pillars per row */
    padding: 16px 12px;
    border-top: 2px solid var(--gray-200);
  }
  .intro-pillar-name {
    font-size: 13px;
  }
 
  /* ── PROBLEMS ── */
  #problems {
    padding: 56px 20px;
  }
  /* 2-col → 1-col on standard mobile */
  .problems-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .problem-item {
    padding: 24px 20px;
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .problem-title {
    font-size: 14px;
  }
  .problem-desc {
    font-size: 12px;
  }
 
  /* ── SERVICES ── */
  #services {
    padding: 56px 20px;
  }
  .service-item {
    grid-template-columns: 40px 1fr 40px;
    gap: 12px;
    padding: 24px 0;
  }
  .service-arrow {
    width: 36px;
    height: 36px;
  }
 
  /* ── WHY ── */
  #why {
    padding: 56px 20px;
  }
  /* 2-col → 1-col on standard mobile */
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    padding: 36px 24px;
  }
  .why-counter {
    font-size: 44px;
  }
 
  /* ── PROCESS ── */
  #process {
    padding: 56px 20px;
  }
  .process-header {
    margin-bottom: 48px;
  }
  .step-dot {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }
  .step-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
 
  /* ── EXPECT ── */
  #expect {
    padding: 56px 20px;
    gap: 28px;
  }
  .expect-right-visual {
    height: 260px;
  }
  .expect-visual-content {
    padding: 24px;
  }
  .expect-visual-quote {
    font-size: 19px;
  }
  .expect-item {
    padding: 16px 0;
    /* reset GSAP initial state so items don't flash invisible */
    opacity: 1 !important;
    transform: none !important;
  }
  .expect-bullet {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .expect-text {
    font-size: 15px;
  }
 
  /* ── TESTIMONIALS ── */
  #testimonials {
    padding: 56px 20px;
  }
  .testimonial-slide {
    width: calc(100vw - 40px);
    padding: 28px 20px;
  }
  .t-quote {
    font-size: 15px;
  }
  .testimonials-nav {
    margin-top: 32px;
  }
 
  /* ── CTA ── */
  #cta {
    padding: 72px 20px;
  }
  .btn-white {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 14px;
  }
  .cta-sub {
    font-size: 14px;
    margin-bottom: 36px;
  }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT 4 — SMALL MOBILE  (max-width: 360px)
   Ultra-tight gutters for smallest Android devices
═══════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
 
  #hero        { padding: 96px 16px 56px; }
  .hero-scroll-indicator { left: 16px; }
 
  #intro,
  #problems,
  #services,
  #why,
  #process,
  #expect,
  #testimonials { padding-left: 16px; padding-right: 16px; }
 
  #cta { padding: 60px 16px; }
 
  .intro-right-visual  { height: 200px; }
  .expect-right-visual { height: 220px; }
 
  .testimonial-slide {
    width: calc(100vw - 32px);
    padding: 24px 16px;
  }
 
  .problem-item  { padding: 20px 16px; }
  .service-item  { grid-template-columns: 36px 1fr 36px; gap: 10px; }
  .service-arrow { width: 32px; height: 32px; }
 
  .why-item     { padding: 28px 16px; }
  .why-counter  { font-size: 38px; }
 
  .step-title   { font-size: 15px; }
 
  .btn-primary,
  .btn-white    { font-size: 13px; padding: 14px 18px; }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   GSAP INITIAL STATE SAFETY
   On small screens, if GSAP doesn't fire (slow JS, in-viewport
   on load) these elements must still be visible.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
 
  .expect-item,
  .why-item {
    opacity: 1 !important;
    transform: none !important;
  }
 
  /* Reveal-text spans must be visible if GSAP hasn't run */
  .reveal-text span {
    transform: none !important;
  }
 
  /* Hero sub and actions */
  .hero-sub,
  .hero-actions,
  .hero-tag {
    opacity: 1 !important;
  }
 
  /* Hero headline lines */
  .hero-headline .line span {
    transform: none !important;
  }
 
  /* Stats block */
  .hero-stats {
    opacity: 1 !important;
  }
 
}
 
 
/* ═══════════════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   Strips all transitions / animations for accessibility.
   Immediately reveals all GSAP-targeted elements.
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
 
  /* Reveal all animated elements instantly */
  .hero-tag,
  .hero-sub,
  .hero-actions,
  .hero-stats,
  .hero-scroll-indicator,
  .hero-headline .line span,
  .reveal-text span,
  .expect-item,
  .why-item,
  .problem-item,
  .service-item,
  .process-step,
  .intro-lead,
  .intro-body,
  .intro-right-panel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
 
  /* Kill canvas / particle animation overhead */
  #hero-canvas {
    display: none;
  }
 
  /* Kill scroll line animation */
  .scroll-line::after {
    animation: none !important;
  }
 
  /* Kill hover transforms */
  .btn-primary:hover,
  .btn-white:hover,
  .service-item:hover,
  .problem-item:hover::before {
    transform: none !important;
    transition: none !important;
  }
 
  /* Kill process line fill animation */
  .process-line-fill {
    transition: none !important;
  }
 
  /* Kill step dot transitions */
  .step-dot,
  .process-step.active .step-dot {
    transition: none !important;
  }
 
}
 