:root {
    --red:       #B22234;
    --red-light: #D42B3A;
    --red-pale:  #FFEEEC;
    --red-soft:  #FEF5F4;
    --blue:      #2A5FA5;
    --blue-bright: #3B7CD9;
    --blue-dark: #1D3F6E;
    --blue-light: #EEF3FA;
    --blue-soft: #F7FAFE;
    --white:     #FFFFFF;
    --off-white: #FAFBFD;
    --gray-50:   #F8F9FB;
    --gray-100:  #F0F2F5;
    --gray-200:  #E2E6EC;
    --gray-300:  #C7CDD6;
    --gray-400:  #9AA3B0;
    --gray-600:  #5A6372;
    --gray-800:  #1E2530;
    --gold:      #E8A020;
    --green:     #16A34A;
    --shadow-sm: 0 2px 8px rgba(29,63,110,0.04), 0 1px 2px rgba(29,63,110,0.06);
    --shadow:    0 4px 24px rgba(29,63,110,0.06), 0 2px 6px rgba(29,63,110,0.04);
    --shadow-lg: 0 24px 48px -12px rgba(29,63,110,0.18), 0 8px 16px -4px rgba(29,63,110,0.08);
    --shadow-xl: 0 32px 64px -16px rgba(29,63,110,0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--white);
    color: var(--gray-800);
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 500;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; height: auto; }
  h1, h2, h3, h4, h5 { font-family: 'Fredoka', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.01em; }

  /* ─── TOP BAR ─── */
  .topbar {
    background: var(--blue-dark);
    color: white;
    text-align: center;
    padding: 11px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 10;
  }
  .topbar span { color: #FFD54F; font-weight: 700; }
  .topbar .bolt { animation: bolt 2.5s ease-in-out infinite; display: inline-block; }
  @keyframes bolt {
    0%, 92%, 100% { transform: rotate(0); }
    94% { transform: rotate(-15deg); }
    96% { transform: rotate(15deg); }
    98% { transform: rotate(-8deg); }
  }

  /* ─── NAV ─── */
  header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--gray-200);
  }
  /* On mobile, remove backdrop-filter — it creates a containing block that
     breaks position:fixed for the slide-in menu drawer */
  @media (max-width: 900px) {
    header {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: white;
    }
  }
  /* Account for WordPress admin bar when logged in */
  body.admin-bar header { top: 32px; }
  @media (max-width: 782px) {
    body.admin-bar header { top: 46px; }
  }
  @media (max-width: 600px) {
    body.admin-bar header { top: 0; position: static; }
  }
  header::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -3px;
    height: 3px;
    background: linear-gradient(90deg,
      var(--red) 0, var(--red) 33%,
      var(--white) 33%, var(--white) 66%,
      var(--blue) 66%, var(--blue) 100%);
  }
  .nav-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
  }
  .logo img {
    height: 54px; width: auto; display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
  }
  .nav-center { display: flex; align-items: center; gap: 4px; }
  .nav-center > .nav-item { position: relative; }
  .nav-center a, .nav-center > .nav-item > button {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-600);
    padding: 10px 16px;
    border-radius: 100px;
    position: relative;
    transition: all 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-center a:hover, .nav-center > .nav-item > button:hover { color: var(--red); background: var(--red-soft); }
  .nav-center a.active, .nav-center > .nav-item.active > button { color: var(--red); background: var(--red-soft); }
  .nav-center > .nav-item.has-dropdown > button::after {
    content: '';
    width: 6px; height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s;
    opacity: 0.7;
  }
  .nav-center > .nav-item.has-dropdown:hover > button::after,
  .nav-center > .nav-item.has-dropdown:focus-within > button::after {
    transform: rotate(225deg);
    margin-top: 3px;
  }

  /* Dropdown */
  .dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(.16,1,.3,1);
    z-index: 200;
  }
  .nav-center > .nav-item:hover > .dropdown,
  .nav-center > .nav-item:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown::before {
    content: '';
    position: absolute;
    top: -6px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: white;
    border-left: 1px solid var(--gray-200);
    border-top: 1px solid var(--gray-200);
  }
  .dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--gray-800);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s;
    background: transparent;
  }
  .dropdown a:hover { background: var(--gray-50); color: var(--red); }
  .dropdown a .icon {
    width: 32px; height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .dropdown a:hover .icon { background: var(--red-soft); }
  .dropdown a .text { display: flex; flex-direction: column; line-height: 1.3; }
  .dropdown a .text small {
    font-weight: 500;
    color: var(--gray-400);
    font-size: 12px;
    margin-top: 2px;
  }
  .dropdown a:hover .text small { color: var(--gray-600); }

  .nav-right { display: flex; align-items: center; gap: 14px; }
  .nav-phone {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--blue-dark);
    padding: 8px 14px;
    transition: color 0.2s;
  }
  .nav-phone:hover { color: var(--red); }
  .nav-phone .phone-icon {
    width: 36px; height: 36px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(178,34,52,0.3);
    animation: phone-ring 3s ease-in-out infinite;
  }
  @keyframes phone-ring {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-10deg); }
    94% { transform: rotate(10deg); }
    96% { transform: rotate(-6deg); }
    98% { transform: rotate(6deg); }
  }
  .nav-cta {
    background: var(--red);
    color: white !important;
    padding: 13px 26px;
    border-radius: 100px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 4px 14px rgba(178,34,52,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    display: inline-flex; align-items: center; gap: 8px;
    white-space: nowrap;
  }
  .nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(178,34,52,0.4);
  }
  .nav-cta::after {
    content: '→';
    transition: transform 0.2s;
  }
  .nav-cta:hover::after { transform: translateX(3px); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    padding: 90px 36px 40px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 800px 400px at 20% 30%, var(--red-soft) 0%, transparent 60%),
      radial-gradient(ellipse 1000px 500px at 90% 70%, var(--blue-soft) 0%, transparent 60%),
      var(--white);
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(42,95,165,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 1200px 600px at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 1200px 600px at center, black 30%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  /* Left column */
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 7px 14px 7px 8px;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    animation: slideUp 0.6s cubic-bezier(.16,1,.3,1) both;
  }
  .hero-eyebrow .avatar-stack {
    display: flex;
    margin-right: 4px;
  }
  .hero-eyebrow .avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    font-size: 11px;
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }
  .hero-eyebrow .avatar:first-child { margin-left: 0; background: var(--red); }
  .hero-eyebrow .avatar:nth-child(2) { background: var(--blue); }
  .hero-eyebrow .avatar:nth-child(3) { background: var(--gold); }
  .hero-eyebrow strong { color: var(--gray-800); font-weight: 700; }
  .hero-eyebrow .stars-mini { color: var(--gold); letter-spacing: 1px; }

  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > *:nth-child(1) { animation-delay: 0s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.05s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.15s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.2s; }
  .hero-content > * { animation: slideUp 0.7s cubic-bezier(.16,1,.3,1) both; }

  .hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(48px, 6.5vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gray-800);
  }
  .hero h1 .accent {
    color: var(--red);
    position: relative;
    display: inline-block;
  }
  .hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 8px; left: -4px; right: -4px;
    height: 12px;
    background: linear-gradient(90deg, transparent, rgba(232,160,32,0.4) 20%, rgba(232,160,32,0.4) 80%, transparent);
    z-index: -1;
    border-radius: 12px;
  }
  .hero h1 .scribble {
    font-family: 'Caveat', cursive;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.85em;
    transform: rotate(-2deg);
    display: inline-block;
  }

  .hero-sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 36px;
  }
  .hero-sub strong { color: var(--gray-800); font-weight: 700; }

  .hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(.16,1,.3,1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
  }
  .btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 6px 20px rgba(178,34,52,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  }
  .btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(178,34,52,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  }
  .btn-primary::after { content: '→'; transition: transform 0.2s; }
  .btn-primary:hover::after { transform: translateX(4px); }
  .btn-secondary {
    background: white;
    color: var(--blue-dark);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
  }
  .btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }

  .hero-trust { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
  .hero-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    color: var(--gray-600);
  }
  .hero-trust-item svg { color: var(--green); flex-shrink: 0; }
  .hero-trust-divider {
    width: 1px; height: 16px;
    background: var(--gray-200);
  }

  /* Hero right - visual */
  .hero-visual {
    position: relative;
    height: 540px;
    animation: slideUp 0.8s 0.2s cubic-bezier(.16,1,.3,1) both;
  }

  /* Main stat card */
  .visual-card {
    position: absolute;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .vc-hero {
    top: 0;
    left: 40px; right: 0;
    height: 320px;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: white;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .vc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
  }
  .vc-hero::after {
    content: '🔑';
    position: absolute;
    right: -30px; top: -40px;
    font-size: 240px;
    opacity: 0.08;
    transform: rotate(-15deg);
  }
  .vc-hero-top {
    display: flex; justify-content: space-between; align-items: center;
    position: relative; z-index: 1;
  }
  .vc-hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
  }
  .pulse-dot {
    width: 8px; height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ADE80;
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
  .vc-hero-rating {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 14px;
  }
  .vc-hero-rating .stars { color: #FFD54F; letter-spacing: 1px; font-size: 12px; }
  .vc-hero-bottom { position: relative; z-index: 1; }
  .vc-hero h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .vc-hero p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
  }
  .vc-hero p .icon { color: #FFD54F; margin-right: 6px; }

  /* Stat cards floating */
  .vc-stat {
    background: white;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--gray-200);
  }
  .vc-stat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
  }
  .vc-stat-text .num {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: var(--gray-800);
  }
  .vc-stat-text .lbl {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
    margin-top: 2px;
  }

  .vc-stat-1 {
    left: 0;
    top: 60px;
    animation: float-1 4s ease-in-out infinite;
  }
  .vc-stat-1 .vc-stat-icon { background: var(--red-soft); color: var(--red); }

  .vc-stat-2 {
    right: 30px;
    top: 350px;
    animation: float-2 4.5s ease-in-out infinite;
  }
  .vc-stat-2 .vc-stat-icon { background: var(--blue-soft); color: var(--blue); }

  .vc-stat-3 {
    left: 60px;
    top: 430px;
    animation: float-3 5s ease-in-out infinite;
  }
  .vc-stat-3 .vc-stat-icon { background: #FEF7E0; color: var(--gold); }

  @keyframes float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
  @keyframes float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  @keyframes float-3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

  /* Subtle keys background */
  .visual-keys {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
  }
  .vkey {
    position: absolute;
    opacity: 0.15;
    font-size: 24px;
    animation: drift var(--dur) ease-in-out infinite;
  }
  @keyframes drift {
    0%, 100% { transform: translateY(0) rotate(var(--r1)); }
    50% { transform: translateY(-20px) rotate(var(--r2)); }
  }

  /* ─── HERO SLIDER ─── */
  .hero-slider {
    position: relative;
    z-index: 2;
  }
  .hero-slide {
    display: none;
    animation: slideFade 0.6s cubic-bezier(.16,1,.3,1);
  }
  .hero-slide.active { display: block; }
  @keyframes slideFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .slider-controls {
    max-width: 1280px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 3;
  }
  .slider-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
  }
  .slider-arrow:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(178,34,52,0.3);
  }
  .slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s;
  }
  .slider-dot:hover { background: var(--gray-400); transform: scale(1.2); }
  .slider-dot.active {
    width: 36px;
    border-radius: 6px;
    background: var(--red);
  }

  /* ─── LOGO STRIP ─── */
  .logo-strip {
    background: var(--gray-50);
    padding: 36px 36px;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }
  .logo-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  .logo-strip-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .logo-strip-items {
    display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
  }
  .logo-strip-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 15px;
  }
  .logo-strip-item .icon-wrap {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
  }
  .logo-strip-item:nth-child(2) .icon-wrap { color: var(--blue); }
  .logo-strip-item:nth-child(3) .icon-wrap { color: var(--gold); }
  .logo-strip-item:nth-child(4) .icon-wrap { color: var(--green); }
  .logo-strip-item:nth-child(5) .icon-wrap { color: var(--red); }

  /* ─── SERVICES ─── */
  .section {
    padding: 100px 36px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red-soft);
    color: var(--red);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .section-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
  }
  .section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--gray-800);
    max-width: 720px;
  }
  .section h2 .accent { color: var(--red); }
  .section h2 .blue { color: var(--blue); }
  .section h2 .scribble {
    font-family: 'Caveat', cursive;
    color: var(--blue);
    transform: rotate(-2deg);
    display: inline-block;
  }

  .section-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
  }
  .section-intro p {
    color: var(--gray-600);
    font-size: 17px;
    max-width: 380px;
    line-height: 1.65;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(.16,1,.3,1);
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-soft) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .service-card:nth-child(2)::before {
    background: linear-gradient(135deg, var(--red-soft) 0%, transparent 60%);
  }
  .service-card:nth-child(3)::before {
    background: linear-gradient(135deg, #FEF7E0 0%, transparent 60%);
  }
  .service-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
  }
  .service-card:nth-child(2):hover { border-color: var(--red); }
  .service-card:nth-child(3):hover { border-color: var(--gold); }
  .service-card:hover::before { opacity: 1; }
  .service-card > * { position: relative; z-index: 1; }

  .service-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-light));
    border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: transform 0.3s;
  }
  .service-card:nth-child(2) .service-icon-wrap {
    background: linear-gradient(135deg, var(--red-soft), var(--red-pale));
  }
  .service-card:nth-child(3) .service-icon-wrap {
    background: linear-gradient(135deg, #FEF7E0, #FCEFC5);
  }
  .service-card:hover .service-icon-wrap {
    transform: rotate(-8deg) scale(1.05);
  }

  .service-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-800);
    letter-spacing: -0.015em;
  }
  .service-meta {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .service-meta::before {
    content: '';
    width: 16px; height: 1px;
    background: currentColor;
  }
  .service-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 28px;
  }
  .service-list li {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service-list li::before {
    content: '✓';
    width: 18px; height: 18px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
  }
  .service-card:nth-child(2) .service-list li::before { background: var(--red); }
  .service-card:nth-child(3) .service-list li::before { background: var(--gold); }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--blue);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }
  .service-card:nth-child(2) .service-link { color: var(--red); }
  .service-card:nth-child(3) .service-link { color: var(--gold); }
  .service-card:hover .service-link { gap: 12px; border-bottom-color: currentColor; }

  /* ─── BIG CTA / EMERGENCY ─── */
  .cta-strip {
    margin: 0 36px 0;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 50%, var(--red) 100%);
    color: white;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    max-width: calc(1280px - 0px);
    margin-left: auto;
    margin-right: auto;
  }
  .cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }
  .cta-strip::after {
    content: '⚡';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 320px;
    opacity: 0.06;
    line-height: 1;
  }
  .cta-strip-text { position: relative; z-index: 1; max-width: 500px; }
  .cta-strip h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .cta-strip p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.55;
  }
  .cta-strip-actions {
    position: relative;
    z-index: 1;
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
  }
  .cta-strip .btn-white {
    background: white;
    color: var(--red);
    padding: 18px 30px;
    border-radius: 100px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.2s;
  }
  .cta-strip .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
  .cta-strip .phone-large {
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 28px;
    display: flex; align-items: center; gap: 10px;
    transition: opacity 0.2s;
  }
  .cta-strip .phone-large:hover { opacity: 0.85; }

  /* ─── WHY US ─── */
  .why-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 100px 36px;
  }
  .why-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .why-grid h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
  }
  .features {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .feature {
    background: white;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    display: flex; gap: 18px; align-items: flex-start;
    transition: all 0.25s;
  }
  .feature:hover {
    border-color: var(--red);
    transform: translateX(4px);
    box-shadow: var(--shadow);
  }
  .feature:nth-child(even):hover { border-color: var(--blue); }
  .feature-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red-soft), var(--red-pale));
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .feature:nth-child(even) .feature-icon {
    background: linear-gradient(135deg, var(--blue-soft), var(--blue-light));
    color: var(--blue);
  }
  .feature h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-800);
  }
  .feature p { font-size: 14px; color: var(--gray-600); line-height: 1.55; }

  /* Hero card on right */
  .why-visual {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 0;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
  }
  .why-visual-header {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 36px;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .why-visual-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
  }
  .why-visual-header::after {
    content: '🔑';
    position: absolute;
    bottom: -30px; right: -20px;
    font-size: 160px;
    opacity: 0.1;
    transform: rotate(-12deg);
  }
  .why-visual-header h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    letter-spacing: -0.015em;
  }
  .why-visual-header p {
    font-size: 14px;
    opacity: 0.85;
    position: relative;
  }
  .why-visual-body { padding: 28px 32px 32px; }
  .why-visual-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .why-visual-row:last-child { border-bottom: none; }
  .why-visual-row .label { color: var(--gray-600); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
  .why-visual-row .label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
  .why-visual-row .value { font-family: 'Fredoka', sans-serif; font-weight: 700; color: var(--gray-800); font-size: 15px; }

  .discount-badge {
    position: absolute;
    top: -16px; right: -16px;
    width: 110px; height: 110px;
    background: var(--red);
    border-radius: 50%;
    border: 5px solid white;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 8px 24px rgba(178,34,52,0.4);
    text-align: center;
    z-index: 5;
    transform: rotate(8deg);
    animation: badge-bob 3s ease-in-out infinite;
  }
  @keyframes badge-bob {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(8deg) translateY(-6px); }
  }
  .discount-badge .pct {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }
  .discount-badge .lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.95;
  }

  /* ─── REVIEWS ─── */
  .reviews-section {
    background: var(--gray-800);
    color: white;
    padding: 100px 36px;
    position: relative;
    overflow: hidden;
  }
  .reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .reviews-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .reviews-section .section-tag { background: rgba(255,213,79,0.1); color: #FFD54F; }
  .reviews-section .section-tag::before { background: #FFD54F; }
  .reviews-section h2 { color: white; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
  }
  .review-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    border-color: rgba(255,213,79,0.3);
  }
  .review-stars { color: #FFD54F; letter-spacing: 3px; font-size: 16px; margin-bottom: 16px; }
  .review-card blockquote {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.15);
  }
  .review-card:nth-child(2) .review-avatar { background: var(--blue); }
  .review-card:nth-child(3) .review-avatar { background: var(--gold); }
  .review-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 15px; }
  .review-loc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
  .reviews-summary {
    margin-top: 56px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .reviews-summary .big-rating {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFD54F;
    line-height: 1;
  }
  .reviews-summary .big-rating-meta {
    text-align: left;
  }
  .reviews-summary .stars-big { color: #FFD54F; font-size: 18px; letter-spacing: 3px; margin-bottom: 4px; }
  .reviews-summary .count { font-size: 14px; color: rgba(255,255,255,0.65); }

  /* ─── FINAL CTA ─── */
  .final-cta {
    padding: 120px 36px;
    text-align: center;
    background: white;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, var(--red-soft) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-cta-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .final-cta h2 .accent { color: var(--red); }
  .final-cta p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 36px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--gray-800);
    color: white;
    padding: 70px 36px 30px;
    border-top: 4px solid var(--red);
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }
  .footer-brand img { height: 54px; width: auto; display: block; margin-bottom: 18px; }
  .footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 22px; max-width: 280px; }
  .footer-phone-link {
    color: #FFD54F;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: block;
    margin-bottom: 6px;
  }
  .footer-email { color: rgba(255,255,255,0.55); font-size: 14px; }

  .footer-col h5 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col ul a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
  .footer-col ul a:hover { color: white; }
  .footer-bottom {
    max-width: 1280px;
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .hero { padding: 70px 36px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; max-width: 700px; }
    .hero-content { text-align: left; }
    .hero-visual { height: 420px; max-width: 600px; margin: 0 auto; }
    .vc-hero { left: 30px; right: 0; height: 280px; }
    .vc-stat-1 { left: 0; top: 50px; }
    .vc-stat-2 { right: 20px; top: 300px; }
    .vc-stat-3 { left: 40px; top: 370px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .section { padding: 80px 36px; }
    .nav-center { gap: 0; }
    .nav-center a, .nav-center > .nav-item > button { padding: 10px 12px; font-size: 14px; }
  }
  @media (max-width: 900px) {
    .topbar { font-size: 12px; padding: 9px 16px; }
    .nav-wrap { padding: 0 20px; height: 70px; }
    .nav-cta { padding: 10px 16px; font-size: 13px; }
    .nav-cta::after { display: none; }
    .nav-phone { display: none; }
    .section { padding: 60px 20px; }
    .hero { padding: 40px 20px 30px; }
    .hero h1 { font-size: clamp(38px, 10vw, 56px); line-height: 1.05; }
    .hero h1 br { display: none; }
    .hero h1 .accent, .hero h1 .scribble { display: inline; }
    .hero h1 .scribble { display: block; margin-top: 6px; }
    .hero-eyebrow { font-size: 12px; padding: 6px 12px 6px 6px; }
    .hero-eyebrow .avatar { width: 22px; height: 22px; font-size: 10px; }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn { justify-content: center; padding: 14px 22px; font-size: 15px; }
    .hero-trust { gap: 14px; }
    .hero-trust-item { font-size: 13px; }
    .hero-trust-divider { display: none; }
    .hero-inner { gap: 30px; }

    /* Hero visual stack on mobile - reorganize as static cards */
    .hero-visual { height: auto; max-width: 100%; display: grid; grid-template-columns: 1fr; gap: 12px; }
    .visual-card { position: static !important; animation: none !important; }
    .vc-hero { left: auto !important; right: auto !important; height: auto; padding: 24px; min-height: 200px; }
    .vc-hero h3 { font-size: 24px !important; }
    .vc-stat { padding: 14px 18px; }
    .vc-stat-icon { width: 38px; height: 38px; font-size: 20px; }
    .vc-stat-text .num { font-size: 20px; }

    /* Slider controls */
    .slider-controls { margin-top: 24px; gap: 14px; }
    .slider-arrow { width: 38px; height: 38px; }
    .slider-dot { width: 8px; height: 8px; }
    .slider-dot.active { width: 28px; }

    /* Floating keys hidden on mobile */
    .visual-keys, .floating-keys { display: none; }

    /* Logo strip */
    .logo-strip { padding: 28px 20px; }
    .logo-strip-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .logo-strip-items { gap: 12px 18px; }
    .logo-strip-item { font-size: 13px; gap: 8px; }
    .logo-strip-item .icon-wrap { width: 30px; height: 30px; }

    /* Section headers/intro */
    .section-intro { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
    .section h2 { font-size: clamp(32px, 7vw, 48px); }

    /* Service cards */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 24px 22px; }
    .service-card h3 { font-size: 22px; }
    .service-list { grid-template-columns: 1fr 1fr; gap: 6px; }
    .service-list li { font-size: 12px; }

    /* CTA strip */
    .cta-strip { margin: 0 20px; padding: 32px 24px; flex-direction: column; align-items: flex-start; border-radius: 20px; }
    .cta-strip h2 { font-size: 28px; }
    .cta-strip::after { font-size: 220px; right: -80px; }
    .cta-strip-actions { width: 100%; gap: 12px; flex-direction: column; align-items: stretch; }
    .cta-strip .btn-white { justify-content: center; padding: 14px 22px; font-size: 15px; }
    .cta-strip .phone-large { font-size: 22px; }

    /* Why section */
    .why-section { padding: 60px 20px; }
    .why-visual-header { padding: 26px; }
    .why-visual-header h3 { font-size: 22px; }
    .why-visual-body { padding: 20px 22px 24px; }
    .discount-badge { width: 88px; height: 88px; top: -10px; right: -10px; border-width: 4px; }
    .discount-badge .pct { font-size: 26px; }
    .feature { padding: 18px 20px; gap: 14px; }
    .feature-icon { width: 40px; height: 40px; }
    .feature h4 { font-size: 15px; }
    .feature p { font-size: 13px; }

    /* Reviews */
    .reviews-section { padding: 60px 20px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
    .review-card { padding: 24px 22px; }
    .reviews-summary { margin-top: 36px; padding-top: 28px; }
    .reviews-summary .big-rating { font-size: 38px; }

    /* Final CTA */
    .final-cta { padding: 80px 20px; }
    .final-cta h2 { font-size: clamp(34px, 8vw, 56px); }
    .final-cta p { font-size: 16px; }

    /* Footer */
    footer { padding: 50px 20px 24px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { padding-top: 20px; flex-direction: column; text-align: center; gap: 6px; font-size: 12px; }

    /* Page hero (inner pages) */
    .page-hero { padding: 60px 20px 50px; }
    .page-hero h1 { font-size: clamp(36px, 8vw, 56px); }
    .page-hero p { font-size: 15px; }
  }

  @media (max-width: 600px) {
    .topbar { font-size: 11px; letter-spacing: 0; line-height: 1.5; }
    .topbar .bolt { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .reviews-summary { flex-direction: column; gap: 10px; }
    .reviews-summary .big-rating-meta { text-align: center; }
    .hero h1 { font-size: clamp(32px, 9vw, 44px); }
    .hero-eyebrow { gap: 6px; flex-wrap: wrap; }
    .vc-hero h3 { font-size: 20px !important; line-height: 1.15; }
    .service-list { grid-template-columns: 1fr; }
  }

/* ─── PAGE EDITOR CONTENT WRAPPER ─── */
.page-editor-content { width: 100%; }
.page-editor-content > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.page-editor-content > p,
.page-editor-content > h1,
.page-editor-content > h2,
.page-editor-content > h3,
.page-editor-content > h4,
.page-editor-content > ul,
.page-editor-content > ol,
.page-editor-content > blockquote {
  padding-left: 36px;
  padding-right: 36px;
}
.page-editor-content > p { margin-bottom: 1em; line-height: 1.65; }
.page-editor-content h2 { font-size: clamp(28px, 4vw, 44px); margin: 40px auto 16px; }
.page-editor-content h3 { font-size: clamp(22px, 3vw, 30px); margin: 28px auto 12px; }
.page-editor-content > .alignfull,
.page-editor-content > .alignwide { max-width: 100%; padding: 0; }
@media (max-width: 900px) {
  .page-editor-content > p,
  .page-editor-content > h1,
  .page-editor-content > h2,
  .page-editor-content > h3,
  .page-editor-content > h4,
  .page-editor-content > ul,
  .page-editor-content > ol,
  .page-editor-content > blockquote {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ─── PAGE HERO (Inner Pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white;
  padding: 90px 36px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-hero::after {
  content: '🔑';
  position: absolute;
  right: -40px; bottom: -60px;
  font-size: 240px;
  opacity: 0.06;
  transform: rotate(-15deg);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: #FFD54F; }
.page-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.6;
}

/* ─── FLAG STRIPE ─── */
.flag-stripe {
  height: 8px;
  background: linear-gradient(90deg,
    var(--red) 0, var(--red) 33%,
    white 33%, white 66%,
    var(--blue) 66%, var(--blue) 100%);
}

/* ─── MOBILE MENU ─── */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--gray-800);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Dark backdrop overlay when menu is open */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.mobile-menu-backdrop.open {
  display: block;
  opacity: 1;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  /* Prevent body scroll when menu is open */
  body.menu-open { overflow: hidden; }

  /* APP-STYLE SLIDE-IN MENU */
  .nav-center {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 150;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  }
  body.admin-bar .nav-center { padding-top: 110px; }
  .nav-center.open { transform: translateX(0); }

  /* Menu items styled like app rows */
  .nav-center > .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-center > .nav-item:last-child {
    border-bottom: none;
  }
  .nav-center > .nav-item > a,
  .nav-center > .nav-item > button {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    border-radius: 0;
    justify-content: space-between;
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    background: transparent;
    transition: background 0.15s;
  }
  .nav-center > .nav-item > a:active,
  .nav-center > .nav-item > button:active {
    background: var(--gray-50);
  }
  .nav-center > .nav-item.has-dropdown > button::after {
    margin-top: 0;
    transition: transform 0.25s;
  }
  .nav-center > .nav-item.open > button::after {
    transform: rotate(180deg);
  }

  /* Dropdown items styled like sub-rows */
  .nav-center .dropdown {
    position: static !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    background: var(--gray-50);
    display: none;
    border-radius: 0;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .nav-center .dropdown::before { display: none !important; }
  .nav-center .nav-item.open .dropdown { display: block; }
  .nav-center .dropdown a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 24px 14px 40px !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0 !important;
    background: transparent !important;
    transition: background 0.15s;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .nav-center .dropdown a .text {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .nav-center .dropdown a .text small {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
    margin-top: 2px;
  }
  .nav-center .dropdown a .icon {
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    font-size: 18px;
  }
  .nav-center .dropdown a:active {
    background: white !important;
  }
  .nav-center .dropdown li:last-child a {
    border-bottom: none;
  }

  /* Add a phone CTA at the bottom of the menu */
  .nav-center::after {
    content: '';
    flex: 1;
  }
  .nav-right .nav-phone { display: none; }
}

/* ─── PREVENT HORIZONTAL OVERFLOW ON MOBILE ─── */
/* Use overflow-x: clip on HTML, not body — clip doesn't break position:fixed */
html {
  overflow-x: clip;
  max-width: 100%;
}
body {
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
}
/* Fallback for older browsers that don't support clip — use hidden on html only */
@supports not (overflow: clip) {
  html { overflow-x: hidden; }
  body { overflow-x: visible; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FLOATING ACTION BUTTON (FAB)
   Phone (primary) + Email (secondary) - mobile only
═══════════════════════════════════════════════════════════════ */
.mobile-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.mobile-fab > * { pointer-events: auto; }

.fab-action {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(178, 34, 52, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
}
.fab-action:active {
  transform: scale(0.92);
}

/* Primary CALL button - larger, eye-catching */
.fab-call {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
}

/* Secondary EMAIL button - smaller, BLUE */
.fab-email {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  box-shadow: 0 4px 14px rgba(29, 63, 110, 0.35), 0 2px 4px rgba(0, 0, 0, 0.12);
}

/* Tooltip on email button */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-800);
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.fab-email:hover .fab-tooltip,
.fab-email:active .fab-tooltip {
  opacity: 1;
}

/* Pulsing ring around the call button to draw attention */
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--red);
  opacity: 0.6;
  animation: fab-ping 2s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-ping {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Hide FAB when mobile menu is open (so it doesn't block the menu) */
body.menu-open .mobile-fab {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

/* Only show on mobile */
@media (max-width: 900px) {
  .mobile-fab {
    display: flex;
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .fab-pulse { animation: none; opacity: 0; }
}
