/* ── Reset ── */
*:where(:not(html,iframe,canvas,img,svg,video,audio,input[type="radio"],input[type="checkbox"]):not(svg *,symbol *)){all:unset;display:revert}
*,*::before,*::after{box-sizing:border-box}
a,button{cursor:revert}
ol,ul,menu{list-style:none}
img{max-width:100%}
span,a{display:inline-block}

/* ── Base Variables ── */
:root {
    --blue-1: #0773BB;
    --blue-2: #098DE6;
    --blue-3: #065E99;
    --blue-4: #054977;
    --blue-5: #033455;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition-theme: background-color .4s ease, color .4s ease, border-color .4s ease, box-shadow .4s ease;
}

/* ── Dark Theme (default) ── */
[data-theme="dark"] {
    --bg-body: #010f20;
    --bg-header: rgba(1,15,32,.85);
    --bg-header-scrolled: rgba(1,15,32,.95);
    --header-shadow: rgba(0,0,0,.3);
    --header-border: rgba(9,141,230,.08);
    --logo-text-color: #fff;
    --logo-sub-color: var(--blue-2);
    --logo-mark-border: var(--blue-2);
    --logo-mark-color: var(--blue-2);
    --nav-link-color: rgba(255,255,255,.65);
    --nav-link-hover-bg: rgba(255,255,255,.06);
    --nav-link-hover-color: #fff;
    --ham-stroke: #fff;
    --ham-nav-bg: #021a33;
    --ham-nav-top-bg: var(--blue-5);
    --ham-nav-link-color: rgba(255,255,255,.7);
    --ham-nav-link-hover: rgba(9,141,230,.1);
    --ham-nav-border: rgba(255,255,255,.08);
    --greyout-opacity: .5;

    --hero-bg: #010f20;
    --hero-glow: rgba(9,141,230,.1);
    --hero-eyebrow-color: var(--blue-2);
    --hero-h1-color: #fff;
    --hero-h1-accent: var(--blue-2);
    --hero-desc-color: rgba(255,255,255,.55);
    --hero-phone-color: rgba(255,255,255,.3);
    --btn-glow-bg: var(--blue-1);
    --btn-glow-shadow: rgba(9,141,230,.3);
    --btn-ghost-color: rgba(255,255,255,.7);
    --btn-ghost-border: rgba(255,255,255,.15);
    --btn-ghost-hover-border: rgba(255,255,255,.35);
    --btn-ghost-hover-color: #fff;
    --btn-ghost-hover-bg: rgba(255,255,255,.04);
    --wave-1-fill: #098DE6;
    --wave-2-fill: #065E99;
    --wave-3-fill: #054977;
    --wave-1-opacity: .08;
    --wave-2-opacity: .05;
    --wave-3-opacity: .03;

    --stats-bg: #021a33;
    --stats-border: rgba(9,141,230,.08);
    --stat-number-color: var(--blue-2);
    --stat-label-color: rgba(255,255,255,.4);

    --why-bg: #010f20;
    --why-card-bg: rgba(255,255,255,.03);
    --why-card-border: rgba(255,255,255,.06);
    --why-card-hover-shadow: rgba(9,141,230,.08);
    --why-card-icon-bg: rgba(9,141,230,.12);
    --why-card-icon-color: var(--blue-2);
    --why-card-h3-color: #fff;
    --why-card-p-color: rgba(255,255,255,.5);
    --section-label-color: var(--blue-2);
    --section-title-color: #fff;
    --section-desc-color: rgba(255,255,255,.5);

    --svc-bg: #021a33;
    --svc-card-bg: linear-gradient(145deg, rgba(9,141,230,.04), transparent);
    --svc-card-border: rgba(9,141,230,.1);
    --svc-card-hover-border: rgba(9,141,230,.25);
    --svc-card-hover-shadow: rgba(0,0,0,.3);
    --svc-h3-color: #fff;
    --svc-from-color: var(--blue-2);
    --svc-p-color: rgba(255,255,255,.45);
    --svc-feat-bg: rgba(9,141,230,.08);
    --svc-feat-color: rgba(255,255,255,.6);

    --area-bg: #010f20;
    --area-tag-bg: transparent;
    --area-tag-border: rgba(9,141,230,.15);
    --area-tag-color: rgba(255,255,255,.65);

    --reviews-bg: #021a33;
    --review-card-bg: rgba(255,255,255,.02);
    --review-card-border: rgba(255,255,255,.05);
    --review-stars-color: #f0c040;
    --review-text-color: rgba(255,255,255,.8);
    --review-author-color: var(--blue-2);

    --cta-bg: linear-gradient(135deg, var(--blue-4), var(--blue-5), #021a33);
    --cta-glow1: rgba(9,141,230,.12);
    --cta-glow2: rgba(7,115,187,.08);
    --cta-phone-color: #fff;
    --cta-hours-color: rgba(255,255,255,.4);

    --footer-bg: #010f20;
    --footer-border: rgba(255,255,255,.04);
    --footer-text: rgba(255,255,255,.35);
    --footer-link: rgba(255,255,255,.5);
    --footer-brand-color: rgba(255,255,255,.6);
    --footer-divider: rgba(255,255,255,.06);

    --body-color: #cdd9e5;
    --selection-bg: var(--blue-2);
}

/* ── Light Theme ── */
[data-theme="light"] {
    --bg-body: #faf8f4;
    --bg-header: rgba(250,248,244,.92);
    --bg-header-scrolled: rgba(250,248,244,.97);
    --header-shadow: rgba(3,52,85,.08);
    --header-border: rgba(7,115,187,.08);
    --logo-text-color: var(--blue-5);
    --logo-sub-color: var(--blue-3);
    --logo-mark-border: var(--blue-2);
    --logo-mark-color: var(--blue-2);
    --nav-link-color: var(--blue-4);
    --nav-link-hover-bg: rgba(7,115,187,.08);
    --nav-link-hover-color: var(--blue-1);
    --ham-stroke: var(--blue-5);
    --ham-nav-bg: #faf8f4;
    --ham-nav-top-bg: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    --ham-nav-link-color: var(--blue-5);
    --ham-nav-link-hover: rgba(7,115,187,.06);
    --ham-nav-border: rgba(7,115,187,.1);
    --greyout-opacity: .3;

    --hero-bg: linear-gradient(170deg, #faf8f4 0%, #e8f0f8 50%, #f5f0e8 100%);
    --hero-glow: rgba(9,141,230,.08);
    --hero-eyebrow-color: var(--blue-3);
    --hero-h1-color: var(--blue-5);
    --hero-h1-accent: var(--blue-1);
    --hero-desc-color: #4a5568;
    --hero-phone-color: rgba(5,73,119,.7);
    --btn-glow-bg: var(--blue-1);
    --btn-glow-shadow: rgba(7,115,187,.2);
    --btn-ghost-color: var(--blue-4);
    --btn-ghost-border: rgba(7,115,187,.2);
    --btn-ghost-hover-border: var(--blue-1);
    --btn-ghost-hover-color: var(--blue-1);
    --btn-ghost-hover-bg: rgba(7,115,187,.04);
    --wave-1-fill: #098DE6;
    --wave-2-fill: #065E99;
    --wave-3-fill: #054977;
    --wave-1-opacity: .06;
    --wave-2-opacity: .04;
    --wave-3-opacity: .025;

    --stats-bg: #f5f0e8;
    --stats-border: rgba(7,115,187,.08);
    --stat-number-color: var(--blue-1);
    --stat-label-color: #5a6577;

    --why-bg: #faf8f4;
    --why-card-bg: #fff;
    --why-card-border: rgba(7,115,187,.06);
    --why-card-hover-shadow: rgba(3,52,85,.08);
    --why-card-icon-bg: rgba(9,141,230,.1);
    --why-card-icon-color: var(--blue-1);
    --why-card-h3-color: var(--blue-5);
    --why-card-p-color: #5a6577;
    --section-label-color: var(--blue-2);
    --section-title-color: var(--blue-5);
    --section-desc-color: #5a6577;

    --svc-bg: linear-gradient(180deg, var(--blue-5) 0%, var(--blue-4) 100%);
    --svc-card-bg: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    --svc-card-border: rgba(255,255,255,.1);
    --svc-card-hover-border: rgba(255,255,255,.25);
    --svc-card-hover-shadow: rgba(0,0,0,.2);
    --svc-h3-color: #fff;
    --svc-from-color: var(--blue-2);
    --svc-p-color: rgba(255,255,255,.6);
    --svc-feat-bg: rgba(255,255,255,.08);
    --svc-feat-color: rgba(255,255,255,.7);

    --area-bg: #f5f0e8;
    --area-tag-bg: #fff;
    --area-tag-border: rgba(7,115,187,.1);
    --area-tag-color: var(--blue-4);

    --reviews-bg: #faf8f4;
    --review-card-bg: #fff;
    --review-card-border: rgba(7,115,187,.06);
    --review-stars-color: #c9a84c;
    --review-text-color: var(--blue-5);
    --review-author-color: var(--blue-3);

    --cta-bg: linear-gradient(135deg, var(--blue-4), var(--blue-5));
    --cta-glow1: rgba(9,141,230,.15);
    --cta-glow2: rgba(7,115,187,.1);
    --cta-phone-color: #fff;
    --cta-hours-color: rgba(255,255,255,.5);

    --footer-bg: #1a1a2e;
    --footer-border: rgba(255,255,255,.08);
    --footer-text: rgba(255,255,255,.5);
    --footer-link: rgba(255,255,255,.7);
    --footer-brand-color: rgba(255,255,255,.8);
    --footer-divider: rgba(255,255,255,.08);

    --body-color: #1a1a2e;
    --selection-bg: var(--blue-2);
}

/* ── Global ── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--body-color);
    background-color: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: var(--transition-theme);
}

::selection { background-color: var(--selection-bg); color: #fff; }

/* ── Header ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 80px;
    background: var(--bg-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--header-border);
    transition: var(--transition-theme);
}

header.scrolled {
    background: var(--bg-header-scrolled);
    box-shadow: 0 2px 30px var(--header-shadow);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    position: relative;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .4s ease;
}

.logo-mark .logo-dark { opacity: 1; }
.logo-mark .logo-light { opacity: 0; }

[data-theme="light"] .logo-mark .logo-dark { opacity: 0; }
[data-theme="light"] .logo-mark .logo-light { opacity: 1; }

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--logo-text-color);
    line-height: 1.1;
    transition: var(--transition-theme);
}

.logo-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--logo-sub-color);
    margin-top: 2px;
    transition: var(--transition-theme);
}

.desktop-nav {
    display: none;
    gap: 4px;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
}

.desktop-nav a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--nav-link-color);
    border-radius: 6px;
    transition: all .2s;
}

.desktop-nav a:hover { color: var(--nav-link-hover-color); background: var(--nav-link-hover-bg); }

.desktop-nav a.active { color: var(--nav-link-hover-color); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 52px;
}

.header-actions .nav-cta {
    background: var(--blue-1);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.header-actions .nav-cta:hover { background: var(--blue-2); color: #fff; }

/* ── Theme Toggle ── */
.theme-toggle {
    width: 48px;
    height: 26px;
    background: rgba(9,141,230,.2);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background .3s;
    flex-shrink: 0;
    border: 1px solid rgba(9,141,230,.15);
}

.theme-toggle:hover { background: rgba(9,141,230,.3); }

.theme-toggle-knob {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-2);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
}

[data-theme="light"] .theme-toggle-knob {
    transform: translateX(22px);
    background: var(--blue-1);
}

.theme-icon-moon, .theme-icon-sun { position: absolute; transition: opacity .3s; }

[data-theme="dark"] .theme-icon-sun { opacity: 0; }
[data-theme="dark"] .theme-icon-moon { opacity: 1; }
[data-theme="light"] .theme-icon-sun { opacity: 1; }
[data-theme="light"] .theme-icon-moon { opacity: 0; }

/* Desktop: always visible in header-actions. Mobile: toggle in ham nav */
.theme-toggle-desktop { display: inline-flex; margin-left: 12px; }
.theme-toggle-mobile { margin: 0 24px 0; }

/* ── Hamburger ── */
.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    user-select: none;
    position: fixed;
    right: 20px;
    top: 15px;
    width: 50px;
    z-index: 1000;
}
.hamRotate.active { transform: rotate(45deg); }

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms, stroke .4s;
    stroke: var(--ham-stroke);
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham4 .top { stroke-dasharray: 40 121; }
.ham4 .bottom { stroke-dasharray: 40 121; }
.ham4.active .top { stroke-dashoffset: -68px; }
.ham4.active .bottom { stroke-dashoffset: -68px; }
.ham.active .line { stroke: #fff; }

/* ── Slide-out Nav ── */
#HamNav {
    background-color: var(--ham-nav-bg);
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0 0 15px;
    position: fixed;
    right: 0; top: 0;
    transform: translateX(105%);
    transition: transform .4s ease-in-out, box-shadow .4s ease-in-out, visibility 0s .4s;
    visibility: hidden;
    width: 88%;
    max-width: 380px;
    z-index: 990;
}

body.nav-active #HamNav {
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
    transform: translateX(0);
    transition: transform .4s ease-in-out, box-shadow .4s ease-in-out;
    visibility: visible;
}

.ham-nav-top {
    background: var(--blue-5);
    padding: 24px;
    height: 80px;
    display: flex;
    align-items: center;
}

.ham-nav-top .logo-text { color: #fff; }
.ham-nav-top .logo-text small { color: rgba(255,255,255,.7); }

.ham-nav-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.ham-nav-items a {
    display: block;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 500;
    color: var(--ham-nav-link-color);
    transition: all .2s;
}

.ham-nav-items a:hover {
    background: var(--ham-nav-link-hover);
    color: var(--blue-1);
}

.ham-nav-items a.active {
    color: var(--blue-1);
    background: var(--ham-nav-link-hover);
}

.ham-nav-phone {
    margin: 0 24px;
    padding: 16px 0;
    border-top: 1px solid var(--ham-nav-border);
    text-align: center;
}

.ham-nav-phone a {
    display: inline-block;
    padding: 14px 32px;
    background: var(--blue-1);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}

#Greyout {
    background-color: #000;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    z-index: 980;
    opacity: 0;
    visibility: hidden;
    transition: visibility .4s, opacity .4s;
}

body.nav-active #Greyout { opacity: var(--greyout-opacity); visibility: visible; }

/* ── Hero ── */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-theme);
}

[data-theme="dark"] .hero { background: var(--hero-bg); }
[data-theme="light"] .hero { background: linear-gradient(170deg, #faf8f4 0%, #e8f0f8 50%, #f5f0e8 100%); }

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    overflow: hidden;
    z-index: 0;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    transition: opacity .4s ease;
}

.wave-1 { animation: waveScroll 12s linear infinite; opacity: var(--wave-1-opacity); }
.wave-2 { animation: waveScroll 18s linear infinite reverse; opacity: var(--wave-2-opacity); }
.wave-3 { animation: waveScroll 8s linear infinite; opacity: var(--wave-3-opacity); }

@keyframes waveScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--hero-glow) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--hero-eyebrow-color);
    margin-bottom: 28px;
    animation: fadeIn 1s ease both;
    transition: var(--transition-theme);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 72px);
    color: var(--hero-h1-color);
    line-height: 1.1;
    margin-bottom: 28px;
    animation: fadeIn 1s ease .2s both;
    transition: var(--transition-theme);
}

.hero h1 span {
    color: var(--hero-h1-accent);
    font-style: italic;
}

.hero-desc {
    font-size: 19px;
    line-height: 1.65;
    color: var(--hero-desc-color);
    max-width: 560px;
    margin: 0 auto 40px;
    animation: fadeIn 1s ease .4s both;
    transition: var(--transition-theme);
}

.hero-cta {
    animation: fadeIn 1s ease .6s both;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--btn-glow-bg);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    transition: all .3s;
    box-shadow: 0 0 30px var(--btn-glow-shadow), 0 4px 16px rgba(0,0,0,.15);
}

.btn-glow:hover {
    background: var(--blue-2);
    box-shadow: 0 0 50px var(--btn-glow-shadow), 0 8px 24px rgba(0,0,0,.2);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: var(--btn-ghost-color);
    font-size: 17px;
    font-weight: 500;
    border: 1px solid var(--btn-ghost-border);
    border-radius: 12px;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--btn-ghost-hover-border);
    color: var(--btn-ghost-hover-color);
    background: var(--btn-ghost-hover-bg);
}

.hero-phone {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--hero-phone-color);
    animation: fadeIn 1s ease .8s both;
    transition: var(--transition-theme);
}

.hero-phone a { color: inherit; transition: color .2s; }
.hero-phone a:hover { color: var(--blue-2); }

/* ── Formerly ── */
.formerly {
    padding: 48px 24px;
    text-align: center;
}
[data-theme="dark"] .formerly { background: #010f20; }
.formerly-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.formerly-text {
    font-size: 22px;
    opacity: 0.9;
    color: var(--text-muted, #999);
}

/* ── Sections ── */
section { padding: 100px 24px; transition: var(--transition-theme); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--section-label-color);
    margin-bottom: 12px;
    transition: var(--transition-theme);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--section-title-color);
    line-height: 1.15;
    margin-bottom: 16px;
    transition: var(--transition-theme);
}

.section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--section-desc-color);
    max-width: 560px;
    transition: var(--transition-theme);
}

/* ── Stats Bar ── */
.stats {
    background: var(--stats-bg);
    padding: 60px 24px;
    border-top: 1px solid var(--stats-border);
    border-bottom: 1px solid var(--stats-border);
    transition: var(--transition-theme);
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--stat-number-color);
    line-height: 1;
    margin-bottom: 8px;
    transition: var(--transition-theme);
}

.stat-label {
    font-size: 14px;
    color: var(--stat-label-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-theme);
}

/* ── Why Mobile (card style) ── */
.why-mobile {
    background: var(--why-bg);
    transition: var(--transition-theme);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: var(--why-card-bg);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--why-card-border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue-2), var(--blue-4));
    opacity: 0;
    transition: opacity .3s;
}

.why-card:hover::before { opacity: 1; }
.why-card:hover { box-shadow: 0 8px 30px var(--why-card-hover-shadow); }

.why-card-icon {
    width: 52px;
    height: 52px;
    background: var(--why-card-icon-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--why-card-icon-color);
    margin-bottom: 20px;
    transition: var(--transition-theme);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--why-card-h3-color);
    margin-bottom: 10px;
    transition: var(--transition-theme);
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--why-card-p-color);
    transition: var(--transition-theme);
}

/* ── Services ── */
.services {
    background: var(--svc-bg);
    transition: var(--transition-theme);
}

/* Services always uses white text (dark bg in both themes) */
.services .section-label { color: rgba(255,255,255,.5); }
.services .section-title { color: #fff; }
.services .section-desc { color: rgba(255,255,255,.5); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.svc-card {
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--svc-card-border);
    background: var(--svc-card-bg);
    transition: all .3s;
}

.svc-card:hover {
    border-color: var(--svc-card-hover-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--svc-card-hover-shadow);
}

.svc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.svc-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--svc-h3-color);
}

.svc-from {
    font-size: 26px;
    font-family: var(--font-display);
    color: var(--svc-from-color);
}

.svc-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--svc-p-color);
    margin-bottom: 16px;
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.svc-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--svc-card-border);
    font-size: 15px;
    color: #cdd9e5;
    transition: var(--transition-theme);
}

.svc-list li:last-child {
    border-bottom: none;
}

.svc-list li span:last-child {
    font-weight: 600;
    color: var(--blue-2);
    white-space: nowrap;
    margin-left: 12px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-2);
    transition: all .3s;
}

.svc-link:hover {
    gap: 12px;
}

.svc-link i {
    font-size: 12px;
    transition: transform .3s;
}

.svc-link:hover i {
    transform: translateX(2px);
}

.svc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-feat {
    padding: 6px 14px;
    background: var(--svc-feat-bg);
    border-radius: 100px;
    font-size: 13px;
    color: var(--svc-feat-color);
}

/* ── Service Area ── */
.service-area {
    background: var(--area-bg);
    transition: var(--transition-theme);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.area-tag {
    padding: 12px 24px;
    background: var(--area-tag-bg);
    border: 1px solid var(--area-tag-border);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: var(--area-tag-color);
    transition: all .2s;
}

.area-tag:hover {
    background: var(--blue-1);
    color: #fff;
    border-color: var(--blue-1);
}

/* ── Reviews ── */
.reviews {
    background: var(--reviews-bg);
    transition: var(--transition-theme);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    background: var(--review-card-bg);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--review-card-border);
    transition: var(--transition-theme);
}

.review-stars {
    color: var(--review-stars-color);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    transition: var(--transition-theme);
}

.review-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    color: var(--review-text-color);
    margin-bottom: 16px;
    transition: var(--transition-theme);
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--review-author-color);
    transition: var(--transition-theme);
}

/* ── Star Rating ── */
.star-rating {
    display: flex;
    gap: 6px;
}
.star-rating .star {
    font-size: 32px;
    color: var(--why-card-border);
    cursor: pointer;
    transition: color .2s;
    user-select: none;
}
.star-rating .star.active {
    color: #f5a623;
}
.star-rating .star.hover {
    color: #f5c623;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--section-title-color);
    border: 1px solid var(--review-card-border);
    border-radius: 10px;
    transition: all .25s;
    letter-spacing: .3px;
}

.btn-reviews:hover {
    background: var(--blue-1);
    color: #fff;
    border-color: var(--blue-1);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(7,115,187,.2);
}

/* ── CTA Final ── */
.cta-final {
    background: var(--cta-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-theme);
}

.cta-final::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--cta-glow1), transparent 60%);
}

.cta-final::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, var(--cta-glow2), transparent 60%);
}

.cta-final .section-title { color: #fff; text-align: center; }
.cta-final .section-desc { margin: 0 auto 36px; text-align: center; color: rgba(255,255,255,.5); }
.cta-final .section-label { color: rgba(255,255,255,.4); }

.cta-phone-big {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    color: var(--cta-phone-color);
    margin-top: 24px;
}

.cta-phone-big a { color: inherit; transition: color .2s; }
.cta-phone-big a:hover { color: var(--blue-2); }

.cta-hours {
    margin-top: 12px;
    font-size: 15px;
    color: var(--cta-hours-color);
}

/* ── Footer ── */
footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    color: var(--footer-text);
    padding: 40px 24px;
    text-align: center;
    font-size: 14px;
    transition: var(--transition-theme);
}

footer a { color: var(--footer-link); transition: color .2s; }
footer a:hover { color: var(--blue-2); }

.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 12px 0 20px; }

/* ── Animations ── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Inner Page Styles ── */
.page-banner {
    margin-top: 80px;
    padding: 80px 24px 60px;
    text-align: center;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-theme);
}

[data-theme="light"] .page-banner {
    background: linear-gradient(170deg, #faf8f4 0%, #e8f0f8 50%, #f5f0e8 100%);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--hero-glow) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner .section-label { margin-bottom: 16px; }
.page-banner .section-title { margin-bottom: 12px; }
.page-banner .section-desc { margin: 0 auto; text-align: center; }

.page-content {
    padding: 80px 24px;
    transition: var(--transition-theme);
}

.page-content .section-inner {
    max-width: 900px;
}

/* ── Pricing Cards (inner pages) ── */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--why-card-bg);
    border: 1px solid var(--why-card-border);
    border-radius: 20px;
    padding: 40px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 8px 30px var(--why-card-hover-shadow);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue-2), var(--blue-4));
    opacity: 0;
    transition: opacity .3s;
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--section-title-color);
    transition: var(--transition-theme);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--blue-2);
    transition: var(--transition-theme);
}

.pricing-card > p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--section-desc-color);
    margin-bottom: 24px;
    transition: var(--transition-theme);
}

.pricing-card-body {
    display: flex;
    gap: 32px;
    margin-top: 4px;
}

.pricing-card-body .pricing-includes {
    flex: 1;
    min-width: 0;
}

.pricing-card-body .pricing-table {
    flex: 1;
    min-width: 0;
    margin-top: 0;
}

.pricing-includes {
    margin-top: 0;
}

.pricing-includes h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--section-label-color);
    margin-bottom: 16px;
    transition: var(--transition-theme);
}

.pricing-includes ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--body-color);
    transition: var(--transition-theme);
}

.pricing-includes li i {
    color: var(--blue-2);
    font-size: 14px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Pricing Tables ── */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 15px;
}

.pricing-table th {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--section-label-color);
    padding: 10px 16px;
    border-bottom: 2px solid var(--why-card-border);
    transition: var(--transition-theme);
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table td {
    padding: 10px 16px;
    color: var(--body-color);
    border-bottom: 1px solid var(--why-card-border);
    transition: var(--transition-theme);
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--blue-2);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-note {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--section-desc-color);
    transition: var(--transition-theme);
}

.pricing-note i {
    color: var(--blue-2);
    margin-right: 6px;
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 48px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--section-desc-color);
    transition: var(--transition-theme);
}

.pricing-disclaimer i {
    color: var(--blue-2);
    margin-right: 4px;
    font-size: 10px;
}

.pricing-grid-cards {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.pricing-grid-cards .pricing-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 240px;
}

@media (max-width: 659px) {
    .formerly-inner {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .pricing-grid-cards .pricing-card {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 639px) {
    .pricing-card-body {
        flex-direction: column;
        gap: 24px;
    }

    .pricing-grid-cards .pricing-card {
        flex: 1 1 100%;
    }
}

/* ── Add-on Grid ── */
.addon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}

.addon-card {
    background: var(--why-card-bg);
    border: 1px solid var(--why-card-border);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all .3s;
}

.addon-card:hover {
    box-shadow: 0 4px 20px var(--why-card-hover-shadow);
    border-color: var(--blue-2);
}

.addon-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--section-title-color);
    margin-bottom: 6px;
    transition: var(--transition-theme);
}

.addon-info p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--section-desc-color);
    transition: var(--transition-theme);
}

.addon-price {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--blue-2);
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition-theme);
}

/* ── Policy Sections ── */
.policy-section {
    margin-bottom: 48px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--section-title-color);
    margin-bottom: 16px;
    transition: var(--transition-theme);
}

.policy-section p,
.policy-section li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-color);
    transition: var(--transition-theme);
}

.policy-section ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.policy-section li {
    padding-left: 24px;
    position: relative;
}

.policy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-2);
}

/* ── FAQ Accordion ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    background: var(--why-card-bg);
    border: 1px solid var(--why-card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all .3s;
}

.faq-item:hover {
    border-color: var(--blue-2);
}

.faq-question {
    padding: 24px 28px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--section-title-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition-theme);
}

.faq-question i {
    font-size: 14px;
    color: var(--blue-2);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--body-color);
    transition: var(--transition-theme);
}

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
}

.contact-info-card {
    background: var(--why-card-bg);
    border: 1px solid var(--why-card-border);
    border-radius: 16px;
    padding: 36px;
    transition: var(--transition-theme);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--section-title-color);
    margin-bottom: 20px;
    transition: var(--transition-theme);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--why-card-border);
    transition: var(--transition-theme);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: var(--why-card-icon-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--blue-2);
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-text strong {
    font-weight: 600;
    color: var(--section-title-color);
    font-size: 16px;
    transition: var(--transition-theme);
}

.contact-detail-text span,
.contact-detail-text a {
    font-size: 15px;
    color: var(--section-desc-color);
    transition: var(--transition-theme);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--section-title-color);
    margin-bottom: 8px;
    transition: var(--transition-theme);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--body-color);
    background: var(--why-card-bg);
    border: 1px solid var(--why-card-border);
    border-radius: 10px;
    transition: all .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-2);
    box-shadow: 0 0 0 3px rgba(9,141,230,.15);
}

.form-group select option {
    color: #1a1a1a;
    background: #fff;
}

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

.form-note {
    font-size: 14px;
    color: var(--section-desc-color);
    line-height: 1.5;
    transition: var(--transition-theme);
}

/* ── Responsive ── */
@media (max-width: 409px) {
    .theme-toggle-desktop { display: none !important; }
}

@media (max-width: 599px) {
    .header-actions .nav-cta { display: none; }
}

@media (min-width: 640px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .addon-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1250px) {
    .ham { display: none; }
    .desktop-nav { display: flex; }
    .header-actions { margin-right: 0; }
}
