:root {
    --white:     #FFFFFF;
    --slate-50:  #F8FAFD;
    --slate-100: #EEF2F8;
    --slate-200: #DDE4EF;
    --navy:      #192440;
    --navy-2:    #22304F;
    --blue:      #1A4FBB;
    --blue-2:    #1D52C4;
    --blue-3:    #2563EB;
    --sky:       #EBF2FF;
    --sky-2:     #D6E4FF;
    --text:      #0F172A;
    --text-2:    #334155;
    --mid:       #64748B;
    --border:    #CBD5E1;
    --border-2:  #E2E8F0;
    --green:     #059669;
    --amber:     #DFB378;
    --amber-2:   #DFB477;
    --amber-soft:#F5E4C6;
    --dark:      #1A1814;
    --cream:     #F5F2EC;
    --shadow-xs: 0 1px 4px rgba(25,36,64,.05);
    --shadow-sm: 0 2px 12px rgba(25,36,64,.08);
    --shadow:    0 4px 24px rgba(25,36,64,.11);
    --shadow-lg: 0 16px 56px rgba(25,36,64,.15);
    --r:         5px;
    --r-lg:      12px;
    --ease:      cubic-bezier(.4,0,.2,1);
    --t:         .22s var(--ease);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
    font-family:'Outfit',sans-serif;
    background:var(--white);
    color:var(--text);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

.container { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }
.container--narrow { max-width:820px; }

.nav {
    position:fixed; top:0; left:0; right:0; z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid transparent;
    padding:16px 0;
    transition:border-color var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled {
    border-bottom-color:var(--border-2);
    box-shadow:var(--shadow-sm);
    padding:11px 0;
}
.nav { --nav-logo-color:#192440; --nav-logo-sub-color:#64748B; }
.nav__logo { display:inline-flex; align-items:center; flex-shrink:0; }
.nav__logo-svg { display:block; height:48px; width:auto; }
.footer__logo-svg { display:block; height:45px; width:auto; }

.nav__inner {
    display:flex; align-items:center;
    justify-content:space-between; gap:40px;
}
.nav__links { display:flex; align-items:center; gap:22px; }
.nav__links a {
    font-size:.82rem; font-weight:500; letter-spacing:.03em;
    color:var(--text-2); transition:color var(--t); position:relative;
}
.nav__links a:hover { color:var(--blue-2); }
.nav__links a::after {
    content:''; position:absolute; bottom:-3px; left:0;
    width:0; height:2px; background:var(--blue-2);
    border-radius:2px; transition:width var(--t);
}
.nav__links a:hover::after, .nav__links a.active::after { width:100%; }

.nav__cta {
    background:var(--navy) !important; color:#fff !important;
    padding:9px 20px !important; border-radius:var(--r) !important;
    font-family:'Outfit',Arial,sans-serif !important;
    font-weight:800 !important; font-size:.8rem !important;
    letter-spacing:.025em !important; transition:all var(--t) !important;
}
.nav__cta::after { display:none !important; }
.nav__cta:hover {
    background:var(--navy-2) !important; color:#fff !important;
    transform:translateY(-1px);
    box-shadow:0 5px 18px rgba(25,36,64,.24) !important;
}
.nav__toggle {
    display:none; flex-direction:column; gap:5px;
    cursor:pointer; background:none; border:none; padding:6px; border-radius:4px;
}
.nav__toggle span {
    display:block; width:22px; height:2px; background:var(--text);
    border-radius:2px; transition:var(--t); transform-origin:center;
}
.nav__toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

@keyframes menu-slide-in {
    from { opacity:0; transform:translateX(48px); }
    to   { opacity:1; transform:none; }
}
.mobile-menu {
    display:none; position:fixed; inset:0;
    background:#0A1A35;
    z-index:999; padding:0;
    flex-direction:column; overflow-y:auto;
    background-image:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(37,99,235,.22) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(224,180,120,.1) 0%, transparent 60%);
}
.mobile-menu.open { display:flex; }

.mobile-menu__head {
    display:flex; align-items:center; justify-content:space-between;
    padding:24px 28px; border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-menu__nav {
    flex:1; padding:96px 20px 18px;
    display:flex; flex-direction:column; gap:4px;
}
.mobile-menu__link {
    display:flex; align-items:center; gap:16px;
    padding:14px 18px;
    border-radius:14px;
    text-decoration:none;
    transition:background var(--t), transform var(--t);
    animation:menu-slide-in .35s var(--ease) both;
}
.mobile-menu__link:nth-child(1) { animation-delay:.04s; }
.mobile-menu__link:nth-child(2) { animation-delay:.08s; }
.mobile-menu__link:nth-child(3) { animation-delay:.12s; }
.mobile-menu__link:nth-child(4) { animation-delay:.16s; }
.mobile-menu__link:nth-child(5) { animation-delay:.20s; }
.mobile-menu__link:nth-child(6) { animation-delay:.24s; }
.mobile-menu__link:nth-child(7) { animation-delay:.28s; }
.mobile-menu__link:nth-child(8) { animation-delay:.32s; }
.mobile-menu__link:hover,
.mobile-menu__link:active { background:rgba(255,255,255,.05); }
.mobile-menu__ico {
    width:38px; height:38px; border-radius:10px;
    display:inline-flex; align-items:center; justify-content:center;
    background:rgba(147,197,253,.1);
    color:#93C5FD; flex-shrink:0;
    transition:background var(--t), color var(--t);
}
.mobile-menu__ico svg { width:19px; height:19px; }
.mobile-menu__link:hover .mobile-menu__ico {
    background:rgba(224,180,120,.14); color:var(--amber-soft);
}
.mobile-menu__label {
    flex:1;
    font-family:'Outfit',sans-serif;
    font-size:1rem; font-weight:500;
    color:rgba(255,255,255,.88); letter-spacing:-.005em;
    transition:color var(--t);
}
.mobile-menu__link:hover .mobile-menu__label { color:#fff; }
.mobile-menu__arrow {
    color:rgba(255,255,255,.22);
    transition:color var(--t), transform var(--t);
}
.mobile-menu__link:hover .mobile-menu__arrow {
    color:var(--amber); transform:translateX(3px);
}

.mobile-menu__foot {
    padding:22px 28px 32px;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex; flex-direction:column; gap:14px;
}
.mobile-menu__phone {
    display:flex; align-items:center; gap:10px;
    font-family:'Outfit',sans-serif; font-size:1rem; font-weight:500;
    color:rgba(255,255,255,.7); text-decoration:none;
    transition:color var(--t);
}
.mobile-menu__phone svg { color:var(--amber); }
.mobile-menu__phone:hover { color:#fff; }
.mobile-menu__cta {
    background:var(--amber) !important; color:var(--navy) !important;
    text-align:center; padding:16px !important;
    border-radius:10px !important; font-family:'Outfit',Arial,sans-serif;
    font-weight:800 !important; font-size:.84rem !important;
    letter-spacing:.025em; text-transform:uppercase;
    border:none !important; text-decoration:none;
    transition:background var(--t), transform var(--t);
}
.mobile-menu__cta:hover { background:#EAC48B !important; transform:translateY(-1px); }

@keyframes glow-drift {
    0%,100% { transform:translate(0,0) scale(1); opacity:.55; }
    40%      { transform:translate(-6%,8%) scale(1.1); opacity:.35; }
    70%      { transform:translate(4%,-5%) scale(.92); opacity:.65; }
}
@keyframes glow-drift-r {
    0%,100% { transform:translate(0,0) scale(1); opacity:.4; }
    40%      { transform:translate(7%,-6%) scale(1.08); opacity:.25; }
    70%      { transform:translate(-3%,4%) scale(.95); opacity:.5; }
}
@keyframes hero-in {
    from { opacity:0; transform:translateY(26px); }
    to   { opacity:1; transform:none; }
}
@keyframes pulse-ring {
    0%   { transform:scale(.85); opacity:.75; }
    70%  { transform:scale(2.2); opacity:0; }
    100% { transform:scale(.85); opacity:0; }
}
@keyframes phone-pulse {
    0%,100% { box-shadow:0 0 0 0 rgba(37,99,235,.55); }
    55%     { box-shadow:0 0 0 18px rgba(37,99,235,0); }
}
@keyframes shimmer {
    0%   { background-position:-200% center; }
    100% { background-position:200% center; }
}
@keyframes float-up {
    0%,100% { transform:translateY(0); }
    50%     { transform:translateY(-7px); }
}
@keyframes count-badge {
    from { opacity:0; transform:scale(.7); }
    to   { opacity:1; transform:scale(1); }
}

.hero {
    background:var(--navy);
    position:relative; overflow:hidden;
    display:flex; flex-direction:column;
    min-height:100vh;
}

.hero::before {
    content:''; position:absolute; inset:0;
    background:
        linear-gradient(90deg, rgba(12,30,60,.99) 0%, rgba(12,30,60,.95) 52%, rgba(12,30,60,.88) 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 96px);
    pointer-events:none;
    z-index:0;
}
.hero::after {
    display:none;
}

.hero__dots {
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(255,255,255,.03), transparent 42%);
    pointer-events:none;
    z-index:0;
}

.hero__main {
    flex:1; display:flex; align-items:center;
    padding:152px 0 72px;
    position:relative; z-index:2;
}
.hero__main::after {
    display:none;
}

.hero__inner {
    display:grid; grid-template-columns:minmax(0,760px);
    gap:56px; align-items:center; width:100%;
    position:relative; z-index:1;
}

.hero__copy { animation:hero-in .65s var(--ease) both; }

.hero__eyebrow {
    font-size:.67rem; font-weight:700; letter-spacing:.22em;
    text-transform:uppercase; color:rgba(147,197,253,.72);
    display:flex; align-items:center; gap:11px;
    margin-bottom:28px;
}
.hero__eyebrow-pulse {
    width:8px; height:8px; border-radius:50%;
    background:#3B82F6; flex-shrink:0; position:relative;
}
.hero__eyebrow-pulse::before {
    content:''; position:absolute; inset:0;
    border-radius:50%; background:#3B82F6;
    animation:pulse-ring 2.8s ease-out infinite;
}

.hero h1 {
    font-family:'Syne',sans-serif;
    font-size:clamp(3rem,4.7vw,4.75rem);
    font-weight:800; line-height:.96;
    color:#fff; letter-spacing:-.04em; margin-bottom:24px;
    animation:hero-in .65s .1s var(--ease) both;
}
.hero h1 em {
    font-family:'DM Serif Display',Georgia,serif;
    font-style:italic; font-weight:400; color:var(--amber);
    position:relative;
}
.hero__service-word { display:inline; }
.hero h1 em::after {
    content:''; position:absolute;
    left:0; right:0; bottom:.04em; height:.09em;
    background:linear-gradient(90deg, transparent, rgba(224,180,120,.38) 20%, rgba(224,180,120,.38) 80%, transparent);
    border-radius:2px;
    transform:scaleX(0); transform-origin:left center;
    animation:em-underline 1.1s .55s var(--ease) forwards;
}
@keyframes em-underline {
    to { transform:scaleX(1); }
}

.hero__sub {
    font-size:1.03rem; color:rgba(255,255,255,.46);
    margin-bottom:40px; line-height:1.82; font-weight:300; max-width:560px;
    animation:hero-in .65s .2s var(--ease) both;
}

.hero__actions {
    display:flex; gap:14px; flex-wrap:wrap; align-items:center;
    animation:hero-in .65s .3s var(--ease) both;
}

.hero__tel {
    display:inline-grid; grid-template-columns:36px auto; align-items:center; gap:13px;
    min-width:275px; padding:11px 18px 11px 11px;
    border-radius:var(--r); border:1.5px solid rgba(255,255,255,.11);
    text-decoration:none; color:inherit;
    transition:border-color var(--t), background var(--t);
}
.hero__tel:hover { border-color:rgba(255,255,255,.26); background:rgba(255,255,255,.05); }
.hero__tel-icon {
    width:36px; height:36px; background:rgba(223,179,120,.14);
    border:1px solid rgba(223,179,120,.24);
    border-radius:6px; display:flex; align-items:center; justify-content:center;
    color:var(--amber); flex-shrink:0;
}
.hero__tel-text { display:grid; gap:2px; min-width:0; }
.hero__tel-text span {
    font-size:.58rem; color:rgba(245,228,198,.55);
    font-weight:700; letter-spacing:.11em; text-transform:uppercase;
    line-height:1.1;
}
.hero__tel-text strong {
    font-family:'Outfit',Arial,sans-serif; font-size:1.08rem;
    font-weight:800; color:#fff; letter-spacing:.015em;
    line-height:1.1; white-space:nowrap;
}

.hero__proofs {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
    margin-top:24px;
    max-width:700px;
    animation:hero-in .65s .38s var(--ease) both;
}
.hero__proof {
    border-top:1px solid rgba(255,255,255,.12);
    background:transparent;
    border-radius:var(--r);
    padding:12px 0 0;
    min-height:0;
}
.hero__proof strong {
    display:block;
    font-family:'Syne',sans-serif;
    font-size:.78rem;
    color:#fff;
    margin-bottom:5px;
}
.hero__proof span {
    display:block;
    font-size:.72rem;
    line-height:1.45;
    color:rgba(255,255,255,.5);
}

.hero__card {
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.14);
    border-radius:var(--r-lg); padding:34px 36px;
    position:relative; overflow:hidden;
    box-shadow:0 18px 54px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.hero__card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2px;
    background:rgba(147,197,253,.55);
}
.hero__card::after {
    display:none;
}

.hero__card-tag {
    font-size:.6rem; font-weight:700; letter-spacing:.2em;
    text-transform:uppercase; color:rgba(147,197,253,.58);
    display:inline-flex; align-items:center; gap:8px;
    margin-bottom:22px; position:relative; z-index:1;
}
.hero__card-tag::before {
    content:''; width:14px; height:2px;
    background:rgba(147,197,253,.38); border-radius:2px; flex-shrink:0;
}

.hero__card-bignum {
    font-family:'Syne',sans-serif;
    font-size:4.8rem; font-weight:800; color:#fff;
    letter-spacing:-.06em; line-height:1;
    margin-bottom:4px; position:relative; z-index:1;
    animation:count-badge .7s .6s var(--ease) both;
    display:flex; align-items:baseline; gap:.18em;
}
.hero__card-headline {
    font-family:'Syne',sans-serif;
    font-size:1.65rem;
    font-weight:800;
    color:#fff;
    letter-spacing:-.04em;
    line-height:1.05;
    margin-bottom:12px;
    position:relative;
    z-index:1;
}
.hero__card-bignum::after {
    content:''; width:.28em; height:.28em;
    background:var(--amber);
    border-radius:50%;
    box-shadow:0 0 18px rgba(224,180,120,.7);
    margin-left:-.04em;
    animation:amber-pulse 3.2s ease-in-out infinite;
}
@keyframes amber-pulse {
    0%,100% { opacity:.85; transform:scale(1); }
    50%     { opacity:1; transform:scale(1.15); }
}
.hero__card-biglabel {
    font-size:.84rem; color:rgba(255,255,255,.62);
    font-weight:300; margin-bottom:22px;
    position:relative; z-index:1;
    line-height:1.6;
}

.hero__service-list {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    position:relative;
    z-index:1;
}
.hero__service-list span {
    display:flex;
    align-items:center;
    min-height:38px;
    padding:9px 10px;
    border:1px solid rgba(255,255,255,.11);
    border-radius:6px;
    background:rgba(255,255,255,.045);
    color:rgba(255,255,255,.76);
    font-size:.73rem;
    font-weight:600;
    line-height:1.25;
}

.hero__card-div {
    width:100%; height:1px;
    background:rgba(255,255,255,.07); margin:18px 0;
}

.hero__card-facts {
    display:flex; gap:0; position:relative; z-index:1;
}
.hero__card-fact {
    flex:1; padding-right:18px; margin-right:18px;
    border-right:1px solid rgba(255,255,255,.07);
}
.hero__card-fact:last-child { border-right:none; padding-right:0; margin-right:0; }
.hero__card-fact strong {
    display:block; font-family:'Syne',sans-serif;
    font-size:1.5rem; font-weight:800; color:#fff;
    letter-spacing:-.03em; line-height:1; margin-bottom:4px;
}
.hero__card-fact strong,
.hero__card-fact strong span { text-transform:none; }
.hero__card-fact span {
    font-size:.64rem; color:rgba(255,255,255,.5);
    letter-spacing:.07em; text-transform:uppercase; font-weight:500;
}

.hero__card-quote {
    font-family:'DM Serif Display',Georgia,serif;
    font-size:.93rem; font-style:italic;
    color:rgba(255,255,255,.66); line-height:1.72;
    border:none; margin:0; padding:0;
    position:relative; z-index:1;
}
.hero__card-quote cite {
    display:block; margin-top:9px;
    font-family:'Outfit',sans-serif; font-style:normal;
    font-size:.62rem; font-weight:700; letter-spacing:.12em;
    text-transform:uppercase; color:rgba(245,228,198,.68);
}

.hero__card-note {
    font-size:.9rem;
    color:rgba(255,255,255,.62);
    line-height:1.7;
    margin:0;
    position:relative;
    z-index:1;
}

.hero__trustbar {
    background:rgba(255,255,255,.038);
    border-top:1px solid rgba(255,255,255,.07);
    padding:22px 0; position:relative; z-index:1;
    animation:hero-in .65s .45s var(--ease) both;
}
.hero__trustbar-inner {
    display:flex; align-items:center;
    justify-content:space-between; flex-wrap:wrap; gap:16px;
}
.hero__trustbar-item {
    display:flex; align-items:flex-start; gap:10px;
    flex:1; min-width:160px;
}
.hero__trustbar-icon {
    display:flex; align-items:center; justify-content:center;
    width:30px; height:30px; flex-shrink:0;
    background:rgba(224,180,120,.09);
    border:1px solid rgba(224,180,120,.22);
    border-radius:6px;
    color:rgba(245,228,198,.85);
    margin-top:1px;
    transition:background var(--t), border-color var(--t), transform var(--t);
}
.hero__trustbar-item:hover .hero__trustbar-icon {
    background:rgba(224,180,120,.16);
    border-color:rgba(224,180,120,.4);
    transform:translateY(-1px);
}
.hero__trustbar-text {
    display:flex; flex-direction:column; gap:2px;
}
.hero__trustbar-title {
    font-size:.78rem; font-weight:600;
    color:rgba(255,255,255,.82); line-height:1.3;
    font-family:'Outfit',sans-serif;
}
.hero__trustbar-desc {
    font-size:.7rem; color:rgba(255,255,255,.38);
    line-height:1.4;
}
.hero__trustbar-sep {
    width:1px; height:36px; background:rgba(255,255,255,.1); flex-shrink:0;
    align-self:center;
}

.photo-strip {
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    height:300px;
    gap:0;
}
.photo-strip__item {
    position:relative; overflow:hidden;
    background-size:cover; background-position:center;
    background-color:var(--navy-2);
    cursor:default;
}
.photo-strip__item::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(to top, rgba(12,30,60,.72) 0%, rgba(12,30,60,.18) 55%, transparent 100%);
    transition:background .4s var(--ease);
}
.photo-strip__item:hover::before {
    background:linear-gradient(to top, rgba(12,30,60,.85) 0%, rgba(12,30,60,.3) 50%, transparent 100%);
}
.photo-strip__item:hover { z-index:1; }
.photo-strip__item:hover .photo-strip__cap { opacity:1; transform:translateY(0); }
.photo-strip__cap {
    position:absolute; bottom:0; left:0; right:0;
    padding:18px 20px;
    z-index:1;
    opacity:.85;
    transform:translateY(4px);
    transition:opacity .3s var(--ease), transform .3s var(--ease);
}
.photo-strip__cap span {
    font-family:'Outfit',sans-serif; font-size:.7rem; font-weight:600;
    color:rgba(255,255,255,.88); letter-spacing:.08em; text-transform:uppercase;
}
@media (max-width:900px) {
    .photo-strip { grid-template-columns:1fr 1fr; height:440px; }
}
@media (max-width:600px) {
    .photo-strip { grid-template-columns:1fr 1fr; height:360px; }
    .photo-strip__item--lg { grid-column:1 / span 2; }
}

.btn {
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 26px; font-family:'Outfit',sans-serif;
    font-size:.82rem; font-weight:800; letter-spacing:.025em;
    text-transform:uppercase; border-radius:var(--r);
    border:2px solid transparent; cursor:pointer;
    transition:all var(--t); white-space:nowrap;
}
.btn--primary { background:var(--navy); color:#fff; border-color:var(--navy); }
.btn--primary:hover {
    background:var(--navy-2); border-color:var(--navy-2);
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(25,36,64,.24);
}
.hero .btn--primary {
    background:var(--amber);
    color:var(--navy);
    border-color:var(--amber);
    box-shadow:0 12px 32px rgba(223,179,120,.16);
}
.hero .btn--primary:hover {
    background:#E8C18A;
    border-color:#E8C18A;
    box-shadow:0 16px 36px rgba(223,179,120,.2);
}
.btn--outline { background:transparent; color:var(--text-2); border-color:var(--border); }
.btn--outline:hover { border-color:var(--blue-2); color:var(--blue-2); }
.btn--navy { background:var(--navy); color:#fff; border-color:var(--navy); }
.btn--navy:hover { background:var(--navy-2); transform:translateY(-1px); box-shadow:var(--shadow); }
.btn--white { background:#fff; color:var(--blue-2); border-color:#fff; }
.btn--white:hover { background:var(--sky); transform:translateY(-1px); }
.btn--outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn--outline-white:hover { border-color:#fff; background:rgba(255,255,255,.1); }
.btn--dark { background:var(--navy); color:#fff; border-color:var(--navy); }
.btn--dark:hover { background:var(--navy-2); }
.btn--arrow::after { content:'\2192'; font-size:1rem; transition:transform var(--t); }
.btn--arrow:hover::after { transform:translateX(4px); }
.btn svg { width:16px; height:16px; flex-shrink:0; }
.btn--lg { padding:16px 34px; font-size:.84rem; }
.btn--ghost {
    background:transparent; color:#fff;
    border-color:rgba(255,255,255,.18);
}
.btn--ghost:hover { border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.06); }

.usp-strip {
    background:var(--slate-50);
    padding:48px 0;
    border-bottom:1px solid var(--border-2);
}
.usp-strip__grid {
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:0;
}
.usp-strip__item {
    display:flex; align-items:flex-start; gap:15px;
    padding:0 28px 0 0; margin:0 28px 0 0;
    border-right:1px solid var(--border-2);
}
.usp-strip__item:last-child { border-right:none; padding-right:0; margin-right:0; }
.usp-strip__icon {
    width:38px; height:38px; flex-shrink:0;
    background:var(--sky-2); border-radius:var(--r);
    display:flex; align-items:center; justify-content:center;
    color:var(--blue-2); margin-top:2px;
}
.usp-strip__icon svg { width:18px; height:18px; }
.usp-strip__title {
    font-family:'Syne',sans-serif; font-size:.9rem;
    font-weight:700; color:var(--navy); margin-bottom:5px;
    letter-spacing:-.01em;
}
.usp-strip__text {
    font-size:.8rem; color:var(--mid);
    line-height:1.6; font-weight:300;
}

.section { padding:96px 0; }
.section--sm { padding:60px 0; }
.section--sky { background:var(--sky); }
.section--slate { background:var(--slate-50); }
.section--navy { background:var(--navy); }
.section--blue { background:var(--blue-2); }

.section__label {
    display:inline-block;
    font-family:'Syne',sans-serif;
    font-size:.7rem; font-weight:700; letter-spacing:.2em;
    text-transform:uppercase; color:var(--blue-2);
    background:rgba(29,82,196,.08);
    padding:8px 16px; border-radius:100px;
    margin-bottom:18px;
}
.section--navy .section__label {
    color:#BFDBFE;
    background:rgba(147,197,253,.1);
}
.section--blue .section__label {
    color:#fff;
    background:rgba(255,255,255,.14);
}

.section__title {
    font-family:'Syne',sans-serif;
    font-size:clamp(2rem,3.4vw,3.1rem);
    font-weight:800; line-height:1.06;
    letter-spacing:-.03em; color:var(--navy); margin-bottom:16px;
}
.section__title em {
    font-family:'DM Serif Display',Georgia,serif;
    font-style:italic; color:var(--blue-2); font-weight:400;
}
.section--navy .section__title { color:#fff; }
.section--navy .section__title em { color:#93C5FD; }
.section--blue .section__title { color:#fff; }
.section--blue .section__title em { color:#BFDBFE; }

.section__intro {
    font-size:.98rem; color:var(--mid);
    max-width:520px; line-height:1.8; font-weight:300;
}
.section--navy .section__intro { color:rgba(255,255,255,.5); }
.section__head { margin-bottom:52px; }
.text-center { text-align:center; }
.text-center .section__intro { margin:0 auto; }
.text-center .section__label { justify-content:center; }

.services-section { background:var(--white); padding:96px 0; }

.services-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:auto auto auto;
    gap:2px; background:var(--border-2);
    border:2px solid var(--border-2);
    border-radius:16px; overflow:hidden;
    margin-top:52px;
}

.service-card {
    background:var(--white); padding:36px 32px;
    display:flex; flex-direction:column; gap:0;
    position:relative; overflow:hidden;
    transition:background var(--t), box-shadow var(--t), transform var(--t);
    text-decoration:none; color:var(--text);
}
.service-card:hover {
    background:var(--slate-50);
    z-index:2;
}

.service-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:transparent; transition:background var(--t); z-index:3;
}
.service-card:hover::before { background:var(--blue-2); }

.service-card__bg-num {
    position:absolute; bottom:-12px; right:-6px;
    font-family:'Syne',sans-serif; font-weight:800;
    font-size:7rem; color:rgba(12,30,60,.038);
    letter-spacing:-.04em; line-height:1;
    user-select:none; pointer-events:none;
    transition:transform .4s var(--ease), color .4s var(--ease);
}
.service-card:hover .service-card__bg-num {
    transform:scale(1.08) translate(-4px,-4px);
    color:rgba(12,30,60,.06);
}

.service-card--featured {
    grid-column:1 / span 2;
    grid-row:1 / span 2;
    background:var(--navy);
    padding:52px 48px;
}
.service-card--featured::before { background:var(--blue-3); }
.service-card--featured:hover { background:var(--navy-2); }
.service-card--featured .service-card__bg-num {
    font-size:13rem; color:rgba(255,255,255,.04);
    bottom:-20px; right:-10px;
}
.service-card--featured:hover .service-card__bg-num {
    color:rgba(255,255,255,.065);
}

.service-card__num {
    font-family:'Syne',sans-serif; font-size:.6rem;
    font-weight:700; letter-spacing:.18em;
    text-transform:uppercase; color:var(--border);
}
.service-card--featured .service-card__num { color:rgba(255,255,255,.22); }

.service-card__title {
    font-family:'Syne',sans-serif; font-size:1.15rem;
    font-weight:700; color:var(--navy); letter-spacing:-.01em;
    line-height:1.2; margin-bottom:10px;
}
.service-card--featured .service-card__title {
    color:#fff; font-size:1.65rem; margin-bottom:14px;
}

.service-card--featured .service-card__badge {
    display:inline-flex; align-items:center; gap:6px;
    background:rgba(37,99,235,.28); border:1px solid rgba(147,197,253,.2);
    border-radius:100px; padding:4px 12px;
    font-size:.62rem; font-weight:700; letter-spacing:.1em;
    text-transform:uppercase; color:rgba(147,197,253,.8);
    margin-bottom:18px;
}

.service-card__text {
    font-size:.875rem; color:var(--mid); line-height:1.7;
    font-weight:300; flex:1;
}
.service-card--featured .service-card__text { color:rgba(255,255,255,.55); }

.service-card__head {
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:20px;
}
.service-card__icon {
    width:34px; height:34px; flex-shrink:0;
    color:var(--blue-2); opacity:.55;
    display:flex; align-items:center; justify-content:center;
    transition:opacity var(--t), color var(--t);
}
.service-card__icon svg { width:26px; height:26px; }
.service-card:hover .service-card__icon { opacity:.85; color:var(--blue-3); }
.service-card--featured .service-card__icon { color:rgba(147,197,253,.6); opacity:1; }
.service-card--featured:hover .service-card__icon { color:rgba(147,197,253,.9); }

.service-card__link {
    font-size:.72rem; font-weight:700; letter-spacing:.1em;
    text-transform:uppercase; color:var(--blue-2);
    display:inline-flex; align-items:center; gap:6px;
    margin-top:4px; transition:gap var(--t);
}
.service-card:hover .service-card__link { gap:10px; }
.service-card--featured .service-card__link { color:#93C5FD; }

.messie-section {
    background:var(--navy);
    padding:96px 0;
    position:relative; overflow:hidden;
}

.messie-section::after {
    content:''; position:absolute;
    bottom:-120px; right:-120px;
    width:480px; height:480px;
    background:radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 65%);
    pointer-events:none;
}

.messie-inner {
    display:grid; grid-template-columns:1fr 1fr; gap:88px;
    align-items:center; position:relative; z-index:1;
}

.messie-section .section__label { color:rgba(147,197,253,.75); }
.messie-section .section__label::before { background:rgba(147,197,253,.4); }
.messie-section .section__title { color:#fff; }
.messie-section .section__title em { color:#93C5FD; }

.messie-left { display:flex; flex-direction:column; gap:0; }

.messie-intro {
    font-size:.97rem; color:rgba(255,255,255,.48);
    line-height:1.85; font-weight:300;
    margin:16px 0 30px; max-width:440px;
}

.messie-big-num {
    font-family:'Syne',sans-serif; font-size:clamp(6rem,12vw,11rem);
    font-weight:800; color:rgba(255,255,255,.05);
    line-height:1; letter-spacing:-.04em;
    position:absolute; top:0; left:0;
    user-select:none; pointer-events:none;
}

.messie-right { display:flex; flex-direction:column; gap:0; }

.messie-checks { display:flex; flex-direction:column; gap:14px; margin:28px 0 36px; }

.messie-check {
    display:flex; gap:14px; align-items:flex-start;
}
.messie-check__dot {
    width:20px; height:20px; flex-shrink:0;
    background:rgba(37,99,235,.25);
    border:1px solid rgba(147,197,253,.3);
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    margin-top:1px;
}
.messie-check__dot svg { width:10px; height:10px; color:#93C5FD; }
.messie-check__text {
    font-size:.92rem; color:rgba(255,255,255,.65);
    line-height:1.65; font-weight:300;
}
.messie-check__text strong { color:rgba(255,255,255,.9); font-weight:600; }

.process-section { background:var(--white); padding:96px 0; border-top:1px solid var(--border-2); }

.process-steps {
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:0; margin-top:52px;
    counter-reset:step;
}

.process-step {
    padding:36px 28px; border-right:1px solid var(--border-2);
    position:relative; transition:background var(--t);
    background:var(--white);
}
.process-step:last-child { border-right:none; }
.process-step:hover { background:var(--sky); }

.process-step::before {
    counter-increment:step;
    content:'0' counter(step);
    display:block; font-family:'Syne',sans-serif;
    font-size:3rem; font-weight:800; color:var(--border);
    line-height:1; margin-bottom:18px; letter-spacing:-.03em;
    transition:color var(--t);
}
.process-step:hover::before { color:var(--blue-2); }

.process-step__title {
    font-family:'Syne',sans-serif; font-size:1.02rem;
    font-weight:700; color:var(--navy); margin-bottom:10px;
}
.process-step__text { font-size:.875rem; color:var(--mid); line-height:1.75; font-weight:300; }

.founder-section { background:var(--slate-50); padding:96px 0; }

.founder-layout {
    max-width:900px;
    margin:0 auto;
    display:block;
}

.founder-content .section__label { margin-bottom:12px; }
.founder-content .section__title { margin-bottom:24px; }
.founder-content p {
    font-size:.97rem; color:var(--text-2);
    line-height:1.85; font-weight:300; margin-bottom:16px;
    max-width:760px;
}

.founder-sig { margin-top:22px; padding-top:22px; border-top:1px solid var(--border-2); }
.founder-sig__name { font-family:'Syne',sans-serif; font-size:.98rem; font-weight:700; color:var(--navy); }
.founder-sig__title { font-size:.7rem; font-weight:700; color:var(--blue-2); letter-spacing:.12em; text-transform:uppercase; margin-top:3px; }

.faq-home-section {
    border-top:1px solid var(--border-2);
    border-bottom:1px solid var(--border-2);
}
.faq-home-section .container--narrow {
    max-width:760px;
}
.faq-home-section .section__head {
    margin-bottom:38px;
}
.faq-home-section .section__title {
    font-size:clamp(1.9rem,2.7vw,2.65rem);
    line-height:1.12;
}
.faq-home-section .section__intro {
    font-size:.94rem;
}
.faq-home-section .faq-list {
    background:#fff;
    border:1px solid var(--border-2);
    border-radius:10px;
    padding:10px;
    box-shadow:0 12px 34px rgba(12,30,60,.07);
}

.cta-band {
    background:var(--navy); padding:88px 0 78px;
    position:relative; overflow:hidden; text-align:center;
}
.cta-band::before {
    content:''; position:absolute; top:0; left:0; right:0; height:1px;
    background:rgba(255,255,255,.12);
}
.cta-band::after {
    display:none;
}
.cta-band__label {
    font-size:.65rem; font-weight:700; letter-spacing:.22em;
    text-transform:uppercase; color:rgba(147,197,253,.65);
    display:inline-flex; align-items:center; gap:9px;
    margin-bottom:16px; position:relative; z-index:1;
}
.cta-band__label::before,
.cta-band__label::after {
    content:''; display:block; height:1px; width:28px;
    background:rgba(147,197,253,.28); flex-shrink:0;
}
.cta-band__title {
    font-family:'Syne',sans-serif;
    font-size:clamp(2.2rem,4vw,4rem);
    font-weight:800; color:#fff; line-height:1.05;
    letter-spacing:-.04em; margin-bottom:52px;
    position:relative; z-index:1;
}
.cta-band__title em {
    font-family:'DM Serif Display',Georgia,serif;
    font-style:italic; font-weight:400; color:#60A5FA;
}
.cta-band__sub {
    font-size:.95rem; color:rgba(255,255,255,.38); font-weight:300;
    margin-top:-36px; margin-bottom:52px;
    position:relative; z-index:1;
}
.cta-band__phone-wrap {
    display:flex; align-items:center; justify-content:center;
    gap:20px; margin-bottom:44px; position:relative; z-index:1; flex-wrap:wrap;
}
.cta-band__phone-icon {
    width:62px; height:62px; flex-shrink:0;
    background:var(--blue-3); border-radius:50%;
    display:flex; align-items:center; justify-content:center; color:#fff;
    position:relative;
}
.cta-band__phone-icon::before {
    display:none;
}
.cta-band__phone-num {
    font-family:'Syne',sans-serif;
    font-size:clamp(2.2rem,5.5vw,4.6rem);
    font-weight:800; color:#fff; letter-spacing:-.04em;
    text-decoration:none; line-height:1;
    color:#fff;
}
.cta-band__actions {
    display:flex; gap:14px; justify-content:center;
    flex-wrap:wrap; margin-bottom:32px; position:relative; z-index:1;
}
.cta-band__trust-row {
    display:flex; align-items:center; justify-content:center;
    gap:14px; flex-wrap:wrap; position:relative; z-index:1;
}
.cta-band__trust-row span {
    font-size:.72rem; color:rgba(255,255,255,.28);
    letter-spacing:.08em; text-transform:uppercase;
}
.cta-band__trust-dot {
    width:3px; height:3px; border-radius:50%;
    background:rgba(255,255,255,.18); flex-shrink:0;
}

.footer { background:var(--navy); padding:76px 0 0; }
.footer__grid {
    display:grid; grid-template-columns:2fr 1fr 1fr; gap:52px;
    padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.07);
}
.footer__brand p {
    font-size:.85rem; color:rgba(255,255,255,.38);
    line-height:1.8; margin-top:20px; font-weight:300; max-width:280px;
}
.footer__tagline {
    font-size:.84rem; color:rgba(255,255,255,.32);
    line-height:1.78; margin-top:18px; font-weight:300; max-width:270px;
}
.footer__contact-block {
    margin-top:22px; display:flex; flex-direction:column; gap:3px;
}

.footer__clink {
    display:flex; align-items:center; gap:10px;
    font-size:.875rem; color:rgba(255,255,255,.42);
    font-weight:300; padding:6px 0;
    transition:color var(--t); text-decoration:none; line-height:1.4;
}
a.footer__clink:hover { color:rgba(255,255,255,.82); }
.footer__clink svg { color:rgba(147,197,253,.4); flex-shrink:0; }
.footer__clink--main {
    font-family:'Syne',sans-serif; font-size:1.12rem;
    font-weight:700; color:rgba(255,255,255,.85); letter-spacing:-.01em;
    padding-bottom:8px; margin-bottom:4px;
    border-bottom:1px solid rgba(255,255,255,.07);
}
.footer__clink--main:hover { color:#fff; }
.footer__clink--main svg { color:rgba(147,197,253,.65); }
.footer__clink--addr { cursor:default; align-items:flex-start; }
.footer__clink--addr svg { margin-top:2px; }

.footer__service-area p {
    font-size:.84rem; color:rgba(255,255,255,.28);
    line-height:1.85; font-weight:300;
}
.footer__credit { font-size:.73rem; color:rgba(255,255,255,.55); }
.footer__credit a {
    color:rgba(255,255,255,.7); text-decoration:none;
    transition:color var(--t);
}
.footer__credit a:hover { color:#fff; }
.footer__col h3, .footer__col h4 {
    font-size:.67rem; font-weight:700; letter-spacing:.18em;
    text-transform:uppercase; color:rgba(147,197,253,.65); margin-bottom:18px;
}
.footer__col ul li { margin-bottom:10px; }
.footer__col ul li a { font-size:.875rem; color:rgba(255,255,255,.38); transition:color var(--t); font-weight:300; }
.footer__col ul li a:hover { color:#fff; }
.footer__contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; }
.footer__contact-item svg { width:14px; height:14px; color:rgba(147,197,253,.55); flex-shrink:0; margin-top:2px; }
.footer__contact-item span,
.footer__contact-item a { font-size:.875rem; color:rgba(255,255,255,.38); font-weight:300; line-height:1.55; transition:color var(--t); }
.footer__contact-item a:hover { color:#fff; }
.footer__bottom { padding:20px 0; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer__bottom p { font-size:.73rem; color:rgba(255,255,255,.2); }
.footer__cookie-link {
    background:none; border:0; padding:0; margin:0;
    font:inherit; color:inherit; cursor:pointer;
    text-decoration:underline; text-decoration-color:rgba(255,255,255,.18);
    text-underline-offset:3px;
    transition:color var(--t), text-decoration-color var(--t);
}
.footer__cookie-link:hover { color:rgba(255,255,255,.6); text-decoration-color:rgba(255,255,255,.45); }

[data-reveal] { opacity:0; transform:translateY(20px); transition:opacity .5s var(--ease), transform .5s var(--ease); }
[data-reveal].revealed { opacity:1; transform:none; }

.mobile-cta-bar {
    display:none; position:fixed; bottom:0; left:0; right:0; z-index:999;
    background:#fff; border-top:1px solid var(--border-2);
    padding:10px 16px; gap:10px; align-items:center;
    box-shadow:0 -4px 20px rgba(12,30,60,.1);
}
.mobile-cta-bar__call, .mobile-cta-bar__form {
    flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
    padding:13px 12px; border-radius:var(--r); font-family:'Outfit',sans-serif;
    font-size:.8rem; font-weight:700; letter-spacing:.04em;
    text-transform:uppercase; text-decoration:none;
}
.mobile-cta-bar__call { background:var(--navy); color:#fff; }
.mobile-cta-bar__form { background:var(--amber); color:var(--navy); border:1.5px solid var(--amber); }
.mobile-cta-bar svg { flex-shrink:0; }

.page-hero {
    background:var(--navy); padding:148px 0 88px;
    position:relative; overflow:hidden;
    
    background-image:
        radial-gradient(ellipse 55% 60% at 70% -10%, rgba(37,99,235,.22) 0%, transparent 60%),
        radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:100% 100%, 32px 32px;
}
.page-hero::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, var(--blue-3), #60A5FA 50%, transparent);
    z-index:2;
}
.page-hero__bg { position:absolute; inset:0; }
.page-hero__bg::before {
    content:''; position:absolute; top:-20%; left:-15%; width:65%; height:80%;
    background:radial-gradient(ellipse, rgba(37,99,235,.15) 0%, transparent 65%);
    animation:glow-drift 18s ease-in-out infinite;
}
.page-hero__content {
    position:relative; z-index:1;
    animation:hero-in .6s var(--ease) both;
}
.page-hero__breadcrumb {
    display:flex; align-items:center; gap:8px;
    font-size:.72rem; color:rgba(255,255,255,.3); margin-bottom:28px;
}
.page-hero__breadcrumb a {
    color:rgba(255,255,255,.3); text-decoration:none;
    transition:color var(--t);
}
.page-hero__breadcrumb a:hover { color:rgba(255,255,255,.65); }
.page-hero__breadcrumb-sep { color:rgba(255,255,255,.15); font-size:.8rem; }
.page-hero__label {
    display:inline-flex; align-items:center; gap:10px;
    font-size:.67rem; font-weight:700; letter-spacing:.22em;
    text-transform:uppercase; color:rgba(147,197,253,.8); margin-bottom:18px;
}
.page-hero__label::before {
    content:''; display:block; width:20px; height:2px;
    background:rgba(147,197,253,.45); border-radius:2px;
}
.page-hero h1 {
    font-family:'Syne',sans-serif; font-size:clamp(2.3rem,4.5vw,4.3rem);
    font-weight:800; color:#fff; line-height:1.0;
    letter-spacing:-.03em; max-width:700px; margin-bottom:20px;
}
.page-hero h1 em { font-family:'DM Serif Display',Georgia,serif; font-style:italic; color:#93C5FD; font-weight:400; }
.page-hero__sub { font-size:.98rem; color:rgba(255,255,255,.52); max-width:560px; line-height:1.75; font-weight:300; margin-bottom:32px; }
.page-hero__meta { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.page-hero__badge {
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(37,99,235,.18); border:1px solid rgba(147,197,253,.2);
    padding:8px 16px; border-radius:100px;
    font-size:.73rem; font-weight:500; color:#93C5FD; letter-spacing:.04em;
    transition:background var(--t), border-color var(--t);
}
.page-hero__badge:hover { background:rgba(37,99,235,.28); border-color:rgba(147,197,253,.4); }
.page-hero__badge svg { width:13px; height:13px; }
.page-hero::after {
    content:''; position:absolute; bottom:-1px; left:0; right:0;
    height:52px; background:var(--white);
    clip-path:polygon(0 100%, 100% 0, 100% 100%);
    pointer-events:none; z-index:2;
}

.breadcrumb { padding:92px 0 0; }
.breadcrumb__inner { display:flex; align-items:center; gap:8px; font-size:.74rem; color:var(--mid); }
.breadcrumb__inner a { color:var(--mid); transition:color var(--t); }
.breadcrumb__inner a:hover { color:var(--blue-2); }
.breadcrumb__sep { color:var(--border); }

.section--cream { background:#F8F5EF; }
.section--cream-dark { background:#F2EEE6; border-top:1px solid #E8E2D8; border-bottom:1px solid #E8E2D8; }
.section--border-top { border-top:1px solid var(--border-2); }

.content-section { padding:68px 0; }
.content-text { font-size:1rem; line-height:1.9; color:var(--text-2); font-weight:300; }
.content-text p+p { margin-top:18px; }
.content-text h2 {
    font-family:'Syne',sans-serif; font-size:1.55rem; font-weight:700;
    color:var(--navy); margin:44px 0 12px; letter-spacing:-.02em;
    padding-top:36px; border-top:1px solid var(--border-2);
}
.content-text h2:first-child,
.content-text *:first-child + h2 { border-top:none; padding-top:0; margin-top:0; }
.content-text h3 { font-family:'Syne',sans-serif; font-size:1.06rem; font-weight:700; color:var(--navy); margin:24px 0 9px; }
.content-text ul { list-style:none; padding:0; margin:16px 0; }
.content-text ul li {
    padding:7px 0 7px 22px; position:relative;
    font-size:.94rem; color:var(--text-2);
    border-bottom:1px solid var(--border-2);
}
.content-text ul li:first-child { border-top:1px solid var(--border-2); }
.content-text ul li::before {
    content:''; position:absolute; left:0; top:50%; margin-top:-1px;
    width:10px; height:2px; background:var(--blue-2); border-radius:2px;
}

.info-box {
    background:rgba(37,99,235,.05);
    border:none; border-left:3px solid var(--blue-2);
    border-radius:0 var(--r) var(--r) 0;
    padding:22px 28px; margin:28px 0;
    position:relative;
}
.info-box::before {
    content:''; position:absolute; top:0; left:-3px; bottom:0; width:3px;
    background:linear-gradient(180deg, var(--blue-3), #60A5FA);
    border-radius:3px 0 0 3px;
}
.info-box p { color:var(--navy); font-size:.92rem; line-height:1.8; font-weight:300; }
.info-box p strong { font-weight:700; color:var(--navy); }

.split-layout { display:grid; grid-template-columns:1fr 380px; gap:72px; align-items:start; }
.form-card {
    background:#fff; border:1px solid var(--border-2);
    border-radius:var(--r-lg); padding:36px 32px;
    box-shadow:0 4px 32px rgba(12,30,60,.07);
    position:sticky; top:88px;
    border-top:3px solid var(--blue-2);
}
.form-card__title {
    font-family:'Syne',sans-serif; font-size:1.35rem;
    font-weight:700; color:var(--navy); margin-bottom:6px;
    letter-spacing:-.02em;
}
.form-card__sub { font-size:.83rem; color:var(--mid); margin-bottom:22px; line-height:1.55; }
.trust-badges { display:flex; flex-direction:column; gap:8px; margin-top:18px; padding-top:18px; border-top:1px solid var(--border-2); }
.trust-badge { display:flex; align-items:center; gap:9px; font-size:.76rem; color:var(--mid); font-weight:500; }
.trust-badge svg { width:14px; height:14px; color:var(--blue-2); flex-shrink:0; }

.kontakt-grid {
    display:grid;
    grid-template-columns:1fr 420px;
    gap:80px; align-items:start;
}
.kontakt-aside { position:sticky; top:100px; }

.work-section {
    padding:48px 0 56px;
    background:var(--white);
    overflow:hidden;
}
.work-head { text-align:center; margin-bottom:24px; }
.work-intro {
    font-size:.85rem;
    color:var(--mid);
    margin-top:6px;
}
.work-marquee {
    position:relative;
    width:100%;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.work-marquee__track {
    display:flex;
    gap:12px;
    width:max-content;
    animation:work-scroll 60s linear infinite;
}
.work-marquee:hover .work-marquee__track { animation-play-state:paused; }
@keyframes work-scroll {
    0% { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}
.work-slide {
    position:relative;
    flex:0 0 auto;
    width:230px;
    height:300px;
    margin:0;
    border-radius:var(--r);
    overflow:hidden;
    background:var(--slate-100);
}
.work-slide img {
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    filter:saturate(.55) brightness(.85) contrast(.95);
    opacity:.78;
    transition:filter .5s var(--ease), opacity .4s var(--ease);
}
.work-slide:hover img {
    filter:saturate(.95) brightness(.98) contrast(1);
    opacity:1;
}
@media (max-width:540px) {
    .work-slide { width:180px; height:240px; }
    .work-marquee__track { animation-duration:50s; }
}

.direktkontakt {
    background:#FBF9F4;
    border:1px solid var(--border-2);
    border-radius:var(--r-lg);
    padding:36px 32px;
    color:var(--text);
    box-shadow:var(--shadow-xs);
}
.direktkontakt__label {
    font-family:'Syne',sans-serif;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--amber);
    margin-bottom:28px;
}
.direktkontakt__list {
    display:flex;
    flex-direction:column;
    gap:22px;
}
.direktkontakt__item {
    display:flex;
    gap:16px;
    align-items:flex-start;
}
.direktkontakt__icon {
    width:38px; height:38px;
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#FFF6E6;
    border-radius:50%;
    color:var(--amber);
}
.direktkontakt__icon svg {
    width:18px; height:18px;
    display:block;
}
.direktkontakt__body { min-width:0; }
.direktkontakt__caption {
    font-size:.7rem;
    color:var(--mid);
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.1em;
    font-weight:500;
}
.direktkontakt__value {
    font-size:.95rem;
    color:var(--text);
    line-height:1.55;
    font-weight:500;
}
.direktkontakt__value--lg {
    font-family:'Syne',sans-serif;
    font-size:1.18rem;
    font-weight:700;
    color:var(--navy);
    white-space:nowrap;
    letter-spacing:-.005em;
}
.direktkontakt__value--sm { font-size:.875rem; }
a.direktkontakt__value { transition:color var(--t); }
a.direktkontakt__value:hover { color:var(--amber); }
.direktkontakt__social {
    margin-top:28px;
    padding-top:22px;
    border-top:1px solid var(--border-2);
    display:flex;
    align-items:center;
    gap:10px;
    font-size:.85rem;
    color:var(--mid);
    transition:color var(--t);
}
.direktkontakt__social svg { width:18px; height:18px; flex-shrink:0; }
.direktkontakt__social:hover { color:var(--amber); }

.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:5px; }
.form-group--full { grid-column:span 2; }
.form-group label { font-size:.69rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--mid); }
.form-group input, .form-group select, .form-group textarea {
    width:100%; padding:11px 14px;
    background:#fff; border:1.5px solid var(--border-2);
    border-radius:var(--r); font-family:'Outfit',sans-serif;
    font-size:.94rem; color:var(--text);
    transition:border-color var(--t), box-shadow var(--t); outline:none; -webkit-appearance:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color:var(--blue-2); box-shadow:0 0 0 3px rgba(26,79,187,.1);
}
.form-group textarea { resize:vertical; min-height:118px; }
.form-spam {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}
.form-group select {
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 13px center; padding-right:38px; cursor:pointer;
}
.form-check { display:flex; gap:10px; align-items:flex-start; margin-top:6px; }
.form-check input[type="checkbox"] { width:16px; height:16px; padding:0; flex-shrink:0; margin-top:2px; accent-color:var(--blue-2); }
.form-check label { font-size:.81rem; color:var(--mid); font-weight:400; line-height:1.55; letter-spacing:0; text-transform:none; }
.form-check label a { color:var(--blue-2); text-decoration:underline; }
.form-note { font-size:.77rem; color:var(--mid); display:flex; align-items:center; gap:6px; }
.form-note svg { width:13px; height:13px; color:var(--blue-2); flex-shrink:0; }
.form-success { display:none; background:#D1FAE5; border:1px solid #A7F3D0; border-radius:var(--r); padding:16px 20px; color:#065F46; font-size:.88rem; align-items:center; gap:10px; }
.form-error-msg { display:none; background:#FEE2E2; border:1px solid #FECACA; border-radius:var(--r); padding:12px 16px; color:#991B1B; font-size:.86rem; }

.faq-list { margin-top:40px; }
.faq-item {
    border:1px solid transparent;
    border-radius:8px;
    margin-bottom:6px;
    overflow:hidden;
    transition:background var(--t), border-color var(--t), box-shadow var(--t);
}
.faq-item:last-child { margin-bottom:0; }
.faq-item.open {
    background:#fff;
    box-shadow:0 10px 24px rgba(12,30,60,.07);
    border-color:var(--border-2);
}
.faq-question {
    width:100%; background:none; border:none; text-align:left;
    padding:17px 16px; display:flex; justify-content:space-between;
    align-items:center; gap:18px; cursor:pointer;
    font-family:'Syne',sans-serif; font-size:.93rem;
    font-weight:700; color:var(--navy);
    transition:color var(--t), background var(--t);
    letter-spacing:0;
}
.faq-question:hover { background:var(--slate-50); }
.faq-question:hover { color:var(--blue-2); }
.faq-item.open .faq-question { color:var(--blue-2); }
.faq-icon {
    width:28px; height:28px; flex-shrink:0;
    background:var(--sky-2); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    position:relative;
    transition:background var(--t), color var(--t); color:var(--blue-2);
}
.faq-item.open .faq-icon { background:var(--blue-2); color:#fff; }
.faq-icon svg { display:none; }
.faq-icon::before,
.faq-icon::after {
    content:'';
    position:absolute;
    left:50%;
    top:50%;
    width:11px;
    height:2px;
    border-radius:2px;
    background:currentColor;
    transform:translate(-50%, -50%);
    transition:transform var(--t);
}
.faq-icon::after { transform:translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::before { transform:translate(-50%, -50%) rotate(45deg); }
.faq-item.open .faq-icon::after { transform:translate(-50%, -50%) rotate(135deg); }
.faq-answer {
    max-height:0;
    overflow:hidden;
    padding:0 16px;
    font-size:.92rem; color:var(--mid);
    line-height:1.82; font-weight:300; max-width:680px;
    opacity:0;
    transition:max-height .34s var(--ease), padding .34s var(--ease), opacity .22s var(--ease);
}
.faq-answer.open {
    max-height:220px;
    padding:0 16px 18px;
    opacity:1;
}
.faq-answer p+p { margin-top:9px; }
.faq-answer ul { list-style:none; padding:0; margin:9px 0; }
.faq-answer ul li { padding:4px 0 4px 16px; position:relative; font-size:.89rem; }
.faq-answer ul li::before { content:'-'; position:absolute; left:0; color:var(--blue-2); }

.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:40px; background:var(--border-2); border-radius:var(--r-lg); overflow:hidden; }
.related-card {
    background:#fff; padding:28px 26px;
    transition:background var(--t), color var(--t);
    text-decoration:none; display:flex; flex-direction:column;
    position:relative; overflow:hidden;
}
.related-card::after {
    content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
    background:var(--blue-2); transform:scaleX(0);
    transition:transform .3s var(--ease); transform-origin:left;
}
.related-card:hover::after { transform:scaleX(1); }
.related-card:hover { background:var(--navy); }
.related-card__title {
    font-family:'Syne',sans-serif; font-size:1rem;
    font-weight:700; color:var(--navy); margin-bottom:8px;
    transition:color var(--t);
}
.related-card:hover .related-card__title { color:#fff; }
.related-card__text {
    font-size:.83rem; color:var(--mid); line-height:1.65;
    margin-bottom:16px; font-weight:300; flex:1;
    transition:color var(--t);
}
.related-card:hover .related-card__text { color:rgba(255,255,255,.5); }
.related-card__link {
    font-size:.71rem; font-weight:700; letter-spacing:.1em;
    text-transform:uppercase; color:var(--blue-2);
    display:inline-flex; align-items:center; gap:6px;
    transition:gap var(--t), color var(--t);
}
.related-card:hover .related-card__link { color:#93C5FD; gap:10px; }

.legal-content { max-width:760px; padding:32px 0 96px; }
.legal-content h1 { font-family:'Syne',sans-serif; font-size:clamp(2rem,4vw,3.4rem); font-weight:800; color:var(--navy); margin-bottom:9px; letter-spacing:-.03em; }
.legal-content .last-updated { font-size:.79rem; color:var(--mid); margin-bottom:40px; padding-bottom:20px; border-bottom:1px solid var(--border-2); }
.legal-content h2 { font-family:'Syne',sans-serif; font-size:1.32rem; font-weight:700; color:var(--navy); margin:38px 0 11px; }
.legal-content p { font-size:.92rem; line-height:1.85; color:var(--text-2); font-weight:300; margin-bottom:13px; }
.legal-content a { color:var(--blue-2); text-decoration:underline; }
.legal-content ul { list-style:none; padding:0; margin:10px 0 13px; }
.legal-content ul li { padding:4px 0 4px 16px; position:relative; font-size:.89rem; color:var(--text-2); font-weight:300; }
.legal-content ul li::before { content:'-'; position:absolute; left:0; color:var(--blue-2); }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.section-divider { width:100%; height:2px; background:linear-gradient(90deg, var(--blue-2) 0%, #60A5FA 40%, transparent 100%); border:none; margin:0; }
.stat-highlight { font-family:'Syne',sans-serif; font-size:3rem; font-weight:800; color:var(--blue-2); line-height:1; display:block; }
.text-amber { color:#D97706; }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-40{margin-top:40px} .mt-64{margin-top:64px} .mb-40{margin-bottom:40px}

@media (max-width:1100px) {
    .container { padding:0 28px; }
    .hero__inner { gap:40px; grid-template-columns:minmax(0,720px); }
    .hero__main::after { right:3vw; width:320px; opacity:.09; }
    .services-grid { grid-template-columns:repeat(3,1fr); }
    .founder-layout { max-width:900px; }
    .footer__grid { grid-template-columns:1fr 1fr; gap:36px; }
    .split-layout { grid-template-columns:1fr; }
    .form-card { position:static; }
    .messie-inner { gap:56px; }
    
    .usp-strip__item { padding-right:20px; margin-right:20px; }
}

@media (max-width:900px) {
    .hero__inner { grid-template-columns:1fr; }
    .hero__main::after { width:280px; top:16%; right:-70px; opacity:.08; }
    .hero__trustbar-sep { display:none; }
    .messie-inner { grid-template-columns:1fr; }
    .process-steps { grid-template-columns:repeat(2,1fr); }
    .service-card--featured { grid-column:1 / span 3; grid-row:auto; }
    .cta-band { padding:80px 0 72px; }
}

@media (max-width:768px) {
    .container { padding:0 20px; }
    .section { padding:60px 0; }
    .nav__links { display:none; }
    .nav__toggle { display:flex; }
    .hero__main { padding:120px 0 56px; }
    .hero__main::after { width:220px; top:10%; right:-120px; opacity:.06; }
    .hero h1 {
        font-size:clamp(2.3rem,10vw,2.7rem);
        line-height:1.02;
        letter-spacing:0;
    }
    .hero__service-word {
        display:inline-block;
        font-size:.74em;
        letter-spacing:0;
        vertical-align:baseline;
    }
    .hero h1 em { font-size:.95em; }
    .hero__proofs { grid-template-columns:1fr; margin-top:16px; }
    .hero__proof { min-height:auto; padding:12px 14px; }
    .hero__trustbar-item { min-width:140px; }
    .hero__trustbar-title { font-size:.72rem; }
    .hero__trustbar-desc { font-size:.65rem; }
    .services-grid { grid-template-columns:1fr; gap:2px; }
    .service-card--featured { grid-column:auto; grid-row:auto; }
    .process-steps { grid-template-columns:1fr; }
    .process-step { border-right:none; }
    .usp-strip__grid { grid-template-columns:repeat(2,1fr); gap:28px 0; }
    .usp-strip__item { border-right:none; padding-right:0; margin-right:0; }
    .usp-strip__item:nth-child(odd) { padding-right:20px; border-right:1px solid var(--border-2); }
    .cta-band__phone-num { font-size:1.6rem; white-space:nowrap; }
    .cta-band__phone-icon { width:48px; height:48px; }
    .founder-layout { max-width:none; }
    .faq-home-section .faq-list { padding:8px; }
    .form-grid { grid-template-columns:1fr; }
    .form-group--full { grid-column:span 1; }
    .kontakt-grid { grid-template-columns:1fr; gap:40px; }
    .kontakt-aside { position:static; }
    .related-grid { grid-template-columns:1fr; }
    .footer__grid { grid-template-columns:1fr; gap:26px; }
    .footer__bottom { flex-direction:column; align-items:flex-start; }
    .page-hero { padding:112px 0 56px; }
    .page-hero__meta { flex-direction:column; align-items:flex-start; }
    .mobile-cta-bar { display:flex; }
    body { padding-bottom:66px; }
}

@media (max-width:480px) {
    .hero__actions { flex-direction:column; align-items:stretch; }
    .hero__actions .btn { justify-content:center; }
    .hero__actions .hero__tel { justify-content:flex-start; }
    .cta-band__actions .btn { min-width:200px; justify-content:center; }
    .usp-strip__grid { grid-template-columns:1fr; gap:20px; }
    .usp-strip__item,
    .usp-strip__item:nth-child(odd) { border-right:none; padding-right:0; margin-right:0; }
    .usp-strip { padding:36px 0; }
}

.hero__deco {
    display:block;
    position:absolute;
    inset:0;
    z-index:1;
    overflow:hidden;
    pointer-events:none;
}
.hero__deco-noise {
    position:absolute; inset:0;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .65 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/></svg>");
    opacity:.06; mix-blend-mode:overlay;
}

@keyframes box-fade {
    to { opacity:1; }
}

.hero__icon {
    position:absolute; opacity:0;
    aspect-ratio:1;
    color:rgba(223,179,120,.34);
    animation:icon-drift 15s ease-in-out infinite, box-fade .8s ease-out forwards;
    will-change:transform, opacity;
    pointer-events:none;
}
.hero__icon svg,
.hero__spark svg {
    display:block; width:100%; height:100%;
    fill:none; stroke:currentColor; stroke-width:2.25;
    stroke-linecap:round; stroke-linejoin:round;
    vector-effect:non-scaling-stroke;
    shape-rendering:geometricPrecision;
}
.hero__icon--home { top:14%; right:22%; width:72px; color:rgba(223,179,120,.24); animation-delay:-2s, .2s; --r:-3deg; }
.hero__icon--clean { top:31%; right:19%; width:54px; color:rgba(223,179,120,.42); animation-delay:-6s, .35s; --r:-8deg; }
.hero__icon--move { top:35%; right:6%; width:82px; color:rgba(245,228,198,.22); animation-delay:-10s, .5s; --r:2deg; }
.hero__icon--tool { bottom:20%; right:33%; width:58px; color:rgba(245,228,198,.24); animation-delay:-4s, .65s; --r:0deg; }
.hero__icon--garden { bottom:16%; right:14%; width:62px; color:rgba(223,179,120,.36); animation-delay:-12s, .8s; --r:-10deg; }
.hero__icon--broom { top:55%; right:38%; width:54px; color:rgba(245,228,198,.30); animation-delay:-8s, .6s; --r:-4deg; }
.hero__spark {
    position:absolute;
    opacity:0;
    color:rgba(245,228,198,.72);
    pointer-events:none;
    animation:sparkle-pulse 4.8s ease-in-out infinite, box-fade .7s .45s ease-out forwards;
}
.hero__spark svg { stroke-width:2; shape-rendering:crispEdges; }
.hero__spark--1 { top:25%; right:36%; width:24px; height:24px; animation-delay:.2s, .3s; }
.hero__spark--2 { top:58%; right:10%; width:20px; height:20px; color:rgba(223,179,120,.55); animation-delay:1.1s, .55s; }
.hero__spark--3 { bottom:28%; right:43%; width:18px; height:18px; color:rgba(245,228,198,.5); animation-delay:2s, .7s; }

@keyframes icon-drift {
    0%,100% { transform:translate(0,0) rotate(var(--r,0deg)); }
    50%     { transform:translate(4px,-6px) rotate(calc(var(--r,0deg) + 2deg)); }
}
@keyframes sparkle-pulse {
    0%,100% { opacity:.45; }
    50%     { opacity:.95; }
}

.service-card {
    will-change:transform;
}
.service-card::after {
    content:''; position:absolute;
    top:0; left:-60%; width:50%; height:100%;
    background:linear-gradient(100deg,
        transparent 20%,
        rgba(224,180,120,.08) 40%,
        rgba(245,228,198,.18) 50%,
        rgba(224,180,120,.08) 60%,
        transparent 80%);
    transform:skewX(-14deg);
    transition:left .7s var(--ease);
    pointer-events:none; z-index:1;
}
.service-card:hover::after { left:130%; }
.service-card:hover {
    transform:translateY(-3px);
    box-shadow:0 18px 44px rgba(12,30,60,.09);
}
.service-card:hover::before { background:var(--amber-2); }
.service-card:hover .service-card__icon { color:var(--amber-2); opacity:1; }
.service-card__head,
.service-card__title,
.service-card__text,
.service-card__link,
.service-card__badge { position:relative; z-index:2; }

.service-card--featured::after {
    background:linear-gradient(100deg,
        transparent 20%,
        rgba(224,180,120,.06) 40%,
        rgba(245,228,198,.14) 50%,
        rgba(224,180,120,.06) 60%,
        transparent 80%);
}
.service-card--featured:hover { transform:translateY(-3px); box-shadow:0 22px 56px rgba(12,30,60,.35); }
.service-card--featured:hover::before { background:var(--amber); }
.service-card--featured:hover .service-card__icon { color:var(--amber-soft); }
.service-card--featured .service-card__badge {
    background:rgba(224,180,120,.14) !important;
    border-color:rgba(224,180,120,.28) !important;
    color:rgba(245,228,198,.9) !important;
}

.locations-marquee {
    background:var(--navy);
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
    overflow:hidden; position:relative;
}
.locations-marquee::before,
.locations-marquee::after {
    content:''; position:absolute; top:0; bottom:0; width:120px;
    z-index:2; pointer-events:none;
}
.locations-marquee::before {
    left:0; background:linear-gradient(90deg, var(--navy), transparent);
}
.locations-marquee::after {
    right:0; background:linear-gradient(-90deg, var(--navy), transparent);
}
.locations-marquee__track {
    display:flex; gap:0;
    width:max-content;
    animation:marquee-slide 36s linear infinite;
}
.locations-marquee__item {
    display:inline-flex; align-items:center; gap:28px;
    padding:22px 28px;
    font-family:'Syne',sans-serif;
    font-size:1.3rem; font-weight:700;
    color:rgba(255,255,255,.72);
    letter-spacing:-.01em;
    white-space:nowrap;
}
.locations-marquee__dot {
    width:7px; height:7px; border-radius:50%;
    background:var(--amber);
    flex-shrink:0;
    box-shadow:0 0 12px rgba(224,180,120,.5);
}
@keyframes marquee-slide {
    from { transform:translateX(0); }
    to   { transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .locations-marquee__track { animation:none; }
    .hero__icon { animation:box-fade 1.4s ease-out forwards; }
    .hero__spark { animation:box-fade 1.4s ease-out forwards; }
    .hero::before, .hero::after { animation:none; }
}

.messie-section .section__title em { color:var(--amber-soft) !important; }
.messie-check__dot {
    background:rgba(224,180,120,.14) !important;
    border-color:rgba(224,180,120,.32) !important;
}
.messie-check__dot svg { color:var(--amber-soft) !important; }
.messie-section::after {
    background:radial-gradient(circle, rgba(224,180,120,.14) 0%, transparent 65%) !important;
}

.hero__card-tag { color:rgba(245,228,198,.72) !important; }
.hero__card-tag::before { background:rgba(224,180,120,.5) !important; }
.hero__card-quote cite { color:rgba(245,228,198,.6) !important; }
.hero__eyebrow { color:rgba(245,228,198,.7) !important; }

.cta-band__title em { color:var(--amber-soft) !important; }
.cta-band__label { color:rgba(245,228,198,.7) !important; }
.cta-band__label::before,
.cta-band__label::after { background:rgba(224,180,120,.35) !important; }

.services-section .section__label::before,
.process-section .section__label::before {
    background:linear-gradient(90deg, var(--blue-2), var(--amber-2));
}

@media (max-width:768px) {
    .hero__icon--clean,
    .hero__icon--tool,
    .hero__icon--broom,
    .hero__icon--garden,
    .hero__spark--2,
    .hero__spark--3 { display:none; }
    .hero__icon--home { width:58px; top:16%; right:-24px; }
    .hero__icon--move { width:68px; top:40%; right:-38px; }
    .hero__spark--1 { width:20px; height:20px; top:22%; right:24%; }
    .locations-marquee__item { font-size:1rem; padding:16px 20px; gap:20px; }
}

