  :root {
    --green-deep: #0d3b2e;
    --green-forest: #1a6849;
    --green-bright: #4caf50;
    --green-electric: #7cc676;
    --green-light: #c8e6c9;
    --green-mint: #e8f5e9;
    --orange-deep: #c45000;
    --orange-main: #ff6b00;
    --orange-light: #ff8c00;
    --orange-pale: #fff3e0;
    --orange-glow: rgba(255,107,0,0.15);
    --cream: #fafaf7;
    --ink: #0f1a14;
    --ink-soft: #3a4a40;
    --gold: #d4af37;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(13, 59, 46, 0.08);
    --shadow-md: 0 8px 32px rgba(13, 59, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(13, 59, 46, 0.18);
    --shadow-orange: 0 8px 32px rgba(255, 107, 0, 0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== NAVIGATION ===== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 59, 46, 0.06);
    transition: all 0.3s ease;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-logo-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .nav-logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--green-deep);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .nav-logo-text .amp { color: var(--orange-main); }
  .nav-logo-text .sub {
    display: block;
    font-size: 0.65rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--green-forest); }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--orange-main);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--orange-main), var(--orange-deep));
    color: var(--white);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-orange);
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 107, 0, 0.4);
  }

  .nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--green-deep);
    cursor: pointer;
  }

  /* ===== HERO ===== */
  .hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-mint) 0%, var(--cream) 60%, var(--orange-pale) 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--green-bright) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1.5px solid var(--orange-main);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-deep);
    margin-bottom: 24px;
    box-shadow: var(--shadow-orange);
  }

  .hero-badge i { color: var(--orange-main); }

  .hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    color: var(--green-deep);
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--orange-main);
    position: relative;
  }

  .hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 8px;
    background: var(--orange-pale);
    z-index: -1;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 540px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn {
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--orange-main), var(--orange-deep));
    color: var(--white);
    box-shadow: var(--shadow-orange);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255,107,0,0.4);
  }

  .btn-secondary {
    background: transparent;
    color: var(--green-deep);
    border: 2px solid var(--green-deep);
  }

  .btn-secondary:hover {
    background: var(--green-deep);
    color: var(--white);
    transform: translateY(-3px);
  }

  .btn-whatsapp {
    background: #25d366;
    color: var(--white);
  }

  .btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,107,0,0.2);
  }

  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange-main);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 6px;
  }

  .hero-visual {
    position: relative;
    height: 600px;
  }

  .hero-img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-img-1 {
    width: 65%; height: 70%;
    top: 0; right: 0;
  }

  .hero-img-2 {
    width: 55%; height: 50%;
    bottom: 0; left: 0;
    border: 8px solid var(--cream);
  }

  .hero-floating-card {
    position: absolute;
    bottom: 40px; right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    border-left: 4px solid var(--orange-main);
  }

  .hero-floating-card .icon {
    width: 48px; height: 48px;
    background: var(--orange-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-deep);
    font-size: 1.3rem;
  }

  .hero-floating-card .label { font-size: 0.75rem; color: var(--ink-soft); }
  .hero-floating-card .value { font-weight: 700; color: var(--green-deep); }

  /* ===== VIDÉO PRÉSENTATION ===== */
  .video-section {
    background: var(--white);
    padding: 80px 0;
    position: relative;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 32px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
  }

  .video-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
  }

  .video-caption {
    text-align: center;
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ===== SECTION COMMUNE ===== */
  section { padding: 100px 0; }

  .section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--orange-pale);
    color: var(--orange-deep);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    border: 1px solid rgba(255,107,0,0.2);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--green-deep);
    margin-bottom: 16px;
    max-width: 700px;
  }

  .section-sub {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 56px;
  }

  /* ===== SERVICES ===== */
  .services { background: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .service-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    cursor: pointer;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-main), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
    border-color: rgba(255,107,0,0.15);
  }

  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 64px; height: 64px;
    background: var(--green-deep);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-electric);
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    background: var(--orange-main);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
  }

  .service-card h3 { font-size: 1.4rem; color: var(--green-deep); margin-bottom: 12px; }
  .service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 20px; }

  .service-features { list-style: none; }

  .service-features li {
    font-size: 0.88rem;
    color: var(--ink-soft);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-features li i { color: var(--orange-main); font-size: 0.8rem; }

  /* ===== À PROPOS ===== */
  .about {
    background: linear-gradient(180deg, var(--cream) 0%, var(--green-mint) 100%);
    position: relative;
    overflow: hidden;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual { position: relative; }

  .about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
  }

  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }

  .about-img-accent {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 55%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 10px solid var(--cream);
    box-shadow: var(--shadow-md);
  }

  .about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

  .about-quote {
    position: absolute;
    top: -20px; left: -30px;
    background: linear-gradient(135deg, var(--orange-deep), var(--orange-main));
    color: var(--white);
    padding: 20px;
    border-radius: 16px;
    max-width: 240px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    box-shadow: var(--shadow-orange);
  }

  .about-quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 0.5;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 8px;
  }

  .about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--green-deep); margin-bottom: 24px; }
  .about-text p { color: var(--ink-soft); margin-bottom: 20px; font-size: 1rem; }

  /* Fondateurs */
  .founders-block {
    display: flex;
    gap: 20px;
    margin: 28px 0;
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--orange-main);
  }

  .founder-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-deep), var(--green-forest));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .founder-info { flex: 1; }
  .founder-name { font-weight: 700; color: var(--green-deep); font-size: 1rem; }
  .founder-role { font-size: 0.82rem; color: var(--orange-deep); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }
  .founders-label { font-size: 0.78rem; color: var(--ink-soft); display: block; margin-top: 4px; }

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .value-item { display: flex; gap: 16px; align-items: flex-start; }

  .value-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-main);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
  }

  .value-item h4 { font-size: 1rem; color: var(--green-deep); margin-bottom: 4px; }
  .value-item p { font-size: 0.85rem; margin: 0; }

  /* ===== ZONE D'INTERVENTION ===== */
  .coverage-strip {
    margin-top: 32px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-forest));
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
  }

  .coverage-strip .coverage-icon {
    width: 44px; height: 44px;
    background: rgba(255,107,0,0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .coverage-strip .coverage-text { font-size: 0.92rem; line-height: 1.5; }
  .coverage-strip .coverage-text strong { color: var(--orange-light); font-weight: 700; }

  /* ===== GALERIE ===== */
  .gallery { background: var(--white); }

  .gallery-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 10px 22px;
    border-radius: 100px;
    background: transparent;
    border: 1.5px solid var(--green-light);
    color: var(--ink-soft);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn:hover { border-color: var(--orange-main); color: var(--orange-deep); }

  .filter-btn.active {
    background: linear-gradient(135deg, var(--orange-main), var(--orange-deep));
    color: var(--white);
    border-color: var(--orange-main);
    box-shadow: var(--shadow-orange);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
  }

  .gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--green-mint);
    transition: all 0.4s ease;
  }

  .gallery-item.tall { grid-row: span 2; }

  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .gallery-item:hover img { transform: scale(1.08); }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 59, 46, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-overlay h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
  .gallery-overlay p { color: var(--orange-light); font-size: 0.85rem; }

  .client-badge-orange {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--orange-main);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
  }

  .gallery-item.hidden { display: none; }

  /* ===== RÉFÉRENCES CLIENTS ===== */
  .clients { background: var(--cream); }

  .clients-marquee {
    margin-top: -16px;
    margin-bottom: 56px;
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid rgba(255,107,0,0.2);
    border-bottom: 1px solid rgba(255,107,0,0.2);
    background: linear-gradient(90deg, var(--orange-pale), var(--cream), var(--orange-pale));
  }

  .clients-marquee-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scroll-clients 25s linear infinite;
    width: max-content;
  }

  .client-logo-name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ink-soft);
    opacity: 0.6;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
  }

  .client-logo-name:hover { opacity: 1; color: var(--orange-deep); }

  .client-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange-main);
    flex-shrink: 0;
  }

  @keyframes scroll-clients {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .clients-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .client-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid transparent;
  }

  .client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
    border-color: rgba(255,107,0,0.2);
  }

  .client-card-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }

  .client-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .client-card:hover .client-card-image img { transform: scale(1.05); }

  .client-card-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: linear-gradient(135deg, var(--orange-main), var(--orange-deep));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .client-card-body { padding: 28px; }

  .client-card-name {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 8px;
  }

  .client-card-sector {
    font-size: 0.85rem;
    color: var(--orange-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }

  .client-card-desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 20px; }

  .client-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }

  .client-tag {
    padding: 5px 12px;
    background: var(--orange-pale);
    color: var(--orange-deep);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255,107,0,0.2);
  }

  /* ===== TÉMOIGNAGES ===== */
  .testimonials {
    background: var(--green-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  }

  .testimonials .section-tag {
    background: rgba(255,107,0,0.15);
    color: var(--orange-light);
    border-color: rgba(255,107,0,0.3);
  }

  .testimonials .section-title { color: var(--white); }
  .testimonials .section-sub { color: rgba(255,255,255,0.7); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .testimonial {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
  }

  .testimonial:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    border-color: var(--orange-light);
  }

  .testimonial-stars { color: var(--orange-light); margin-bottom: 20px; font-size: 0.95rem; }

  .testimonial-text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-main), var(--orange-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
  }

  .author-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
  .author-role { font-size: 0.8rem; color: var(--orange-light); }

  /* ===== DEVIS ===== */
  .quote { background: linear-gradient(180deg, var(--orange-pale) 0%, var(--cream) 100%); }

  .quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }

  .quote-info h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--green-deep); margin-bottom: 20px; }
  .quote-info p { color: var(--ink-soft); margin-bottom: 32px; }

  .quote-benefits { list-style: none; margin-bottom: 32px; }

  .quote-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,107,0,0.15);
    color: var(--ink-soft);
  }

  .quote-benefits li i {
    width: 32px; height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-main);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  .quote-contact-direct {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--orange-main);
  }

  .quote-contact-direct h4 { font-size: 1rem; color: var(--green-deep); margin-bottom: 16px; }

  .quote-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
  }

  .quote-contact-item i { color: var(--orange-main); width: 20px; }

  .quote-form {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--orange-main);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
  .form-group { margin-bottom: 20px; }

  .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 8px;
  }

  .form-group label span { color: var(--orange-main); }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--cream);
    transition: all 0.3s ease;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--orange-main);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255,107,0,0.1);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
  .form-actions .btn { flex: 1; min-width: 200px; justify-content: center; }

  .form-success {
    display: none;
    padding: 16px;
    background: var(--orange-pale);
    border: 1px solid var(--orange-main);
    border-radius: 12px;
    color: var(--orange-deep);
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .form-success.show { display: block; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
  }

  .footer-brand p { margin: 20px 0; font-size: 0.9rem; line-height: 1.7; }

  .footer-socials { display: flex; gap: 12px; }

  .footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
  }

  .footer-socials a:hover {
    background: var(--orange-main);
    transform: translateY(-3px);
  }

  .footer-col h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { padding: 6px 0; font-size: 0.9rem; }
  .footer-col a:hover { color: var(--orange-light); }

  .footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .footer-contact-item i { color: var(--orange-light); margin-top: 4px; width: 16px; }

  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-orange-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--orange-main), var(--orange-light), var(--orange-main));
  }

  /* ===== WHATSAPP FLOATING ===== */
  .whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 64px; height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,0.5);
  }

  @keyframes pulse {
    0% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
  }

  .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--ink);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'DM Sans', sans-serif;
  }

  .whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-grid, .about-grid, .quote-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 500px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .clients-showcase { grid-template-columns: 1fr; }
  }

  @media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .nav-links.mobile-open {
      display: flex;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--white);
      flex-direction: column;
      padding: 24px;
      gap: 16px;
      box-shadow: var(--shadow-md);
    }
    .hero { padding: 120px 0 60px; }
    .hero-stats { grid-template-columns: 1fr; gap: 16px; }
    .hero-visual { height: 400px; }
    .hero-floating-card { display: none; }
    .video-section { padding: 60px 0; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.tall { grid-row: span 1; }
    .about-values { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .quote-form { padding: 24px; }
    section { padding: 70px 0; }
    .about-img-accent { display: none; }
    .about-quote { position: relative; top: 0; left: 0; margin-bottom: 16px; max-width: 100%; }
    .founders-block { flex-direction: column; gap: 16px; }
  }
