:root {
    --navy: #09246a;
    --navy-2: #0d2f8b;
    --blue: #087df1;
    --sky: #eaf6ff;
    --red: #ff2a3f;
    --yellow: #ffd81b;
    --green: #5fd12c;
    --pink: #ff4fa0;
    --ink: #0b1945;
    --muted: #5d6681;
    --paper: #ffffff;
    --soft: #f4f8ff;
    --line: rgba(9, 36, 106, .12);
    --shadow: 0 30px 80px rgba(14, 48, 137, .16);
    --radius-xl: 44px;
    --radius-lg: 30px;
    --radius-md: 20px;
    --shell: min(1180px, calc(100vw - 40px));
    --display: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    color-scheme: light;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

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

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 130px 0; }

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    transform: translateY(-150%);
    border-radius: 999px;
    color: #fff;
    background: var(--navy);
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    pointer-events: none;
}
.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue));
}

.noise {
    position: fixed;
    z-index: 999;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,.88);
    box-shadow: 0 12px 40px rgba(9,36,106,.08);
    backdrop-filter: blur(18px) saturate(150%);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(9,36,106,.12));
}
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
    position: relative;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 750;
    color: #26345e;
    transition: color .2s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 3px;
    transform: scaleX(0);
    border-radius: 999px;
    background: var(--red);
    transition: transform .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(9,36,106,.1);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 28px rgba(9,36,106,.08);
    font-size: 14px;
    font-weight: 850;
    transition: transform .25s ease, box-shadow .25s ease;
}
.phone-pill:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(9,36,106,.13); }
.phone-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(95,209,44,.15);
}
.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 13px;
    border: 0;
    border-radius: 16px;
    background: var(--navy);
    cursor: pointer;
}
.menu-button span {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.98);
}
.mobile-menu-inner { display: grid; padding: 18px 0 28px; }
.mobile-menu a {
    padding: 11px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 840px;
    padding: 148px 0 108px;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 30%, rgba(255,216,27,.28), transparent 25%),
        radial-gradient(circle at 83% 8%, rgba(8,125,241,.18), transparent 29%),
        linear-gradient(145deg, #fff 12%, #f6fbff 58%, #eaf5ff 100%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.16fr;
    align-items: center;
    gap: 54px;
}
.eyebrow, .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.eyebrow span {
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
}
.hero h1, .section h2, .contact h2 {
    margin: 22px 0 24px;
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .98;
}
.hero h1 { max-width: 620px; font-size: clamp(56px, 6.2vw, 92px); }
.hero h1 span { display: inline-block; }
.word-pop { position: relative; z-index: 1; }
.word-pop::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -10px;
    bottom: 4px;
    left: -8px;
    height: 20%;
    border-radius: 999px;
    background: var(--yellow);
    transform: rotate(-1.5deg);
}
.gradient-word {
    color: transparent;
    background: linear-gradient(95deg, var(--red) 0%, #ff6b2c 34%, var(--pink) 68%, var(--blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
.hero-copy > p { max-width: 600px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 25px;
    border: 0;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff374c, #f40028);
    box-shadow: 0 18px 38px rgba(255,42,63,.28), inset 0 1px rgba(255,255,255,.3);
}
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 44px rgba(255,42,63,.36); }
.button-primary span:last-child, .button-primary i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--red);
    background: #fff;
    font-style: normal;
}
.button-ghost {
    color: var(--navy);
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(9,36,106,.1);
}
.button-ghost:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 18px 34px rgba(9,36,106,.1); }
.play-mark {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--navy);
}
.trust-row { display: flex; gap: 34px; margin-top: 42px; }
.trust-row div { display: grid; }
.trust-row strong { font-family: var(--display); font-size: 23px; line-height: 1.1; color: var(--navy); }
.trust-row span { color: var(--muted); font-size: 12px; font-weight: 650; }

.hero-visual { position: relative; min-width: 0; }
.hero-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.18 / 1;
    border: 10px solid rgba(255,255,255,.92);
    border-radius: 54% 46% 48% 52% / 43% 54% 46% 57%;
    background: #d8efff;
    box-shadow: 0 40px 100px rgba(9,36,106,.2), inset 0 0 0 1px rgba(255,255,255,.7);
    transform: rotate(1.7deg);
    will-change: transform;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; }
.image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,.22), transparent 32%, transparent 70%, rgba(255,216,27,.12));
}
.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 18px 45px rgba(9,36,106,.16);
    backdrop-filter: blur(14px);
    animation: float 4.5s ease-in-out infinite;
}
.floating-card b { display: block; color: var(--navy); }
.floating-card small { display: block; color: var(--muted); font-size: 11px; }
.floating-card-top { top: 9%; left: -6%; }
.floating-card-bottom { right: -2%; bottom: 11%; animation-delay: -1.8s; }
.floating-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    color: var(--navy);
    background: var(--yellow);
    font-size: 20px;
}
.mini-avatars { display: flex; padding-left: 16px; }
.mini-avatars i {
    width: 28px;
    height: 28px;
    margin-left: -12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--blue);
}
.mini-avatars i:nth-child(2) { background: var(--pink); }
.mini-avatars i:nth-child(3) { background: var(--green); }
.hero-sun {
    position: absolute;
    z-index: 4;
    top: -24px;
    right: -28px;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border-radius: 50%;
    color: #653c00;
    background: var(--yellow);
    box-shadow: 0 0 0 12px rgba(255,216,27,.14), 0 16px 40px rgba(255,180,0,.3);
    font-size: 32px;
    animation: sunPulse 3s ease-in-out infinite;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 140px; height: 140px; left: -55px; bottom: 16%; background: var(--green); opacity: .13; }
.orb-two { width: 90px; height: 90px; right: 41%; top: 16%; background: var(--pink); opacity: .12; }
.hero-wave {
    position: absolute;
    right: -4%;
    bottom: -80px;
    width: 58%;
    height: 165px;
    transform: rotate(-4deg);
    border-radius: 50%;
    background: #fff;
}

.ticker { overflow: hidden; padding: 17px 0; color: #fff; background: var(--navy); }
.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee 26s linear infinite;
}
.ticker-track span { display: flex; align-items: center; gap: 12px; padding: 0 27px; white-space: nowrap; font-size: 14px; font-weight: 850; letter-spacing: .035em; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: var(--red); }.dot.yellow { background: var(--yellow); }.dot.green { background: var(--green); }.dot.blue { background: var(--blue); }.dot.pink { background: var(--pink); }

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .65fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 64px;
}
.section-heading h2, .process-intro h2, .faq-copy h2, .testimonial-head h2, .about-copy h2 { font-size: clamp(42px, 5.2vw, 70px); }
.section h2 em, .contact h2 em { color: var(--blue); font-style: normal; }
.section-heading > p { margin: 0 0 10px; color: var(--muted); font-size: 17px; }

.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    position: relative;
    min-height: 355px;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--soft);
    transition: transform .35s ease, color .35s ease, background .35s ease, box-shadow .35s ease;
}
.service-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: .18;
    transition: transform .4s ease, opacity .4s ease;
}
.service-card:nth-child(2)::after, .service-card:nth-child(6)::after { background: var(--green); }
.service-card:nth-child(3)::after { background: var(--pink); }
.service-card:nth-child(4)::after { background: var(--red); }
.service-card:nth-child(5)::after { background: var(--blue); }
.service-card:hover { color: #fff; background: var(--navy); box-shadow: var(--shadow); transform: translateY(-8px); }
.service-card:hover::after { transform: scale(1.35); opacity: .3; }
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-number { font-size: 13px; font-weight: 900; letter-spacing: .08em; color: var(--blue); }
.service-arrow { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .3s ease, background .3s ease; }
.service-card:hover .service-arrow { transform: rotate(45deg); color: var(--navy); background: var(--yellow); }
.service-icon { width: 74px; height: 74px; margin: 38px 0 24px; color: var(--navy); }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { color: var(--yellow); }
.service-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 23px; letter-spacing: -.03em; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; transition: color .35s ease; }
.service-card:hover p { color: rgba(255,255,255,.75); }

.about { overflow: hidden; background: linear-gradient(180deg, #f6fbff, #fff); }
.about-grid { display: grid; grid-template-columns: .86fr 1fr; align-items: center; gap: 90px; }
.about-media { position: relative; padding: 32px; }
.about-media::before {
    content: "";
    position: absolute;
    inset: 0 13% 4% 0;
    border-radius: 48% 52% 40% 60% / 48% 40% 60% 52%;
    background: var(--yellow);
    transform: rotate(-5deg);
}
.about-frame { position: relative; z-index: 1; overflow: hidden; aspect-ratio: .78; border: 9px solid #fff; border-radius: 180px 38px 150px 45px; box-shadow: var(--shadow); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.quality-seal {
    position: absolute;
    z-index: 3;
    right: -14px;
    bottom: 45px;
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    border: 7px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
    box-shadow: 0 18px 45px rgba(255,42,63,.28);
}
.quality-seal span { position: absolute; width: 100%; height: 100%; padding: 8px; text-align: center; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.quality-seal b { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--yellow); font-size: 24px; }
.about-copy .lead { color: var(--ink); font-size: 21px; font-weight: 720; }
.about-copy > p:not(.lead) { color: var(--muted); }
.about-points { display: grid; gap: 12px; margin: 30px 0; }
.about-points > div { display: flex; align-items: center; gap: 14px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); }
.about-points > div > span { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 13px; color: #fff; background: var(--blue); font-weight: 900; }
.about-points p { display: grid; margin: 0; }
.about-points small { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 2px solid var(--yellow); color: var(--navy); font-weight: 900; }
.text-link span { transition: transform .25s ease; }.text-link:hover span { transform: translateX(6px); }

.advantages { overflow: hidden; color: #fff; background: var(--navy); }
.advantages::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: radial-gradient(circle at 2px 2px, #fff 1.5px, transparent 0);
    background-size: 32px 32px;
}
.advantages .shell { position: relative; z-index: 2; }
.section-heading.light .kicker { color: var(--yellow); }
.section-heading.light h2 em { color: var(--yellow); }
.section-heading.light > p { color: rgba(255,255,255,.65); }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.advantage-card {
    min-height: 290px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(8px);
    transition: transform .3s ease, background .3s ease;
}
.advantage-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.12); }
.advantage-card > span { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 18px; color: var(--navy); background: var(--yellow); font-weight: 950; }
.advantage-card:nth-child(2) > span { background: var(--green); }
.advantage-card:nth-child(3) > span { color: #fff; background: var(--red); }
.advantage-card:nth-child(4) > span { color: #fff; background: var(--blue); }
.advantage-card h3 { margin: 56px 0 12px; font-family: var(--display); font-size: 21px; letter-spacing: -.025em; }
.advantage-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.orbit-a { width: 440px; height: 440px; right: -240px; top: -140px; }
.orbit-b { width: 230px; height: 230px; left: -140px; bottom: -110px; }

.process { background: #fff; }
.process-intro { max-width: 820px; margin-bottom: 68px; }
.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 80px 1fr minmax(420px, .85fr); align-items: center; gap: 34px; min-height: 154px; border-bottom: 1px solid var(--line); }
.step-index { font-family: var(--display); font-size: 19px; color: var(--blue); }
.step-line { height: 1px; background: var(--line); }
.step-line span { display: block; width: 0; height: 100%; background: var(--red); transition: width .5s ease; }
.process-item:hover .step-line span { width: 100%; }
.process-item h3 { margin: 0 0 6px; font-family: var(--display); font-size: 25px; letter-spacing: -.035em; }
.process-item p { margin: 0; color: var(--muted); }

.testimonials { overflow: hidden; background: var(--soft); }
.testimonial-head { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 54px; }
.testimonial-head .kicker, .testimonial-head h2 { grid-column: 1; }
.testimonial-head h2 { margin-bottom: 0; }
.slider-buttons { grid-column: 2; grid-row: 1 / 3; display: flex; gap: 10px; align-self: end; }
.slider-buttons button { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 17px; background: #fff; cursor: pointer; font-size: 22px; transition: .25s ease; }
.slider-buttons button:hover { color: #fff; background: var(--navy); transform: translateY(-3px); }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; gap: 18px; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.testimonial-card { flex: 0 0 calc((100% - 36px) / 3); min-height: 330px; margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 16px 45px rgba(9,36,106,.06); }
.stars { color: #ffb800; letter-spacing: 3px; }
.testimonial-card blockquote { margin: 36px 0 46px; font-family: var(--display); font-size: 22px; line-height: 1.45; letter-spacing: -.025em; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 13px; }
.avatar { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 16px; color: #fff; background: var(--blue); font-weight: 900; }
.avatar-2 { background: var(--red); }.avatar-3 { color: var(--navy); background: var(--yellow); }.avatar-4 { color: var(--navy); background: var(--green); }
.testimonial-card figcaption > span:last-child { display: grid; }
.testimonial-card figcaption small { color: var(--muted); }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.1fr; gap: 90px; align-items: start; }
.faq-copy { position: sticky; top: 130px; }
.faq-copy > p { max-width: 470px; color: var(--muted); }
.button-dark { margin-top: 20px; color: #fff; background: var(--navy); }
.button-dark:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(9,36,106,.22); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 92px; list-style: none; cursor: pointer; font-family: var(--display); font-size: 20px; line-height: 1.35; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { position: relative; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 14px; background: var(--soft); }
.accordion summary i::before, .accordion summary i::after { content: ""; position: absolute; top: 20px; left: 13px; width: 16px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .25s ease; }
.accordion summary i::after { transform: rotate(90deg); }
.accordion details[open] summary i { background: var(--yellow); }
.accordion details[open] summary i::after { transform: rotate(0); }
.answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
details[open] .answer { grid-template-rows: 1fr; }
.answer p { margin: 0; padding: 0 70px 30px 0; color: var(--muted); }

.contact {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    color: #fff;
    background: linear-gradient(135deg, #061c58, #0d2f8b 56%, #064eae);
}
.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background: radial-gradient(circle at 20% 40%, #fff 1px, transparent 1px);
    background-size: 28px 28px;
}
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr .72fr; align-items: center; gap: 90px; }
.contact .kicker { color: var(--yellow); }
.contact h2 { font-size: clamp(48px, 6vw, 78px); }
.contact h2 em { color: var(--yellow); }
.contact-copy > p { max-width: 600px; color: rgba(255,255,255,.7); font-size: 17px; }
.contact-details { display: grid; gap: 13px; margin-top: 40px; }
.contact-details a, .contact-details div { display: grid; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-details span { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.contact-details b { font-size: 18px; }
.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.3); border-radius: 34px; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 40px 100px rgba(0,0,0,.25); backdrop-filter: blur(18px); }
.form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.form-head span { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 15px; color: #fff; background: var(--blue); font-weight: 900; }
.form-head p { margin: 0; color: var(--navy); font-weight: 800; }
.contact-form label { display: grid; gap: 7px; margin-top: 16px; }
.contact-form label > span { font-size: 12px; font-weight: 850; letter-spacing: .05em; color: #3d496c; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 15px; outline: 0; color: var(--ink); background: #f7faff; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input { height: 52px; padding: 0 16px; }
.contact-form textarea { min-height: 96px; padding: 14px 16px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,125,241,.12); }
.contact-form small { min-height: 17px; color: var(--red); font-size: 12px; }
.form-submit { width: 100%; margin-top: 14px; }
.form-submit:disabled { cursor: wait; opacity: .72; }
.form-status { min-height: 24px; margin: 15px 0 0; text-align: center; color: var(--muted); font-size: 13px; }
.form-status.success { color: #198a37; }.form-status.error { color: var(--red); }
.honeypot { position: absolute !important; left: -9999px !important; }
.contact-bubble { position: absolute; border-radius: 50%; filter: saturate(120%); }
.bubble-red { width: 120px; height: 120px; right: -40px; top: 12%; background: var(--red); opacity: .6; }
.bubble-yellow { width: 62px; height: 62px; left: 4%; bottom: 11%; background: var(--yellow); }
.bubble-green { width: 36px; height: 36px; left: 47%; top: 8%; background: var(--green); }

.site-footer { color: #fff; background: #04143d; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 50px; padding: 54px 0; }
.footer-brand img { width: 88px; height: 88px; }
.footer-top p { margin: 0; color: rgba(255,255,255,.65); }
.footer-top nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 24px; }
.footer-top nav a { font-size: 14px; font-weight: 750; }
.footer-top nav a:hover { color: var(--yellow); }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; font-size: 11px; font-weight: 900; transition: .25s ease; }
.socials a:hover { color: var(--navy); background: var(--yellow); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.46); font-size: 12px; }

.floating-contact {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px 8px 8px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    color: #fff;
    background: var(--red);
    box-shadow: 0 15px 35px rgba(255,42,63,.32);
    font-size: 13px;
    font-weight: 850;
    transition: transform .25s ease;
}
.floating-contact:hover { transform: translateY(-4px); }
.floating-contact span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--red); background: #fff; font-size: 18px; }
.floating-contact i { font-style: normal; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease var(--delay, 0ms), transform .8s cubic-bezier(.22,1,.36,1) var(--delay, 0ms); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: flex; align-items: center; gap: 6px; }
.nav-dropdown > .nav-link span { font-size: 13px; transition: transform .25s ease; }
.nav-dropdown:hover > .nav-link span, .nav-dropdown:focus-within > .nav-link span { transform: rotate(180deg); }
.nav-dropdown-panel {
    position: absolute; top: calc(100% + 17px); left: 50%; width: 294px; padding: 8px;
    border: 1px solid var(--line); border-radius: 20px; opacity: 0; visibility: hidden;
    background: rgba(255,255,255,.98); box-shadow: 0 26px 70px rgba(9,36,106,.18);
    transform: translate(-50%, 12px); transition: .25s ease; backdrop-filter: blur(18px);
}
.nav-dropdown-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 22px; }
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-panel a { display: flex; align-items: center; gap: 13px; padding: 11px 12px; border-radius: 13px; color: var(--ink); font-size: 14px; font-weight: 850; transition: .2s ease; }
.nav-dropdown-panel a + a { border-top: 1px solid #edf1fa; }
.nav-dropdown-panel a:hover { color: var(--blue); background: var(--soft); transform: translateX(3px); }
.nav-dropdown-panel i { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: var(--blue); background: #edf7ff; font-size: 18px; font-style: normal; }
.nav-dropdown-panel a:nth-child(2) i { color: #1ea947; background: #effcf2; }
.nav-dropdown-panel a:nth-child(3) i { color: #655cff; background: #f1f0ff; }
.nav-dropdown-panel a:nth-child(4) i { color: #b32fc5; background: #fcf0ff; }
.nav-dropdown-panel a:nth-child(5) i { color: #ff7a00; background: #fff5e9; }
.nav-dropdown-panel a:nth-child(6) i { color: var(--red); background: #fff0f2; }
.mobile-menu-inner .mobile-sub { padding-left: 20px; color: var(--muted); font-size: 13px; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes sunPulse { 0%,100% { transform: scale(1) rotate(-3deg); } 50% { transform: scale(1.06) rotate(3deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@supports (animation-timeline: view()) {
    .about-media::before { animation: blobMorph linear both; animation-timeline: view(); animation-range: entry 0% cover 80%; }
    @keyframes blobMorph { from { transform: translateY(80px) rotate(-12deg); } to { transform: translateY(-30px) rotate(3deg); } }
}

@media (max-width: 1050px) {
    :root { --shell: min(920px, calc(100vw - 36px)); }
    .desktop-nav { display: none; }
    .menu-button { display: block; }
    .hero { min-height: auto; padding-top: 135px; }
    .hero-grid { grid-template-columns: 1fr; gap: 64px; }
    .hero-copy { text-align: center; }
    .hero h1, .hero-copy > p { margin-inline: auto; }
    .eyebrow, .hero-actions, .trust-row { justify-content: center; }
    .hero-visual { width: min(760px, 92%); margin-inline: auto; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 55px; }
    .advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .process-item { grid-template-columns: 65px 1fr minmax(350px, .95fr); }
    .testimonial-card { flex-basis: calc((100% - 18px) / 2); }
    .faq-grid, .contact-grid { gap: 55px; }
    .footer-top { grid-template-columns: auto 1fr auto; }
    .socials { grid-column: 3; }
}

@media (max-width: 760px) {
    :root { --shell: calc(100vw - 28px); --radius-xl: 30px; }
    .section { padding: 88px 0; }
    .header-inner { min-height: 76px; }
    .brand img { width: 58px; height: 58px; }
    .phone-pill { display: none; }
    .hero { padding: 115px 0 82px; }
    .hero-grid { gap: 52px; }
    .hero h1 { font-size: clamp(48px, 15vw, 68px); }
    .hero-copy > p { font-size: 16px; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .trust-row { justify-content: space-between; gap: 10px; }
    .trust-row strong { font-size: 20px; }
    .trust-row span { font-size: 10px; }
    .hero-visual { width: 100%; }
    .hero-image-wrap { border-width: 6px; border-radius: 42% 58% 45% 55% / 46% 42% 58% 54%; }
    .floating-card { padding: 9px 11px; font-size: 12px; }
    .floating-card-top { left: 0; top: -6%; }
    .floating-card-bottom { right: 0; bottom: 4%; }
    .hero-sun { width: 62px; height: 62px; right: 2px; top: -18px; font-size: 23px; }
    .hero-wave { width: 80%; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 42px; }
    .section-heading h2, .process-intro h2, .faq-copy h2, .testimonial-head h2, .about-copy h2 { font-size: clamp(39px, 11vw, 54px); }
    .section-heading > p { font-size: 15px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 310px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-media { padding: 18px 24px 18px 8px; }
    .quality-seal { right: 0; width: 105px; height: 105px; }
    .quality-seal b { width: 44px; height: 44px; }
    .about-copy .lead { font-size: 19px; }
    .advantage-grid { grid-template-columns: 1fr; }
    .advantage-card { min-height: 245px; }
    .advantage-card h3 { margin-top: 38px; }
    .process-intro { margin-bottom: 44px; }
    .process-item { grid-template-columns: 52px 1fr; gap: 16px; padding: 26px 0; }
    .step-line { display: none; }
    .process-item h3 { font-size: 21px; }
    .testimonial-head { grid-template-columns: 1fr; gap: 28px; }
    .slider-buttons { grid-column: 1; grid-row: auto; }
    .testimonial-card { flex-basis: 88%; min-height: 315px; }
    .faq-grid { grid-template-columns: 1fr; gap: 50px; }
    .faq-copy { position: static; }
    .accordion summary { min-height: 82px; font-size: 17px; }
    .answer p { padding-right: 12px; }
    .contact { padding: 90px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact h2 { font-size: clamp(46px, 13vw, 62px); }
    .contact-form { padding: 22px; border-radius: 26px; }
    .footer-top { grid-template-columns: 1fr; gap: 25px; }
    .footer-top nav { grid-template-columns: repeat(2, 1fr); }
    .socials { grid-column: 1; }
    .footer-bottom { flex-direction: column; }
    .floating-contact { right: 14px; bottom: 14px; }
    .floating-contact i { display: none; }
    .floating-contact { padding: 7px; }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 43px; }
    .trust-row span { max-width: 78px; line-height: 1.25; }
    .floating-card-bottom { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
