  :root {
    --black: #07090f;
    --white: #eef2f8;
    --blue: #2a7fff;
    --blue-light: #5ba3ff;
    --blue-dark: #1a5fcc;
    --charcoal: #0e1420;
    --mid: #1a2235;
    --text-muted: #7a8aaa;
    --radius: 4px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(7,9,15,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(42,127,255,0.18);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 0.15em; color: var(--blue);
  }
  .nav-logo span { color: var(--white); }
  nav ul { list-style: none; display: flex; gap: 2.5rem; }
  nav ul a {
    color: var(--white); text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    opacity: 0.65; transition: opacity 0.2s, color 0.2s;
  }
  nav ul a:hover { opacity: 1; color: var(--blue); }
  .nav-cta {
    background: var(--blue); color: var(--white) !important;
    padding: 0.55rem 1.4rem; border-radius: 3px;
    opacity: 1 !important; font-weight: 500;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--blue-light) !important; }
  .nav-call {
    background: var(--blue); color: var(--white) !important;
    padding: 0.55rem 1.4rem; border-radius: 3px;
    opacity: 1 !important; font-weight: 500;
    display: inline-flex !important; align-items: center; gap: 0.45rem;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-call:hover { background: var(--blue-light) !important; transform: translateY(-1px); }
  .nav-call .call-ico {
    display: inline-block; width: 14px; height: 14px; line-height: 0;
  }

  /* NAV DROPDOWN */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a::after {
    content: '▾'; margin-left: 0.35rem; font-size: 0.7rem; opacity: 0.7;
  }
  .nav-dropdown-menu {
    position: absolute; top: calc(100% + 0.8rem); left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 200px; padding: 0.6rem 0;
    background: rgba(10,14,24,0.97); backdrop-filter: blur(14px);
    border: 1px solid rgba(42,127,255,0.22); border-radius: 4px;
    list-style: none; display: flex !important; flex-direction: column; gap: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu li { width: 100%; }
  .nav-dropdown-menu a {
    display: block; padding: 0.55rem 1.2rem;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white); opacity: 0.8; white-space: nowrap;
  }
  .nav-dropdown-menu a:hover { opacity: 1; color: var(--blue); background: rgba(42,127,255,0.08); }

  /* AREAS */
  #areas { background: var(--black); }
  #areas h2 { margin-bottom: 0.8rem; }
  #areas .intro {
    color: rgba(238,242,248,0.55); font-size: 0.95rem;
    max-width: 540px; margin-bottom: 3rem; line-height: 1.7;
  }
  .areas-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .area-card {
    background: var(--charcoal);
    border: 1px solid rgba(42,127,255,0.12);
    border-radius: 4px; padding: 1.4rem 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
  }
  .area-card:hover {
    border-color: rgba(42,127,255,0.55);
    transform: translateY(-3px);
    background: #10192b;
  }
  .area-pin {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(42,127,255,0.12); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; flex-shrink: 0;
    border: 1px solid rgba(42,127,255,0.3);
  }
  .area-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem; letter-spacing: 0.08em;
    color: var(--white);
  }

  /* HERO */
  #hero {
    min-height: 100vh;
    background: var(--black);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-photo {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center 60%;
  }
  .hero-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(7,9,15,0.75) 0%,
      rgba(7,9,15,0.60) 30%,
      rgba(7,9,15,0.82) 70%,
      rgba(7,9,15,0.97) 100%
    ), linear-gradient(
      to right,
      rgba(7,9,15,0.85) 0%,
      rgba(7,9,15,0.3) 60%,
      rgba(7,9,15,0.1) 100%
    );
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 8rem 5rem 6rem;
    width: 100%;
    display: grid; grid-template-columns: 1fr; align-items: center; gap: 4rem;
  }
  .hero-left { }
  .hero-logo {
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
    margin: 0 0 1.6rem;
    opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
  }
  .hero-google-review {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 0.7rem 1rem;
    background: rgba(14,20,32,0.7); border: 1px solid rgba(42,127,255,0.25);
    border-radius: 4px; backdrop-filter: blur(8px);
    text-decoration: none; color: var(--white);
    transition: border-color 0.2s, transform 0.15s;
    opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-google-review:hover { border-color: rgba(42,127,255,0.6); transform: translateY(-2px); }
  .hero-google-review .g-icon { width: 26px; height: 26px; flex-shrink: 0; }
  .hero-google-review .g-text { display: flex; flex-direction: column; line-height: 1.15; }
  .hero-google-review .g-line1 { font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em; }
  .hero-google-review .g-stars { color: #fbbc05; letter-spacing: 0.04em; }
  .hero-google-review .g-rating { color: var(--white); margin-left: 0.25rem; }
  .hero-google-review .g-line2 {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-muted); margin-top: 0.2rem;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-badge::before { content: ''; width: 28px; height: 1px; background: var(--blue); }
  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 7vw, 7.5rem);
    line-height: 0.9; letter-spacing: 0.03em;
    opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  }
  h1 .accent { color: var(--blue); display: block; }
  .hero-sub {
    margin-top: 1.6rem; font-size: 1rem; line-height: 1.75;
    color: rgba(238,242,248,0.65); max-width: 420px;
    opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
  }
  .hero-actions {
    margin-top: 2.5rem; display: flex; gap: 1rem; align-items: center;
    opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }
  .btn-primary {
    background: var(--blue); color: var(--white);
    padding: 1rem 2.2rem; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 3px;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }
  .btn-ghost {
    background: var(--blue); color: var(--white);
    padding: 1rem 2.2rem; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 3px;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-ghost:hover { background: var(--blue-light); transform: translateY(-2px); }
  .hero-right {
    opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-stats {
    display: flex; gap: 2.5rem; justify-content: flex-end;
  }
  .stat-box {
    text-align: center;
    background: rgba(14,20,32,0.7); border: 1px solid rgba(42,127,255,0.25);
    padding: 1.2rem 1.6rem; border-radius: 4px;
    backdrop-filter: blur(8px);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem;
    color: var(--blue); letter-spacing: 0.05em; line-height: 1;
  }
  .stat-label { font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--text-muted); margin-top: 0.3rem; }

  /* TICKER */
  .ticker-wrap {
    background: var(--blue); overflow: hidden; padding: 0.75rem 0; white-space: nowrap;
  }
  .ticker { display: inline-flex; animation: ticker 22s linear infinite; }
  .ticker span {
    font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
    letter-spacing: 0.15em; color: var(--white); padding: 0 2rem;
  }
  .ticker span::after { content: '·'; margin-left: 2rem; opacity: 0.6; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTION BASE */
  section { padding: 7rem 5rem; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before { content: ''; width: 24px; height: 1px; background: var(--blue); }
  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1; letter-spacing: 0.04em;
  }

  /* SERVICES */
  #services { background: var(--charcoal); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; margin-top: 4rem;
    border: 1px solid rgba(42,127,255,0.1);
  }
  .service-card {
    background: var(--black); padding: 2.8rem 2.2rem;
    position: relative; overflow: hidden;
    transition: background 0.3s; cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { background: #0d1422; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
  .service-num {
    position: absolute; top: 1.5rem; right: 1.8rem;
    font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
    color: rgba(42,127,255,0.07); letter-spacing: 0.05em;
  }
  .service-card h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
    letter-spacing: 0.08em; margin-bottom: 0.8rem;
  }
  .service-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(238,242,248,0.5); }
  .service-price {
    margin-top: 1.5rem; font-size: 0.78rem; letter-spacing: 0.1em;
    color: var(--blue); text-transform: uppercase;
  }

  /* WHY US */
  #why { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .why-content h2 { margin-bottom: 1.5rem; }
  .why-content p { color: rgba(238,242,248,0.55); line-height: 1.8; font-size: 0.95rem; max-width: 440px; }
  .why-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .why-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem 1.5rem; background: var(--charcoal);
    border-left: 2px solid var(--blue); border-radius: 0 2px 2px 0;
  }
  .why-icon { font-size: 1.2rem; flex-shrink: 0; }
  .why-item strong { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; }
  .why-item span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
  .why-visual { position: relative; }
  .review-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .review-header-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
  .review-stack { display: flex; flex-direction: column; gap: 1.2rem; }
  .review-card {
    background: var(--charcoal); padding: 1.8rem;
    border-radius: 4px; border: 1px solid rgba(42,127,255,0.08);
    transition: transform 0.3s, border-color 0.3s;
  }
  .review-card:hover { transform: translateX(6px); border-color: rgba(42,127,255,0.35); }
  .stars { color: var(--blue); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
  .review-card p { font-size: 0.88rem; line-height: 1.65; color: rgba(238,242,248,0.7); font-style: italic; }
  .review-author { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; }
  .review-score {
    background: var(--blue); color: var(--white);
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
    padding: 0.3rem 0.9rem; letter-spacing: 0.1em; border-radius: 2px;
    display: inline-block;
  }

  /* PACKAGES */
  #packages { background: var(--charcoal); }
  #packages h2 { margin-bottom: 0.8rem; }
  #packages .intro { color: rgba(238,242,248,0.5); font-size: 0.9rem; margin-bottom: 4rem; }
  .pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .pkg-card {
    background: var(--black); padding: 2.5rem 2rem;
    border: 1px solid rgba(42,127,255,0.1);
    border-radius: 4px; position: relative;
    transition: border-color 0.3s, transform 0.3s;
    display: flex; flex-direction: column;
  }
  .pkg-card.featured {
    border-color: var(--blue);
    background: linear-gradient(145deg, #0a1020, #07090f);
  }
  .pkg-card:hover { transform: translateY(-4px); border-color: rgba(42,127,255,0.5); }
  .pkg-badge {
    position: absolute; top: -1px; right: 2rem;
    background: var(--blue); color: var(--white);
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.3rem 0.8rem; border-radius: 0 0 3px 3px;
  }
  .pkg-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
    letter-spacing: 0.08em; color: var(--blue);
  }
  .pkg-price {
    font-size: 2.8rem; font-weight: 300; margin: 0.8rem 0; line-height: 1;
  }
  .pkg-price sup { font-size: 1rem; vertical-align: super; }
  .pkg-price sub { font-size: 0.75rem; color: var(--text-muted); }
  .pkg-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.8rem; line-height: 1.5; }
  .pkg-features { list-style: none; flex: 1; }
  .pkg-features li {
    padding: 0.55rem 0; font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; gap: 0.7rem;
    color: rgba(238,242,248,0.75);
  }
  .pkg-features li::before { content: '✓'; color: var(--blue); font-size: 0.75rem; flex-shrink: 0; }
  .pkg-cta {
    margin-top: 2rem; display: block; text-align: center;
    padding: 0.9rem; font-size: 0.8rem; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none;
    border: 1px solid rgba(42,127,255,0.35); color: var(--white);
    border-radius: 3px; transition: background 0.2s, color 0.2s;
  }
  .pkg-card.featured .pkg-cta { background: var(--blue); color: var(--white); border-color: var(--blue); }
  .pkg-cta:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

  /* CONTACT */
  #contact {
    background: var(--black);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }
  .contact-info h2 { margin-bottom: 1rem; }
  .contact-info p { color: rgba(238,242,248,0.55); line-height: 1.8; font-size: 0.92rem; max-width: 380px; margin-bottom: 2.5rem; }
  .contact-detail {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1rem; font-size: 0.88rem;
  }
  .contact-detail .icon {
    width: 36px; height: 36px; background: var(--charcoal);
    border: 1px solid rgba(42,127,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; border-radius: 2px; flex-shrink: 0;
  }
  .contact-detail a { color: var(--white); text-decoration: none; opacity: 0.8; }
  .contact-detail a:hover { color: var(--blue); opacity: 1; }
  .lead-form { background: var(--charcoal); padding: 3rem 2.5rem; border-radius: 4px; border: 1px solid rgba(42,127,255,0.1); }
  .lead-form h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
    letter-spacing: 0.08em; margin-bottom: 0.5rem;
  }
  .lead-form .sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
  input, select, textarea {
    background: var(--black); border: 1px solid rgba(255,255,255,0.08);
    color: var(--white); padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 300;
    border-radius: 3px; transition: border-color 0.2s; outline: none; width: 100%;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--blue); }
  select { cursor: pointer; }
  select option { background: #0e1420; }
  textarea { resize: none; min-height: 100px; }
  .form-submit {
    background: var(--blue); color: var(--white);
    border: none; padding: 1.1rem; width: 100%;
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; border-radius: 3px;
    transition: background 0.2s, transform 0.15s; margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--blue-light); transform: translateY(-1px); }
  .form-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 0.8rem; }

  /* FOOTER */
  footer {
    background: #040608; border-top: 1px solid rgba(42,127,255,0.1);
    padding: 3rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.1em; color: var(--blue); }
  .footer-logo span { color: rgba(238,242,248,0.35); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    color: var(--text-muted); font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--blue); }
  .footer-copy { font-size: 0.75rem; color: var(--text-muted); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .success-msg {
    display: none; text-align: center; padding: 2rem;
    color: var(--blue); font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 0.1em;
  }

  /* LOYALTY */
  #loyalty { background: var(--black); text-align: center; }
  #loyalty h2 { margin-bottom: 0.8rem; }
  #loyalty .intro { color: rgba(238,242,248,0.5); font-size: 0.95rem; margin-bottom: 4rem; max-width: 520px; margin-left: auto; margin-right: auto; }
  .loyalty-tracker {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 4rem; flex-wrap: wrap;
  }
  .loyalty-step {
    display: flex; flex-direction: column; align-items: center; position: relative;
  }
  .loyalty-step .dot {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--charcoal); border: 2px solid rgba(42,127,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; position: relative; z-index: 1;
    transition: border-color 0.3s, background 0.3s;
  }
  .loyalty-step.earned .dot {
    background: rgba(42,127,255,0.15); border-color: var(--blue);
    box-shadow: 0 0 20px rgba(42,127,255,0.25);
  }
  .loyalty-step .dot-num {
    position: absolute; top: -8px; right: -4px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--blue); color: var(--white);
    font-size: 0.65rem; font-weight: 500;
    display: flex; align-items: center; justify-content: center;
  }
  .loyalty-step .dot-label {
    margin-top: 0.8rem; font-size: 0.72rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-muted);
  }
  .loyalty-step.earned .dot-label { color: var(--blue); }
  .loyalty-connector {
    width: 60px; height: 2px; background: rgba(42,127,255,0.2);
    margin-bottom: 2rem; flex-shrink: 0;
  }
  .loyalty-connector.earned { background: var(--blue); }
  .loyalty-free {
    width: 100px; height: 100px; border-radius: 50%;
    background: var(--blue); border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; position: relative; z-index: 1;
    box-shadow: 0 0 40px rgba(42,127,255,0.4);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(42,127,255,0.3); }
    50% { box-shadow: 0 0 55px rgba(42,127,255,0.6); }
  }
  .loyalty-free-label { margin-top: 0.8rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); font-weight: 500; }

  .loyalty-perks {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 1rem;
  }
  .perk-card {
    background: var(--charcoal); padding: 2rem 1.8rem;
    border: 1px solid rgba(42,127,255,0.1); border-radius: 4px;
    text-align: left; transition: border-color 0.3s, transform 0.3s;
  }
  .perk-card:hover { border-color: rgba(42,127,255,0.4); transform: translateY(-3px); }
  .perk-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
  .perk-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
  .perk-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

  /* HAMBURGER TOGGLE */
  .nav-toggle {
    display: none;
    background: transparent; border: none; cursor: pointer;
    width: 42px; height: 42px; padding: 0;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; border-radius: 4px;
    transition: background 0.2s;
  }
  .nav-toggle:hover { background: rgba(42,127,255,0.12); }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE MENU DRAWER */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(7,9,15,0.6); backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
  .mobile-menu-panel {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    background: #0a0f1b;
    display: flex; flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
    overflow-y: auto;
  }
  body.menu-open .mobile-menu-panel { transform: translateY(0); }
  .mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid rgba(42,127,255,0.18);
  }
  .mobile-menu-close {
    background: transparent; border: none; cursor: pointer;
    color: var(--white); font-size: 1.8rem; line-height: 1;
    width: 36px; height: 36px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu-close:hover { background: rgba(42,127,255,0.12); color: var(--blue); }
  .mobile-menu-nav {
    display: flex; flex-direction: column;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(42,127,255,0.12);
  }
  .mm-link {
    padding: 0.95rem 1.4rem;
    color: var(--white); text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem; letter-spacing: 0.12em;
    transition: background 0.15s, color 0.15s;
  }
  .mm-link:hover, .mm-link:active { background: rgba(42,127,255,0.08); color: var(--blue); }
  .mm-dropdown { display: flex; flex-direction: column; }
  .mm-dropdown-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 0.95rem 1.4rem;
    background: transparent; border: none; cursor: pointer;
    color: var(--white); text-align: left;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem; letter-spacing: 0.12em;
    transition: background 0.15s, color 0.15s;
  }
  .mm-dropdown-toggle:hover, .mm-dropdown-toggle:active { background: rgba(42,127,255,0.08); color: var(--blue); }
  .mm-dropdown-toggle .mm-chevron {
    width: 14px; height: 14px;
    transition: transform 0.25s ease;
  }
  .mm-dropdown.open .mm-dropdown-toggle .mm-chevron { transform: rotate(180deg); }
  .mm-dropdown-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.32s ease;
    background: rgba(42,127,255,0.04);
  }
  .mm-dropdown.open .mm-dropdown-panel { max-height: 600px; }
  .mm-areas {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.8rem;
    padding: 0.6rem 1.4rem 1rem;
  }
  .mm-areas a {
    color: rgba(238,242,248,0.78);
    text-decoration: none; font-size: 0.85rem;
    padding: 0.4rem 0;
    transition: color 0.15s;
  }
  .mm-areas a:hover, .mm-areas a:active { color: var(--blue); }
  .mobile-menu-actions {
    padding: 1.2rem 1.4rem 1.6rem;
    display: flex; flex-direction: column; gap: 0.7rem;
    margin-top: auto;
  }
  .mm-call, .mm-book {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.2rem;
    font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 500; border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .mm-call {
    background: var(--blue); color: var(--white);
  }
  .mm-call:hover { background: var(--blue-light); transform: translateY(-1px); }
  .mm-book {
    background: transparent; color: var(--white);
    border: 1px solid rgba(42,127,255,0.5);
  }
  .mm-book:hover { background: rgba(42,127,255,0.12); border-color: var(--blue); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav > ul.nav-links { display: none; }
    .nav-toggle { display: flex; }
    section { padding: 5rem 1.4rem; }
    .hero-content {
      grid-template-columns: 1fr;
      padding: 7rem 1.4rem 3rem;
      gap: 2rem;
      text-align: center;
    }
    .hero-left { display: flex; flex-direction: column; align-items: center; }
    .hero-logo { margin: 0 auto 1.4rem; max-width: 320px; }
    .hero-google-review { align-self: center; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
    .stat-box { padding: 1rem 1.2rem; flex: 1 1 28%; min-width: 90px; }
    .services-grid { grid-template-columns: 1fr; }
    #why { grid-template-columns: 1fr; gap: 3rem; }
    .pkg-grid { grid-template-columns: 1fr; }
    .loyalty-perks { grid-template-columns: 1fr; }
    .loyalty-tracker { gap: 0; }
    #contact { grid-template-columns: 1fr; gap: 3rem; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2.5rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    h2 { font-size: clamp(2.4rem, 8vw, 3.4rem); }
    .mobile-menu-nav { padding: 1.2rem 0; }
    .mm-link, .mm-dropdown-toggle { font-size: 1.4rem; padding: 1.1rem 1.6rem; }
    .mobile-menu-actions { padding: 1.4rem 1.6rem 2rem; }
  }
