@charset "utf-8";
/* CSS Document */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:    #00C853;
      --green-dk: #007B33;
      --black:    #0A0A0A;
      --dark:     #111111;
      --mid:      #1C1C1C;
      --gray:     #888888;
      --light:    #F0F0F0;
      --white:    #FFFFFF;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      height: 60px;
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 24px; font-weight: 900; letter-spacing: 0.04em;
      color: var(--white); text-decoration: none;
    }
    .nav-logo span { color: var(--green); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: var(--font-body); font-size: 13px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.65); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--green); }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .lang-toggle {
      font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); cursor: pointer;
      border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
      padding: 4px 10px; transition: all 0.2s; background: none;
    }
    .lang-toggle:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
    .lang-toggle.active { color: var(--green); border-color: var(--green); }
    .nav-cta {
      background: var(--green); color: var(--black);
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 10px 22px; border-radius: 4px; text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: #00E564; transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 100px 48px 80px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        linear-gradient(160deg, rgba(0,200,83,0.08) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 75%, var(--black) 100%),
        #111;
    }
    /* Animated court lines */
    .hero-court {
      position: absolute; inset: 0; z-index: 1; overflow: hidden;
    }
    .hero-court svg {
      position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
      width: 62%; opacity: 0.07;
      animation: courtReveal 2s ease forwards;
    }
    @keyframes courtReveal { from { opacity: 0; transform: translateY(-50%) scale(0.96); } to { opacity: 0.07; transform: translateY(-50%) scale(1); } }

    .hero-badge {
      position: absolute; top: 110px; right: 48px; z-index: 3;
      background: var(--green); color: var(--black);
      font-family: var(--font-display); font-size: 11px; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 8px 16px; border-radius: 4px;
      animation: fadeSlide 1s 0.8s ease both;
    }
    .hero-content { position: relative; z-index: 2; max-width: 820px; }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
      animation: fadeSlide 0.9s 0.2s ease both;
    }
    .hero-eyebrow-line { width: 40px; height: 2px; background: var(--green); }
    .hero-eyebrow span {
      font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--green);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(64px, 9vw, 128px);
      font-weight: 900; line-height: 0.9;
      letter-spacing: -0.01em; text-transform: uppercase;
      margin-bottom: 32px;
      animation: fadeSlide 0.9s 0.35s ease both;
		padding-top: 20px;
    }
    .hero-title .line2 { color: var(--green); display: block; }
    .hero-title .line3 { color: rgba(255,255,255,0.18); display: block; }
    .hero-desc {
      font-size: 17px; font-weight: 300; line-height: 1.7;
      color: rgba(255,255,255,0.6); max-width: 520px; margin-bottom: 44px;
      animation: fadeSlide 0.9s 0.5s ease both;
    }
    .hero-actions {
      display: flex; gap: 16px; align-items: center;
      animation: fadeSlide 0.9s 0.65s ease both;
    }
    .btn-primary {
      background: var(--green); color: var(--black);
      font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 16px 36px; border-radius: 4px; text-decoration: none;
      transition: all 0.2s; display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-primary:hover { background: #00E564; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,200,83,0.3); }
    .btn-primary svg { width: 16px; height: 16px; }
    .btn-ghost {
      color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: var(--white); }
    .hero-stats {
      position: absolute; bottom: 80px; right: 48px; z-index: 2;
      display: flex; gap: 48px;
      animation: fadeSlide 0.9s 0.8s ease both;
    }
    .stat { text-align: right; }
    .stat-num {
      font-family: var(--font-display); font-size: 42px; font-weight: 900;
      color: var(--white); line-height: 1; letter-spacing: -0.02em;
    }
    .stat-num span { color: var(--green); }
    .stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

    @keyframes fadeSlide { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* ── MARQUEE TICKER ── */
    .ticker {
      background: var(--green); overflow: hidden; padding: 14px 0;
      position: relative; z-index: 2;
    }
    .ticker-inner {
      display: flex; gap: 0;
      animation: ticker 28s linear infinite;
      white-space: nowrap; width: max-content;
    }
    .ticker-item {
      font-family: var(--font-display); font-size: 14px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--black);
      padding: 0 40px;
    }
    .ticker-dot { color: rgba(0,0,0,0.3); margin: 0 -20px; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── SECTIONS ── */
    section { position: relative; z-index: 1; }
    .section-label {
      display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
    }
    .section-label-line { width: 32px; height: 2px; background: var(--green); flex-shrink: 0; }
    .section-label span {
      font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green);
    }
    .section-title {
      font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
      font-weight: 900; line-height: 0.95; text-transform: uppercase; letter-spacing: -0.01em;
    }

    /* ── PRODUCTS ── */
    .products { padding: 120px 48px; background: var(--dark); }
    .products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; }
    .products-header .section-title { max-width: 480px; }
    .products-header p { max-width: 320px; font-size: 15px; line-height: 1.7; color: var(--gray); }
    .products-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2px; }
    .product-card {
      position: relative; overflow: hidden; cursor: pointer;
      aspect-ratio: unset; min-height: 480px;
      background: var(--mid);
      transition: flex 0.4s ease;
    }
    .product-card:first-child { min-height: 560px; }
    .product-card-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform 0.6s ease, opacity 0.4s;
      opacity: 0.5;
    }
    .product-card:hover .product-card-bg { transform: scale(1.06); opacity: 0.7; }
    .product-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    }
    .product-card-content {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px;
    }
    .product-tag {
      display: inline-block; background: var(--green); color: var(--black);
      font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 3px; margin-bottom: 14px;
    }
    .product-name {
      font-family: var(--font-display); font-size: 38px; font-weight: 900;
      text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .product-card:not(:first-child) .product-name { font-size: 28px; }
    .product-desc {
      font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6;
      max-width: 320px; margin-bottom: 20px;
    }
    .product-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--green); text-decoration: none;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .product-card:hover .product-link { opacity: 1; transform: translateY(0); }
    .product-link svg { width: 14px; transition: transform 0.2s; }
    .product-link:hover svg { transform: translateX(4px); }

    /* Padel card special BG */
    .card-padel .product-card-bg {
      background: linear-gradient(135deg, #0a2a1a 0%, #0d3d22 50%, #0a2a1a 100%);
    }
    .card-padel .product-card-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 40%, rgba(0,200,83,0.15) 0%, transparent 60%);
    }
    .card-pickle .product-card-bg {
      background: linear-gradient(135deg, #0a1a2a 0%, #0d223d 100%);
    }
    .card-basket .product-card-bg {
      background: linear-gradient(135deg, #1a0a00 0%, #3d1500 100%);
    }
    .card-surface .product-card-bg {
      background: linear-gradient(135deg, #1a1a0a 0%, #2a2a00 100%);
    }

    /* Court SVG in padel card */
    .court-graphic {
      position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
      width: 55%; opacity: 0.12;
      transition: opacity 0.4s, transform 0.5s;
    }
    .product-card:hover .court-graphic { opacity: 0.2; transform: translateY(-50%) scale(1.04); }

    /* ── EXPORT STRIP ── */
    .export-strip {
      padding: 80px 48px;
      background: var(--black);
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .export-strip .section-title { margin-bottom: 20px; }
    .export-strip p { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 36px; }
    .export-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .export-feat {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 20px; background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
      transition: border-color 0.3s, background 0.3s;
    }
    .export-feat:hover { border-color: rgba(0,200,83,0.3); background: rgba(0,200,83,0.04); }
    .export-feat-icon {
      width: 36px; height: 36px; border-radius: 6px;
      background: rgba(0,200,83,0.12); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--green); font-size: 16px;
    }
    .export-feat-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
    .export-feat-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }
    .globe-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .globe-ring {
      position: absolute;
      border-radius: 50%; border: 1px solid rgba(0,200,83,0.15);
      animation: pulse-ring 3s ease-in-out infinite;
    }
    .globe-ring:nth-child(1) { width: 260px; height: 260px; animation-delay: 0s; }
    .globe-ring:nth-child(2) { width: 380px; height: 380px; animation-delay: 0.6s; }
    .globe-ring:nth-child(3) { width: 480px; height: 480px; animation-delay: 1.2s; }
    @keyframes pulse-ring {
      0%, 100% { opacity: 0.4; transform: scale(1); }
      50% { opacity: 0.15; transform: scale(1.03); }
    }
    .globe-center {
      position: relative; z-index: 1;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, rgba(0,200,83,0.3) 0%, rgba(0,123,51,0.1) 50%, rgba(0,0,0,0.6) 100%);
      border: 1px solid rgba(0,200,83,0.3);
      display: flex; align-items: center; justify-content: center;
    }
    .globe-center svg { width: 100px; opacity: 0.7; }
    .market-pins {
      position: absolute; z-index: 2; inset: 0;
    }
    .pin {
      position: absolute; width: 8px; height: 8px; border-radius: 50%;
      background: var(--green); box-shadow: 0 0 12px rgba(0,200,83,0.8);
    }
    .pin::after {
      content: attr(data-label);
      position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
      color: rgba(255,255,255,0.7); white-space: nowrap;
    }
    .pin { animation: blink 2s ease-in-out infinite; }
    .pin:nth-child(2) { animation-delay: 0.4s; }
    .pin:nth-child(3) { animation-delay: 0.8s; }
    .pin:nth-child(4) { animation-delay: 1.2s; }
    .pin:nth-child(5) { animation-delay: 1.6s; }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

    /* ── WHY MITO ── */
    .why { padding: 120px 48px; background: var(--dark); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
    .why-card {
      padding: 48px 36px;
      background: var(--mid);
      border-top: 3px solid transparent;
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
      position: relative; overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--green);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .why-card:hover::before { transform: scaleX(1); }
    .why-card:hover { background: #1e1e1e; transform: translateY(-4px); }
    .why-num {
      font-family: var(--font-display); font-size: 72px; font-weight: 900;
      color: rgba(255,255,255,0.04); line-height: 1;
      position: absolute; top: 20px; right: 24px; letter-spacing: -0.04em;
    }
    .why-icon { font-size: 28px; margin-bottom: 20px; }
    .why-title {
      font-family: var(--font-display); font-size: 24px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 14px;
    }
    .why-desc { font-size: 14px; line-height: 1.75; color: var(--gray); }

    /* ── SPECS ── */
    .specs { padding: 120px 48px; background: var(--black); }
    .specs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .specs-left .section-title { margin-bottom: 20px; }
    .specs-left p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 40px; }
    .spec-table { width: 100%; border-collapse: collapse; }
    .spec-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .spec-table tr:hover td { color: var(--white); }
    .spec-table td { padding: 16px 0; font-size: 14px; }
    .spec-table td:first-child { color: var(--gray); font-weight: 500; width: 40%; }
    .spec-table td:last-child { color: var(--white); font-weight: 600; text-align: right; }
    .spec-highlight td:last-child { color: var(--green); }
    .specs-right {
      background: var(--mid); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px; padding: 48px; position: sticky; top: 100px;
    }
    .specs-right h3 {
      font-family: var(--font-display); font-size: 28px; font-weight: 800;
      text-transform: uppercase; margin-bottom: 8px;
    }
    .specs-right p { font-size: 14px; color: var(--gray); margin-bottom: 32px; line-height: 1.6; }
    .quote-form-field {
      display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px;
    }
    .quote-form-field label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
    .quote-form-field input,
    .quote-form-field select {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      color: var(--white); font-family: var(--font-body); font-size: 14px;
      padding: 12px 14px; border-radius: 6px; outline: none;
      transition: border-color 0.2s;
    }
    .quote-form-field input:focus,
    .quote-form-field select:focus { border-color: var(--green); }
    .quote-form-field select option { background: #1C1C1C; }
    .quote-submit {
      width: 100%; padding: 16px; background: var(--green); color: var(--black);
      font-family: var(--font-body); font-size: 13px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; border: none;
      border-radius: 6px; cursor: pointer; margin-top: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .quote-submit:hover { background: #00E564; transform: translateY(-1px); }
    .quote-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 12px; line-height: 1.5; }

    /* ── PROJECTS ── */
    .projects { padding: 120px 48px; background: var(--dark); }
    .projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
    .projects-scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .project-card {
      position: relative; overflow: hidden; min-height: 320px;
      background: var(--mid); cursor: pointer;
    }
    .project-card-bg {
      position: absolute; inset: 0; transition: transform 0.5s ease;
    }
    .project-card:hover .project-card-bg { transform: scale(1.08); }
    .project-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
    }
    .project-card-content {
      position: absolute; bottom: 0; padding: 28px;
      transform: translateY(20px); opacity: 0;
      transition: transform 0.35s, opacity 0.35s;
    }
    .project-card:hover .project-card-content { transform: translateY(0); opacity: 1; }
    .project-location { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
    .project-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; }
    .project-always-visible {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
    }
    .project-always-visible .project-location { opacity: 1; transition: opacity 0.3s; }
    .project-card:hover .project-always-visible { opacity: 0; }

    /* Project card fake bgs */
    .proj-1 .project-card-bg { background: linear-gradient(135deg, #0a2a1a, #1a4a2a); }
    .proj-2 .project-card-bg { background: linear-gradient(135deg, #0a1a2e, #1a2a4a); }
    .proj-3 .project-card-bg { background: linear-gradient(135deg, #2a1a0a, #4a2a0a); }

    /* Court sketches overlay */
    .proj-sketch { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.1; }
    .proj-sketch svg { width: 70%; }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 120px 48px; background: var(--black); }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
    .testi-card {
      padding: 36px; background: var(--mid);
      border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
      transition: border-color 0.3s;
    }
    .testi-card:hover { border-color: rgba(0,200,83,0.3); }
    .testi-quote { font-size: 32px; color: var(--green); line-height: 1; margin-bottom: 16px; font-family: Georgia; }
    .testi-text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 28px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(0,200,83,0.15); border: 1px solid rgba(0,200,83,0.3);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--green);
    }
    .testi-name { font-size: 14px; font-weight: 600; }
    .testi-role { font-size: 12px; color: var(--gray); margin-top: 2px; }
    .testi-flag { font-size: 18px; }

    /* ── PROCESS ── */
    .process { padding: 120px 48px; background: var(--dark); }
    .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 72px; position: relative; }
    .process-steps::before {
      content: '';
      position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(0,200,83,0.3) 20%, rgba(0,200,83,0.3) 80%, transparent);
    }
    .process-step { text-align: center; padding: 0 20px; }
    .step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--mid); border: 2px solid rgba(0,200,83,0.3);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--green);
      position: relative; z-index: 1;
      transition: background 0.3s, border-color 0.3s;
    }
    .process-step:hover .step-num { background: rgba(0,200,83,0.1); border-color: var(--green); }
    .step-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
    .step-desc { font-size: 13px; line-height: 1.6; color: var(--gray); }

    /* ── CTA BAND ── */
    .cta-band {
      padding: 100px 48px;
      background: linear-gradient(135deg, var(--green-dk) 0%, #00a040 50%, var(--green) 100%);
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: 'MITO';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      font-family: var(--font-display); font-size: 300px; font-weight: 900;
      color: rgba(0,0,0,0.08); letter-spacing: -0.05em; line-height: 1;
      pointer-events: none; white-space: nowrap;
    }
    .cta-band h2 {
      font-family: var(--font-display); font-size: clamp(44px, 7vw, 88px);
      font-weight: 900; text-transform: uppercase; color: var(--black);
      line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 20px;
      position: relative; z-index: 1;
    }
    .cta-band p {
      font-size: 17px; color: rgba(0,0,0,0.65); max-width: 480px; margin: 0 auto 44px;
      position: relative; z-index: 1; line-height: 1.7;
    }
    .cta-actions { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 1; }
    .btn-dark {
      background: var(--black); color: var(--white);
      font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 16px 36px; border-radius: 4px; text-decoration: none;
      transition: all 0.2s; display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-dark:hover { background: var(--dark); transform: translateY(-2px); }
    .btn-white-outline {
      background: transparent; color: var(--black);
      font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 15px 36px; border: 2px solid rgba(0,0,0,0.4); border-radius: 4px; text-decoration: none;
      transition: all 0.2s;
    }
    .btn-white-outline:hover { border-color: var(--black); background: rgba(0,0,0,0.08); }

    /* ── FOOTER ── */
    footer {
      background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
      padding: 80px 48px 40px;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
    .footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 16px 0 28px; max-width: 280px; }
    .footer-contact a {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none;
      margin-bottom: 12px; transition: color 0.2s;
    }
    .footer-contact a:hover { color: var(--green); }
    .footer-col h4 {
      font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--gray); margin-bottom: 20px;
    }
    .footer-col a {
      display: block; font-size: 14px; color: rgba(255,255,255,0.55);
      text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p { font-size: 12px; color: var(--gray); }
    .footer-logo {
      font-family: var(--font-display); font-size: 20px; font-weight: 900;
      color: var(--white); letter-spacing: 0.04em;
    }
    .footer-logo span { color: var(--green); }

    /* WhatsApp FAB */
    .whatsapp-fab {
      position: fixed; bottom: 32px; right: 32px; z-index: 200;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.4);
      text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
      animation: pop-in 0.5s 2s ease both;
    }
    .whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
    .whatsapp-fab svg { width: 28px; height: 28px; fill: white; }
    @keyframes pop-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

    /* ── LANGUAGE TOGGLE LOGIC ── */
    .lang-en [data-es] { display: none; }
    .lang-es [data-en] { display: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hero { padding: 0 24px 72px; }
      .hero-stats { display: none; }
      .products { padding: 80px 24px; }
      .products-grid { grid-template-columns: 1fr; }
      .products-header { flex-direction: column; gap: 16px; align-items: flex-start; }
      .export-strip { padding: 80px 24px; grid-template-columns: 1fr; }
      .why { padding: 80px 24px; }
      .why-grid { grid-template-columns: 1fr; }
      .specs { padding: 80px 24px; }
      .specs-inner { grid-template-columns: 1fr; }
      .projects { padding: 80px 24px; }
      .projects-scroll { grid-template-columns: 1fr; }
      .testimonials { padding: 80px 24px; }
      .testi-grid { grid-template-columns: 1fr; }
      .process { padding: 80px 24px; }
      .process-steps { grid-template-columns: 1fr; }
      .process-steps::before { display: none; }
      .cta-band { padding: 72px 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      footer { padding: 60px 24px 40px; }
    }
