
  :root {
    --gold: #26D916;
    --gold-light: #FFD166;
    --gold-dark: #C47D0E;
    --dark: #080C14;
    --navy: #0D1525;
    --navy2: #131C30;
    --slate: #1E2D4A;
    --text: #E8EDF5;
    --muted: #8A9BB5;
    --white: #ffffff;
    --danger: #E63946;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ──── NOISE TEXTURE OVERLAY ──── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ──── TOP BAR ──── */
  .topbar {
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 100;
    animation: slideDown 0.6s ease;
  }
  .topbar span { margin: 0 16px; }
  .topbar .dot { opacity: 0.5; }

  /* ──── NAVBAR ──── */
  nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--white);
    line-height: 1;
  }
  .logo-text span { color: var(--gold); }
  .logo-sub {
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 22px !important;
    border-radius: 6px;
    font-weight: 700 !important;
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

  /* ──── MENU BURGER ──── */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;

  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 10px;

  background: rgba(245, 166, 35, 0.08);
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;

  background: var(--gold);
  border-radius: 999px;

  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

  /* ──── HERO ──── */
  .hero {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 5% 60px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 80% at 0% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 60%),
      linear-gradient(160deg, #080C14 0%, #0D1525 50%, #080C14 100%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.4);
    color: #FF6B76;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease 0.1s both;
  }

  .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 1.4s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    animation: fadeUp 0.7s ease 0.2s both;
    
  }

  .hero h1 em {
    color: var(--gold);
    font-style: normal;
    display: block;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    margin-top: 22px;
    line-height: 1.7;
    max-width: 520px;
    font-weight: 400;
    animation: fadeUp 0.7s ease 0.35s both;
  }

  .hero-phone {
    margin-top: 10px;
    animation: fadeUp 0.7s ease 0.45s both;
  }

  .phone-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }
  .phone-link:hover { color: var(--gold); }

  .phone-icon-wrap {
    width: 58px;
    height: 58px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringPulse 2.5s infinite;
    flex-shrink: 0;
  }

  @keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.5); }
    50% { box-shadow: 0 0 0 14px rgba(245,166,35,0); }
  }

  .phone-icon-wrap svg { width: 26px; height: 26px; fill: var(--dark); }

  .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.55s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.02em;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,166,35,0.35);
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(245,166,35,0.4);
    color: var(--gold);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .btn-outline:hover {
    background: rgba(245,166,35,0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .service-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(245,166,35,0.4);
    background: var(--slate);
    color: var(--gold);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .service-contact-btn:hover {
    background: rgba(245,166,35,0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
  }
  
  /* Hero floating card */
  .hero-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(19, 28, 48, 0.85);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 20px;
    padding: 36px 32px;
    width: 300px;
    backdrop-filter: blur(16px);
    animation: fadeLeft 0.8s ease 0.6s both;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }

  .card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
.price-box {
  margin-top: 20px;
  padding: 14px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 12px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-line:last-child {
  border-bottom: none;
}

.price-line span {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-line strong {
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
}
  .stat-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .stat-row:last-child { border-bottom: none; }

  .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(245,166,35,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .stat-info {}
  .stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .stat-label {
    font-size: 0.76rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* ──── SECTION COMMONS ──── */
  section { padding: 90px 5%; }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.03em;
    color: var(--white);
    line-height: 1.05;
  }

  .section-title span { color: var(--gold); }

  .section-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
    margin-top: 14px;
  }

  /* ──── SERVICES ──── */
  .services { background: var(--navy); }

  .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .service-card {
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover {
    border-color: rgba(245,166,35,0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-card.featured {
    border-color: rgba(245,166,35,0.3);
    background: linear-gradient(135deg, rgba(245,166,35,0.06), var(--navy2));
  }
  .service-card.featured::before { transform: scaleX(1); }

  .service-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
  }

  .service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 12px;
  }

  .service-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.75;
  }

  .service-tag {
    display: inline-block;
    background: rgba(245,166,35,0.12);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 18px;
  }

  /* ──── HOW IT WORKS ──── */
  .how {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .how::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .how-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .steps-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 36px;
  }
  .step:last-child { padding-bottom: 0; }

  .step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-num {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  .step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--gold), rgba(245,166,35,0.1));
    margin-top: 8px;
    min-height: 30px;
  }

  .step-body { padding-top: 10px; }
  .step-body h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 6px;
  }
  .step-body p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .how-visual {
    background: var(--navy2);
    border: 1px solid rgba(245,166,35,0.15);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .how-visual::after {
    content: '🔐';
    position: absolute;
    font-size: 12rem;
    opacity: 0.04;
    right: -20px;
    bottom: -30px;
    line-height: 1;
  }

  .guarantee-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
  }

  .guarantee-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }
  .guarantee-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
  }
  .check {
    width: 22px;
    height: 22px;
    background: rgba(245,166,35,0.15);
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.8rem;
    color: var(--gold);
  }

  .price-note {
    margin-top: 32px;
    padding: 20px;
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 12px;
  }
  .price-note p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
  }
  .price-note strong { color: var(--gold); }

  /* ──── TESTIMONIALS ──── */
  .testimonials { background: var(--navy); }

  .testimonials-header {
    text-align: center;
    margin-bottom: 52px;
  }
  .testimonials-header .section-desc { margin: 14px auto 0; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .review-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .review-card:hover {
    border-color: rgba(245,166,35,0.2);
    transform: translateY(-4px);
  }

  .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .review-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 22px;
    font-style: italic;
  }

  .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    flex-shrink: 0;
  }
  .reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
  }
  .reviewer-date {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
  }

  /* ──── TRUST BAND ──── */
  .trust-band {
    background: var(--gold);
    padding: 24px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .trust-item span:first-child { font-size: 1.4rem; }

  /* ──── ZONE INTERVENTION ──── */
  .zone {
    background: var(--dark);
    text-align: center;
  }

  .zone-content { max-width: 700px; margin: 0 auto; }

  .zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 36px;
  }

  .zone-tag {
    background: var(--slate);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  .zone-tag:hover {
    background: rgba(245,166,35,0.12);
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ──── CTA BLOCK ──── */
  .cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 5%;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
  }

  .cta-section .section-desc {
    margin: 0 auto 44px;
    font-size: 1.05rem;
  }

  .cta-phone-big {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 0.2s;
    margin-bottom: 32px;
    display: block;
  }
  .cta-phone-big:hover { color: var(--gold); }

  /* ──── FOOTER ──── */
  footer {
    background: #050810;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-logo .logo-text { font-size: 1.2rem; }
  .footer-desc {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
    max-width: 260px;
    line-height: 1.6;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }

  .footer-right {
    text-align: right;
  }
  .footer-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
  .footer-legal {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 28px;
    text-align: center;
    width: 100%;
  }

  /* ──── FLOATING CALL BTN (MOBILE) ──── */
  .float-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    background: var(--gold);
    color: var(--dark);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(245,166,35,0.5);
    font-size: 1.6rem;
    animation: ringPulse 2.5s infinite;
    transition: transform 0.2s;
  }
  .float-call:hover { transform: scale(1.1); }


  /* ──── CONTACT MODAL ──── */

.contact-section {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 24px;
  background: rgba(5, 8, 16, 0.86);
  backdrop-filter: blur(12px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact-section.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Boîte principale du modal */
.contact-content {
  position: relative;

  width: min(1050px, 100%);
  max-height: 90vh;
  overflow-y: auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;

  background: linear-gradient(135deg, var(--navy2), var(--dark));
  color: var(--text);

  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 24px;

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  animation: contactPop 0.35s ease both;
}

/* Animation d'ouverture */
@keyframes contactPop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Bouton fermer */
.fermer {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
  color: var(--white);

  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;

  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.fermer:hover {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
}

/* Partie gauche : informations */
.contact-info {
  padding: 48px 38px;
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.03);

  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section .section-title {
  color: var(--gold);
  margin-bottom: 18px;
}

.contact-info > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Cartes infos */
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 18px;
  margin-bottom: 16px;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;

  text-align: left;
}

.contact-item > div:first-child {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 14px;

  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Partie droite : formulaire */
.contact-form {
  padding: 48px 38px;
  background: rgba(8, 12, 20, 0.65);
}

.envoi {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 26px;
}

/* Ligne nom + email */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Groupes de champs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Inputs / select / textarea */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  background: rgba(255, 255, 255, 0.06);
  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;

  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;

  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 155, 181, 0.75);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Select */
.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

/* Bouton envoyer */
.btn-contact {
  width: 100%;
  margin-top: 8px;

  padding: 16px 22px;

  border: none;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;

  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 166, 35, 0.35);
}

/* Message succès */
.success-message {
  display: none;

  margin-top: 18px;
  padding: 14px 16px;

  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 14px;

  color: #86efac;
  font-size: 0.92rem;
  line-height: 1.5;
}

.success-message.active {
  display: block;
}


/* Responsive tablette */
@media (max-width: 960px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  gap: 0;

  background: rgba(8, 12, 20, 0.98);
  border-bottom: 1px solid rgba(245, 166, 35, 0.18);
  backdrop-filter: blur(14px);

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.nav-links.active {
  max-height: 520px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-links li {
  width: 100%;
}
.nav-links a {
  display: block;
  width: 100%;
  padding: 17px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}
.phone-link span {
  font-size: 20px;
}

  .hero-card {
    display: none;
  }
  .how-layout {
    grid-template-columns: 1fr;
    gap:50px
  }
  .float-call{
    display: flex;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    text-align: center;
  }
}
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Responsive mobile */
@media (max-width: 600px) {
  .contact-section {
    padding: 14px;
    align-items: flex-start;
  }
h1 {
  text-align: center;
}
  .contact-content {
    max-height: 95vh;
    border-radius: 18px;
  }

  .contact-info,
  .contact-form {
    padding: 34px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fermer {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .envoi {
    font-size: 1.25rem;
  }
}
  /* ──── ANIMATIONS ──── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px) translateY(-50%); }
    to { opacity: 1; transform: translateX(0) translateY(-50%); }
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
  }



  @media (max-width: 640px) {
    section { padding: 64px 5%; }
    .hero { padding: 50px 5% 50px; min-height: auto; padding-top: 80px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
    .trust-band { gap: 20px; }
    .trust-item { font-size: 0.82rem; }
  }
  
  
  
  .cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 22px;
    background: rgba(10, 15, 25, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
    color: #fff;
    backdrop-filter: blur(18px);
    display: none;
  }

  .cookie-banner.active {
    display: block;
  }

  .cookie-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
  }

  .cookie-text h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: var(--gold, #d4af37);
  }

  .cookie-text p {
    margin: 0;
    line-height: 1.6;
    color: var(--muted, #d1d5db);
    font-size: 0.95rem;
  }

  .cookie-text a {
    color: var(--gold, #d4af37);
    font-weight: 700;
    text-decoration: none;
  }

  .cookie-text a:hover {
    text-decoration: underline;
  }

  .cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cookie-btn {
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 800;
    font-family: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }

  .cookie-btn:hover {
    transform: translateY(-2px);
  }

  .cookie-btn.accept,
  .cookie-btn.reject {
    background: var(--gold, #d4af37);
    color: #0b0f19;
  }

  .cookie-btn.customize {
    background: transparent;
    color: #fff;
  }

  .cookie-preferences {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cookie-preferences.active {
    display: block;
  }

  .cookie-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }

  .cookie-option input {
    margin-top: 4px;
    transform: scale(1.15);
  }

  .cookie-option strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
  }

  .cookie-option span {
    color: var(--muted, #d1d5db);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cookie-save {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
  }

  .manage-cookies-btn {
    background: transparent;
    border: none;
    color: var(--gold, #d4af37);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0;
  }

  .manage-cookies-btn:hover {
    text-decoration: underline;
  }

  @media (max-width: 760px) {
    .cookie-content {
      grid-template-columns: 1fr;
    }

    .cookie-actions {
      justify-content: stretch;
    }

    .cookie-btn {
      flex: 1;
      text-align: center;
    }
  }

