  /* ============================================
     HOME — Hero + sections
     ============================================ */

  /* HERO — Bold (default) — Full-bleed modern */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    background: var(--brand-navy-deep);
    color: white;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .hero-bg-img {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(15, 22, 70, 0.75) 0%, rgba(22, 33, 99, 0.82) 60%, rgba(15, 22, 70, 0.9) 100%);
    z-index: 1;
  }
  /* Imagem de obra/galpão como textura de fundo (placeholder) */
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse at 80% 50%, rgba(216, 25, 33, 0.25) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(30, 45, 125, 0.5) 0%, transparent 50%);
    z-index: 1;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 6px),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 6px);
    z-index: 2;
    mask-image: radial-gradient(ellipse at 65% 55%, black 0%, transparent 70%);
  }
  /* Galpão SVG como elemento gráfico de fundo */
  .hero-structure {
    position: absolute;
    right: -5%; top: 20%;
    width: 75%; height: 70%;
    z-index: 2;
    opacity: 0.35;
    /* animation added by anime.js after SVG draw completes */
  }
  @keyframes heroStructureBreathe {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-8px) scale(1.01); opacity: 0.42; }
  }
  .hero-structure svg { width: 100%; height: 100%; }

  /* Big watermark bird */
  .hero-bird-watermark {
    position: absolute;
    right: -80px; bottom: -100px;
    width: 600px; height: 600px;
    background: url('bird.webp') center/contain no-repeat;
    opacity: 0.06;
    z-index: 2;
    transform: scaleX(-1);
    pointer-events: none;
  }

  /* Red accent wave bottom right */
  .hero-wave {
    position: absolute;
    right: 0; bottom: 0;
    width: 420px; height: 280px;
    z-index: 3;
    pointer-events: none;
  }
  .hero-wave svg { width: 100%; height: 100%; }

  .hero-inner {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 80px;
  }
  .hero-left { position: relative; z-index: 2; max-width: 900px; }
  .hero-tag {
    display: none;
  }
  .hero-tag .dot {
    width: 6px; height: 6px;
    background: #2ce08c;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44, 224, 140, 0.2);
    animation: dotPulse 2s infinite;
  }
  @keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(44, 224, 140, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(44, 224, 140, 0); }
  }
  .hero h1 {
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: var(--space-md);
    line-height: 1;
    text-wrap: balance;
  }
  .hero h1 .accent { color: #d81921; font-weight: 800; }
  .hero h1 .underline {
    position: relative;
    display: inline-block;
  }
  .hero h1 .underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.06em;
    height: 0.1em;
    background: var(--brand-red);
    z-index: -1;
  }
  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    line-height: 1.55;
    margin-bottom: var(--space-lg);
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
  }
  .hero-trust {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: 720px;
  }
  .trust-item .num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
  }
  .trust-item .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 2px;
  }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollFloat 2.4s ease-in-out infinite;
  }
  .hero-scroll::after {
    content: '';
    width: 1px; height: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  }
  @keyframes scrollFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 6px); }
  }

  /* Old hero-right/float-card/grid hidden in new hero */
  .hero-right, .hero-visual, .hero-float-card, .hero-grid-bg { display: none !important; }

  /* Nav adjustments over dark hero (index only) */
  .nav:not(.scrolled) {
    background: transparent !important;
    border-bottom-color: transparent !important;
  }
  body:not(.nav-open) .nav:not(.scrolled) .nav-links a {
    color: rgba(255,255,255,0.8);
  }
  body:not(.nav-open) .nav:not(.scrolled) .nav-links a:hover,
  body:not(.nav-open) .nav:not(.scrolled) .nav-links a.active { color: white; }
  .nav:not(.scrolled) .nav-links a.active::after { background: #d81921 !important; }
  .nav:not(.scrolled) .logo span:first-child { color: white; }
  .nav:not(.scrolled) .logo span:last-child { color: #d81921; }
  .nav:not(.scrolled) .btn-ghost {
    color: white;
    border-color: rgba(255,255,255,0.25);
  }
  .nav:not(.scrolled) .btn-ghost:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
  }

  /* Hero ghost button dark-bg */
  .hero-btn-ghost {
    color: white !important;
    border-color: rgba(255,255,255,0.3) !important;
    background: transparent !important;
  }
  .hero-btn-ghost:hover {
    border-color: white !important;
    background: rgba(255,255,255,0.08) !important;
  }

  .hero-right {
    position: relative;
    height: 600px;
  }
  .hero-visual {
    position: absolute;
    inset: 0;
    border-radius: 2px;
    overflow: hidden;
  }
  .hero-visual .photo-placeholder {
    width: 100%; height: 100%;
    font-size: 12px;
  }
  .hero-float-card {
    position: absolute;
    background: white;
    padding: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(10, 37, 64, 0.2);
    z-index: 3;
    font-family: var(--font-display);
    border-radius: 2px;
  }
  .hero-float-card.tl {
    top: 24px; left: -40px; width: 220px;
    animation: floatA 6s ease-in-out infinite;
  }
  .hero-float-card.br {
    bottom: 40px; right: -30px; width: 240px;
    animation: floatB 7s ease-in-out infinite;
  }
  @keyframes floatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes floatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  .hfc-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 6px;
  }
  .hfc-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -0.01em;
  }
  .hfc-value small { color: var(--brand-green); font-size: 13px; font-weight: 600; }

  /* Hero decorations */
  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    z-index: 0;
  }

  /* HERO VARIATION — split */
  body[data-hero="split"] .hero {
    padding: 100px 0 0;
    min-height: 100vh;
  }
  body[data-hero="split"] .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 100px);
  }
  body[data-hero="split"] .hero-left {
    padding-right: var(--space-xl);
  }
  body[data-hero="split"] .hero-right {
    height: calc(100vh - 100px);
    margin-right: calc(-1 * var(--space-lg));
  }
  body[data-hero="split"] .hero h1 { font-size: clamp(42px, 5.5vw, 80px); }
  body[data-hero="split"] .hero-float-card.tl { left: auto; right: 24px; }

  /* HERO VARIATION — editorial */
  body[data-hero="editorial"] .hero {
    background: var(--brand-navy);
    color: white;
    padding: 120px 0 var(--space-3xl);
  }
  body[data-hero="editorial"] .hero h1 { color: white; }
  body[data-hero="editorial"] .hero h1 .accent { color: var(--brand-red); }
  body[data-hero="editorial"] .hero h1 .underline::after { background: var(--brand-red); opacity: 0.5; }
  body[data-hero="editorial"] .hero-sub { color: rgba(255,255,255,0.7); }
  body[data-hero="editorial"] .hero-inner { grid-template-columns: 1fr; gap: var(--space-2xl); min-height: auto; }
  body[data-hero="editorial"] .hero-right { height: 400px; }
  body[data-hero="editorial"] .hero-tag { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
  body[data-hero="editorial"] .trust-item .num { color: white; }
  body[data-hero="editorial"] .trust-item .lbl { color: rgba(255,255,255,0.5); }
  body[data-hero="editorial"] .hero-trust { border-top-color: rgba(255,255,255,0.1); }
  body[data-hero="editorial"] .hero-grid-bg {
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  }

  /* Marquee of services */
  .marquee {
    background: var(--brand-navy);
    color: white;
    padding: 24px 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee-item {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }
  .marquee-item::after {
    content: '';
    width: 8px; height: 8px;
    background: var(--brand-red);
    transform: rotate(45deg);
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* STATS */
  .stats {
    padding: var(--space-3xl) 0;
    background: white;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .stat-cell {
    padding: var(--space-xl) var(--space-lg);
    border-right: 1px solid var(--line);
    position: relative;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell .eyebrow { margin-bottom: 16px; }
  .stat-cell .num {
    font-family: var(--font-display);
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.04em;
    line-height: 0.95;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .stat-cell .unit { font-size: 0.4em; color: var(--brand-red); font-weight: 600; }
  .stat-cell .desc {
    margin-top: 12px;
    color: var(--ink-3);
    font-size: 14px;
    max-width: 240px;
  }

  /* PRODUCTS */
  .products {
    padding: var(--space-3xl) 0;
    background: var(--bg-2);
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  .product-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: all .4s cubic-bezier(.2,.7,.2,1);
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -30px rgba(10, 37, 64, 0.25);
    border-color: var(--brand-navy);
  }
  .product-visual {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: var(--brand-navy);
  }
  .product-visual .photo-placeholder {
    width: 100%; height: 100%;
  }
  .product-visual .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 48, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    z-index: 2;
  }
  .product-num {
    position: absolute;
    top: 16px; left: 16px;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    z-index: 3;
  }
  .product-meta {
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--space-md);
  }
  .product-meta h3 {
    font-size: 22px;
    color: var(--brand-navy);
    margin-bottom: 6px;
  }
  .product-meta p {
    color: var(--ink-3);
    font-size: 14px;
    line-height: 1.5;
  }
  .product-arrow {
    width: 36px; height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
  }
  .product-card:hover .product-arrow {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
  }
  .product-arrow svg { width: 16px; height: 16px; }

  .product-visual picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .product-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .product-card:hover .product-photo { transform: scale(1.05); }
  .product-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,22,70,0.55) 0%, rgba(15,22,70,0.1) 40%, rgba(15,22,70,0) 70%);
    z-index: 1;
    pointer-events: none;
  }

  /* SVG diagrams for products */
  .product-diagram {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d 0%, #0a2540 100%);
  }
  .product-diagram svg {
    width: 70%; height: 70%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  }

  /* WORKS — projects gallery */
  .works {
    padding: var(--space-3xl) 0;
    background: white;
  }
  .works-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-md);
    min-height: 500px;
    max-height: 700px;
  }
  .work-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-3);
    border-radius: 12px;
    cursor: pointer;
  }
  .work-item.large {
    grid-row: span 2;
  }
  .work-item .photo-placeholder {
    width: 100%; height: 100%;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  }
  .work-item:hover .photo-placeholder { transform: scale(1.05); }
  .work-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: var(--space-lg);
    color: white;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(6,26,48,0.9) 100%);
    padding-top: 80px;
  }
  .work-info h4 {
    font-size: 22px;
    margin-bottom: 4px;
    color: white;
  }
  .work-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-family: ui-monospace, monospace;
    letter-spacing: 0.05em;
  }
  .work-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--brand-red);
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }

  /* PROCESS */
  .process {
    padding: var(--space-3xl) 0;
    background: var(--brand-navy);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .process::before {
    content: '';
    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: 64px 64px;
    pointer-events: none;
  }
  .process .container { position: relative; z-index: 1; }
  .process .section-head h2 { color: white; }
  .process .section-head p { color: rgba(255,255,255,0.7); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
  }
  .process-step {
    position: relative;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .process-step .step-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-md);
  }
  .process-step h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 8px;
  }
  .process-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: var(--space-3xl) 0;
    background: var(--bg-2);
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  .testimonial {
    background: white;
    padding: var(--space-xl);
    border: 1px solid var(--line);
    border-radius: 12px;
    position: relative;
  }
  .testimonial .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--brand-red);
    position: absolute;
    top: 16px; right: 24px;
    opacity: 0.2;
  }
  .testimonial .stars {
    color: var(--brand-red);
    margin-bottom: var(--space-md);
    font-size: 14px;
    letter-spacing: 2px;
  }
  .testimonial blockquote {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: var(--space-lg);
    text-wrap: pretty;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-md);
    border-top: 1px solid var(--line);
  }
  .author-avatar {
    width: 44px; height: 44px;
    background: var(--brand-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
  }
  .author-info .name {
    font-weight: 600;
    font-size: 14px;
    color: var(--brand-navy);
  }
  .author-info .role {
    font-size: 12px;
    color: var(--ink-3);
  }

  /* Instagram feed */
  .instagram-feed {
    padding: var(--space-3xl) 0;
    background: white;
  }
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  .insta-grid .instagram-media {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  @media (max-width: 900px) {
    .insta-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
    }
  }
  @media (max-width: 640px) {
    .insta-grid {
      grid-template-columns: 1fr;
      gap: var(--space-md);
    }
  }

  /* CTA big */
  .cta-big {
    padding: var(--space-3xl) 0;
    background: white;
  }
  .cta-big-inner {
    background: var(--brand-navy);
    color: white;
    padding: var(--space-3xl);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta-big-inner::before {
    content: 'TANGARÁ';
    position: absolute;
    right: -40px; bottom: -40px;
    font-family: var(--font-display);
    font-size: 240px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
  }
  .cta-big h2 {
    font-size: clamp(32px, 4vw, 56px);
    color: white;
    position: relative;
    z-index: 1;
  }
  .cta-big h2 .accent { color: var(--brand-red); }
  .cta-big-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 900px) {
    .hero { min-height: auto; }
    .hero-inner { padding: 80px 0 var(--space-lg); min-height: calc(100vh - 60px); }
    .hero-structure { width: 120%; right: -30%; opacity: 0.15; }
    .hero-wave { width: 240px; height: 160px; bottom: -30px; right: -20px; }
    .hero h1 { font-size: clamp(32px, 9vw, 56px); line-height: 1.05; }
    .hero-sub { font-size: 15px; }
    .hero-actions { gap: 10px; }
    .hero-actions .btn { flex: 1 1 auto; justify-content: center; min-width: 140px; }
    .hero-trust { flex-wrap: wrap; gap: 20px 32px; padding-top: var(--space-md); }
    .trust-item .num { font-size: 28px; }
    .hero-scroll { display: none; }
    .hero-right { height: 300px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }

    .products-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .product-visual { aspect-ratio: 16/10; }
    .product-meta h3 { font-size: 20px; }

    .works-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; gap: 8px; }
    .work-item.large { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9; }
    .work-item { aspect-ratio: 1; }
    .work-info { padding: var(--space-md); padding-top: 60px; }
    .work-info h4 { font-size: 16px; }
    .work-info p { font-size: 11px; }

    .process-steps { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .process-step .step-num { font-size: 48px; }

    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial { padding: var(--space-lg); }
    .testimonial blockquote { font-size: 15px; }

    .cta-big-inner { grid-template-columns: 1fr; padding: var(--space-xl) var(--space-lg); gap: var(--space-lg); }
    .cta-big-inner::before { font-size: 120px; right: -20px; bottom: -30px; }
  }

  @media (max-width: 640px) {
    .hero-inner { padding: 70px 0 var(--space-md); }
    .hero h1 { font-size: clamp(28px, 9vw, 44px); margin-bottom: var(--space-sm); }
    .hero-sub { font-size: 14px; margin-bottom: var(--space-md); }
    .hero-actions .btn { flex: 1 1 100%; }
    .hero-trust { gap: 16px 24px; }
    .trust-item .num { font-size: 24px; }
    .trust-item .lbl { font-size: 10px; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-cell { border-right: none !important; border-bottom: 1px solid var(--line); }
    .stat-cell:last-child { border-bottom: none; }

    .works-grid { grid-template-columns: 1fr; }
    .work-item.large { grid-column: span 1; }

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