:root {
    --bg-0: #f9fbff;
    --bg-1: #eff4ff;
    --bg-2: #e8f0ff;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.95);
    --line: rgba(84, 125, 219, 0.28);
    --line-soft: rgba(84, 125, 219, 0.14);
    --ink: #0f2241;
    --ink-soft: #607297;
    --brand: #2f84ff;
    --brand-2: #5a64ff;
    --accent: #00bea1;
    --radius: 20px;
    --shadow-soft: 0 18px 38px rgba(22, 47, 94, 0.14);
    --shadow-neon: 0 0 28px rgba(47, 132, 255, 0.2);
    --shadow-deep: 0 28px 54px rgba(14, 30, 62, 0.22);
    --lift-y: -8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    --mx: 50%;
    --my: 50%;
    background:
        radial-gradient(1100px 520px at -5% -10%, rgba(47, 132, 255, 0.2), transparent 55%),
        radial-gradient(940px 500px at 105% 0%, rgba(90, 100, 255, 0.16), transparent 54%),
        radial-gradient(720px 460px at 50% 120%, rgba(0, 190, 161, 0.08), transparent 60%),
        linear-gradient(165deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    background-image:
        linear-gradient(rgba(56, 92, 173, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 92, 173, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    content: "";
    inset: 0;
    opacity: 0.7;
    pointer-events: none;
    position: fixed;
    z-index: -3;
}

body::after {
    background:
        radial-gradient(360px 360px at var(--mx) var(--my), rgba(47, 132, 255, 0.2), transparent 68%),
        radial-gradient(220px 220px at calc(var(--mx) + 8%) calc(var(--my) - 10%), rgba(0, 190, 161, 0.12), transparent 72%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    transition: background-position 0.08s linear;
    z-index: -2;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 20px;
}

.site-header {
    backdrop-filter: blur(15px);
    background: rgba(250, 252, 255, 0.82);
    border-bottom: 1px solid rgba(84, 125, 219, 0.2);
    box-shadow: 0 12px 28px rgba(16, 40, 86, 0.12);
    left: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 300;
}

.nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 86px;
    position: relative;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 0;
}

.brand-mark {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.brand-logo-full {
    border: 1px solid rgba(84, 125, 219, 0.28);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(18, 48, 100, 0.12);
    display: block;
    height: 82px;
    max-width: min(62vw, 440px);
    width: auto;
}

.brand-text {
    display: none;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 2px;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.mobile-call {
    display: none;
}

.menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    background: var(--ink);
    border-radius: 10px;
    display: block;
    height: 2px;
    width: 24px;
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.02em;
    line-height: 1;
    overflow: hidden;
    min-height: 44px;
    padding: 13px 20px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px) translateZ(8px);
}

.btn::after {
    background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
    content: "";
    inset: -30% auto;
    pointer-events: none;
    position: absolute;
    transform: translateX(-140%) rotate(18deg);
    transition: transform 0.65s ease;
    width: 38%;
}

.btn:hover::after {
    transform: translateX(320%) rotate(18deg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 12px 24px rgba(47, 132, 255, 0.28);
    color: #ffffff;
}

.btn-primary:hover {
    box-shadow: 0 16px 30px rgba(47, 132, 255, 0.36);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(84, 125, 219, 0.35);
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--brand);
}

.btn-call {
    background: rgba(47, 132, 255, 0.12);
    border-color: rgba(47, 132, 255, 0.3);
    color: #1e64d6;
}

.hero {
    overflow: hidden;
    padding: 96px 0 68px;
    position: relative;
}

.hero-layout {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: 1.2fr 0.8fr;
    position: relative;
    z-index: 2;
}

.hero-shape {
    animation: planeFloat 13s ease-in-out infinite;
    border-radius: 999px;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.shape-one {
    background: radial-gradient(circle, rgba(47, 132, 255, 0.3), transparent 64%);
    filter: blur(1px);
    height: 390px;
    left: -140px;
    top: -40px;
    width: 390px;
}

.shape-two {
    animation-duration: 16s;
    animation-delay: -2s;
    background: radial-gradient(circle, rgba(0, 190, 161, 0.2), transparent 68%);
    filter: blur(1px);
    height: 300px;
    right: -80px;
    top: 20px;
    width: 300px;
}

.hero-copy h1 {
    color: #10274c;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.5rem);
    line-height: 1.1;
    margin: 10px 0 16px;
    text-shadow: 0 6px 24px rgba(90, 100, 255, 0.2), 0 0 20px rgba(90, 100, 255, 0.14);
}

.hero-copy p {
    color: var(--ink-soft);
    max-width: 700px;
}

.eyebrow {
    color: #2d73e6;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-actions,
.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}

.hero-meta a {
    color: #50658f;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-panel,
.info-card,
.step-card,
.stat-card,
.content-card,
.price-card,
.contact-panel,
.quote-form,
.place-card,
.place-visual,
.video-shell,
.cta-band-inner,
.table-wrap,
.social-link,
.contact-list a,
.service-box {
    --mx: 50%;
    --my: 50%;
    backdrop-filter: blur(10px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    transform: translate3d(0, 0, 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transform-style: preserve-3d;
    transition: transform 0.28s cubic-bezier(.2, .7, .2, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-panel::before,
.info-card::before,
.step-card::before,
.stat-card::before,
.content-card::before,
.price-card::before,
.contact-panel::before,
.quote-form::before,
.place-card::before,
.place-visual::before,
.video-shell::before {
    background: linear-gradient(90deg, rgba(47, 132, 255, 0), rgba(47, 132, 255, 0.46), rgba(90, 100, 255, 0));
    content: "";
    height: 1px;
    left: 18px;
    position: absolute;
    right: 18px;
    top: 0;
}

.hero-panel::after,
.info-card::after,
.step-card::after,
.stat-card::after,
.content-card::after,
.price-card::after,
.contact-panel::after,
.quote-form::after,
.place-card::after,
.place-visual::after,
.video-shell::after,
.cta-band-inner::after,
.table-wrap::after,
.social-link::after,
.contact-list a::after,
.service-box::after {
    background: radial-gradient(280px 220px at var(--mx) var(--my), rgba(47, 132, 255, 0.22), rgba(47, 132, 255, 0));
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.22s ease;
    z-index: 0;
}

.hero-panel > *,
.info-card > *,
.step-card > *,
.stat-card > *,
.content-card > *,
.price-card > *,
.contact-panel > *,
.quote-form > *,
.place-card > *,
.place-visual > *,
.video-shell > *,
.cta-band-inner > *,
.table-wrap > *,
.social-link > *,
.contact-list a > *,
.service-box > * {
    position: relative;
    z-index: 1;
}

.hero-panel:hover,
.info-card:hover,
.step-card:hover,
.stat-card:hover,
.content-card:hover,
.price-card:hover,
.contact-panel:hover,
.quote-form:hover,
.place-card:hover,
.video-shell:hover,
.cta-band-inner:hover,
.table-wrap:hover,
.social-link:hover,
.contact-list a:hover,
.service-box:hover {
    border-color: rgba(47, 132, 255, 0.4);
    box-shadow: var(--shadow-soft), var(--shadow-neon), var(--shadow-deep);
    transform: translate3d(0, var(--lift-y), 0) scale(1.012) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.hero-panel:hover::after,
.info-card:hover::after,
.step-card:hover::after,
.stat-card:hover::after,
.content-card:hover::after,
.price-card:hover::after,
.contact-panel:hover::after,
.quote-form:hover::after,
.place-card:hover::after,
.place-visual:hover::after,
.video-shell:hover::after,
.cta-band-inner:hover::after,
.table-wrap:hover::after,
.social-link:hover::after,
.contact-list a:hover::after,
.service-box:hover::after {
    opacity: 1;
}

.hero-panel {
    padding: 24px;
}

.hero-panel h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.24rem;
    margin-bottom: 12px;
}

.feature-list {
    color: var(--ink-soft);
    display: grid;
    gap: 10px;
    list-style: none;
}

.feature-list li {
    padding-left: 18px;
    position: relative;
}

.feature-list li::before {
    color: #2d73e6;
    content: "+";
    font-weight: 800;
    left: 0;
    position: absolute;
}

.section {
    padding: 76px 0;
}

.section.alt {
    background: linear-gradient(180deg, rgba(47, 132, 255, 0.06), rgba(0, 190, 161, 0.03));
}

.section-heading {
    margin-bottom: 26px;
    max-width: 760px;
}

.section-heading h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 2.9vw, 2.45rem);
    line-height: 1.2;
    margin-top: 8px;
}

.card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
    padding: 22px;
}

.info-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.info-card p,
.info-card span {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.steps-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
    min-height: 176px;
    padding: 20px;
}

.step-card span {
    color: #2d73e6;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.step-card h3 {
    font-family: "Sora", sans-serif;
    margin: 6px 0;
}

.step-card p {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.stats-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    padding: 22px;
    text-align: center;
}

.stat-number {
    color: #236ce2;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 16px rgba(47, 132, 255, 0.2);
}

.stat-card p:last-child {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-top: 8px;
}

.video-section {
    position: relative;
}

.video-grid {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
}

.video-copy h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    line-height: 1.2;
    margin: 8px 0 12px;
}

.video-copy p {
    color: var(--ink-soft);
}

.video-shell {
    overflow: hidden;
    padding: 18px;
}

.video-tag {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    padding: 6px 12px;
    text-transform: uppercase;
}

.feature-video {
    background: #edf3ff;
    border: 1px solid rgba(84, 125, 219, 0.32);
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(30, 61, 122, 0.14);
    display: block;
    max-height: 430px;
    object-fit: cover;
    transform: translateZ(18px);
    width: 100%;
}

.video-note {
    color: var(--ink-soft);
    font-size: 0.82rem;
    margin-top: 10px;
}

.place-zone {
    position: relative;
}

.place-grid {
    align-items: stretch;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.place-card {
    padding: 24px;
}

.place-card h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin: 8px 0 12px;
}

.place-card p {
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.place-visual {
    min-height: 330px;
    perspective: 900px;
    overflow: hidden;
}

.orbital {
    --start-rot: 0deg;
    border: 1px solid rgba(84, 125, 219, 0.28);
    border-radius: 999px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--start-rot));
}

.orbit-a {
    animation: orbitSpin 18s linear infinite;
    height: 230px;
    width: 230px;
}

.orbit-b {
    --start-rot: 34deg;
    animation: orbitSpin 14s linear infinite reverse;
    height: 170px;
    width: 170px;
}

.orbit-c {
    --start-rot: 72deg;
    animation: orbitSpin 10s linear infinite;
    height: 118px;
    width: 118px;
}

.core-globe {
    animation: corePulse 3.4s ease-in-out infinite;
    background: radial-gradient(circle at 30% 30%, rgba(47, 132, 255, 0.65), rgba(90, 100, 255, 0.3));
    border-radius: 999px;
    box-shadow: 0 0 30px rgba(47, 132, 255, 0.34);
    height: 70px;
    left: 50%;
    position: absolute;
    transform-style: preserve-3d;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
}

.core-globe::before {
    border: 1px solid rgba(47, 132, 255, 0.28);
    border-radius: 999px;
    content: "";
    inset: -18px;
    position: absolute;
    transform: translateZ(12px);
}

.core-globe::after {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    border-radius: 999px;
    content: "";
    inset: 12%;
    position: absolute;
}

.dot {
    background: #2f84ff;
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(47, 132, 255, 0.5);
    display: block;
    height: 10px;
    position: absolute;
    width: 10px;
}

.dot-a {
    animation: dotPulse 2.6s ease-in-out infinite;
    left: 50%;
    top: 18%;
}

.dot-b {
    animation: dotPulse 3.2s ease-in-out infinite;
    left: 70%;
    top: 62%;
}

.dot-c {
    animation: dotPulse 2.9s ease-in-out infinite;
    left: 28%;
    top: 66%;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(var(--start-rot));
    }
    to {
        transform: translate(-50%, -50%) rotate(calc(var(--start-rot) + 360deg));
    }
}

@keyframes planeFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -14px, 0) scale(1.03);
    }
}

@keyframes corePulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

.cta-band {
    padding: 16px 0 76px;
}

.cta-band-inner {
    align-items: center;
    background: linear-gradient(135deg, rgba(47, 132, 255, 0.14), rgba(90, 100, 255, 0.12));
    border: 1px solid rgba(84, 125, 219, 0.32);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    padding: 28px;
}

.cta-band h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    margin-top: 8px;
    max-width: 740px;
}

.page-main {
    padding-top: 8px;
}

.page-hero {
    padding: 72px 0 42px;
}

.page-hero h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.2;
    margin: 8px 0;
}

.page-hero p {
    color: var(--ink-soft);
    max-width: 780px;
}

.split-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.content-card {
    padding: 24px;
}

.content-card h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.content-card p {
    color: var(--ink-soft);
}

.pricing-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
}

.price-card.featured {
    border-color: rgba(47, 132, 255, 0.46);
    box-shadow: 0 20px 36px rgba(47, 132, 255, 0.22);
}

.badge {
    align-self: start;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    padding: 6px 12px;
    text-transform: uppercase;
}

.badge.sale {
    background: linear-gradient(90deg, #ff7f3f, #ff4d6d);
}

.price-card h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.3rem;
}

.price {
    color: #2268dc;
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.price .price-old {
    color: rgba(15, 22, 36, 0.45);
    font-size: 1rem;
    font-weight: 600;
    margin-right: 8px;
    text-decoration: line-through;
}

.price span {
    color: var(--ink-soft);
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.table-wrap {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow-x: auto;
}

.service-table {
    border-collapse: collapse;
    min-width: 640px;
    width: 100%;
}

.service-table th,
.service-table td {
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.95rem;
    padding: 14px 16px;
    text-align: left;
}

.service-table th {
    background: rgba(47, 132, 255, 0.08);
    color: var(--ink);
    font-family: "Sora", sans-serif;
}

.service-table td {
    color: var(--ink-soft);
}

.review-slider-viewport {
    overflow: hidden;
}

.review-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    transform: translateX(0);
    will-change: transform;
}

.review-slider .review-card {
    flex: 0 0 min(330px, calc(100vw - 88px));
}

.review-card .rating {
    color: #17ac97;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.review-card h3 {
    margin-top: 10px;
}

.review-card .review-meta {
    color: #4f648c;
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    margin-top: 4px;
}

.review-card-user {
    border-color: rgba(0, 190, 161, 0.38);
}

.review-guide p {
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.review-form {
    gap: 10px;
}

.contact-grid {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: 0.85fr 1.15fr;
}

.contact-panel {
    padding: 22px;
}

.contact-panel h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
}

.contact-panel p {
    color: var(--ink-soft);
    margin-top: 10px;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.contact-list a {
    background: rgba(47, 132, 255, 0.08);
    border: 1px solid rgba(84, 125, 219, 0.22);
    border-radius: 10px;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 12px;
}

.wide {
    width: 100%;
}

.quote-form {
    display: grid;
    gap: 8px;
    padding: 24px;
}

.quote-form h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
}

.form-subtitle {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.quote-form label {
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: 6px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
    background: #ffffff;
    border: 1px solid rgba(84, 125, 219, 0.24);
    border-radius: 10px;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    outline: none;
    padding: 12px 13px;
}

.quote-form textarea {
    min-height: 126px;
    resize: vertical;
}

.quote-form input[type="text"]:focus,
.quote-form input[type="email"]:focus,
.quote-form input[type="tel"]:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(47, 132, 255, 0.14);
}

.service-boxes {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-box {
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(84, 125, 219, 0.28);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.service-box input[type="checkbox"] {
    accent-color: var(--brand);
    height: 16px;
    margin: 0;
    width: 16px;
}

.service-box span {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.service-box:has(input[type="checkbox"]:checked) {
    background: rgba(47, 132, 255, 0.1);
    border-color: rgba(47, 132, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(47, 132, 255, 0.12);
}

.form-note {
    color: #2f84ff;
    font-size: 0.88rem;
    font-weight: 700;
    min-height: 20px;
}

.site-footer {
    background: rgba(246, 250, 255, 0.95);
    border-top: 1px solid rgba(84, 125, 219, 0.24);
    margin-top: 24px;
    padding: 42px 0 20px;
}

.footer-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1.2fr 0.8fr 1fr;
}

.footer-brand {
    margin-bottom: 10px;
}

.footer-brand .brand-logo-full {
    height: 66px;
    max-width: min(72vw, 390px);
}

.footer-copy {
    color: var(--ink-soft);
    max-width: 440px;
}

.site-footer h3 {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-links {
    display: grid;
    gap: 6px;
    list-style: none;
}

.footer-links a {
    color: #51678f;
    font-weight: 700;
}

.social-links {
    display: grid;
    gap: 9px;
}

.social-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(84, 125, 219, 0.3);
    border-radius: 12px;
    color: var(--ink);
    display: flex;
    gap: 10px;
    min-height: 52px;
    padding: 8px 10px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.social-link:hover {
    border-color: rgba(47, 132, 255, 0.56);
    box-shadow: var(--shadow-neon);
    transform: translateY(-1px);
}

.social-icon {
    align-items: center;
    background: rgba(47, 132, 255, 0.1);
    border-radius: 10px;
    display: inline-flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.social-icon svg {
    fill: #2f84ff;
    height: 18px;
    width: 18px;
}

.social-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.social-name {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
}

.social-handle {
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.copyright {
    color: #7388ad;
    font-size: 0.85rem;
    margin-top: 22px;
    text-align: center;
}

.floating-call {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-radius: 999px;
    bottom: 18px;
    box-shadow: 0 14px 24px rgba(47, 132, 255, 0.34);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 12px 15px;
    position: fixed;
    right: 18px;
    z-index: 180;
}

.tilt-ready {
    perspective: 1000px;
    transform-style: preserve-3d;
    will-change: transform;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .site-header {
        z-index: 1200;
    }

    .nav {
        min-height: 80px;
        padding-right: 0;
    }

    .desktop-call {
        display: none;
    }

    .brand-logo-full {
        height: 64px;
    }

    .menu-toggle {
        align-items: center;
        display: inline-flex;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(84, 125, 219, 0.42);
        border-radius: 999px;
        box-shadow: 0 10px 22px rgba(20, 47, 96, 0.22);
        height: 44px;
        justify-content: center;
        padding: 0;
        position: relative;
        top: 0;
        transform: none;
        width: 44px;
        z-index: 1202;
    }

    .menu-toggle span {
        width: 20px;
    }

    .menu-toggle[aria-expanded="true"] {
        background: linear-gradient(135deg, var(--brand), var(--brand-2));
        border-color: rgba(47, 132, 255, 0.85);
    }

    .menu-toggle[aria-expanded="true"] span {
        background: #ffffff;
    }

    .nav-links {
        backdrop-filter: blur(12px);
        background: rgba(250, 252, 255, 0.98);
        border: 1px solid rgba(84, 125, 219, 0.28);
        border-top: 0;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 16px 30px rgba(20, 47, 96, 0.2);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        left: 0;
        padding: 14px 20px 18px;
        position: absolute;
        right: 0;
        top: 100%;
        display: none;
        justify-content: flex-start;
        width: 100%;
        z-index: 1201;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(84, 125, 219, 0.3);
        border-radius: 12px;
        display: block;
        font-size: 0.98rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        padding: 10px 14px;
        text-align: center;
        transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: linear-gradient(135deg, rgba(47, 132, 255, 0.2), rgba(90, 100, 255, 0.2));
        border-color: rgba(47, 132, 255, 0.56);
        color: var(--ink);
    }

    .mobile-call {
        display: block;
        margin-top: 8px;
    }
}

@media (max-width: 980px) {
    .hero {
        padding-top: 68px;
    }

    .hero-layout,
    .video-grid,
    .place-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .video-shell,
    .place-visual {
        min-height: 280px;
    }

    .floating-call {
        bottom: 14px;
        right: 14px;
    }

    .review-slider .review-card {
        flex-basis: min(290px, calc(100vw - 72px));
    }
}

@media (max-width: 640px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .nav {
        min-height: 74px;
    }

    .site-header .brand-mark {
        height: auto;
        width: auto;
    }

    .site-header .brand-logo-full {
        display: block;
        height: 56px;
        max-width: min(84vw, 360px);
    }

    .footer-brand .brand-logo-full {
        height: 52px;
    }

    .section,
    .page-hero {
        padding: 56px 0 32px;
    }

    .cta-band {
        padding-bottom: 58px;
    }

    .place-visual {
        min-height: 250px;
    }
}
