/* Font Face Definitions */
@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Theme Tokens */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #0b1220;
    --accent-color: #22d3ee;
    --text-color: #111827;
    --bg-light: #f6f7ff;
    --white: #ffffff;
    --border-color: rgba(15, 23, 42, 0.12);
    --font-main: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 14px 44px rgba(15, 23, 42, 0.10);
    --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.16);

    --ease-out: cubic-bezier(0.21, 0.8, 0.32, 1);
    --ease-spring: cubic-bezier(0.2, 1, 0.2, 1);

    --container: 1200px;
    --section-pad: clamp(64px, 6vw, 96px);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.65;
    background:
        radial-gradient(900px 600px at 15% 0%, rgba(34, 211, 238, 0.18), transparent 60%),
        radial-gradient(1000px 700px at 90% -10%, rgba(99, 102, 241, 0.16), transparent 60%),
        linear-gradient(180deg, #f8f9ff 0%, #f1f5ff 45%, #f8f9ff 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(700px 500px at var(--mx, 55vw) var(--my, 18vh), rgba(99, 102, 241, 0.14), transparent 60%),
        radial-gradient(540px 420px at calc(var(--mx, 55vw) - 18vw) calc(var(--my, 18vh) + 22vh), rgba(34, 211, 238, 0.14), transparent 62%),
        radial-gradient(520px 420px at calc(var(--mx, 55vw) + 20vw) calc(var(--my, 18vh) + 28vh), rgba(244, 114, 182, 0.10), transparent 60%);
    filter: blur(36px);
    opacity: 0.9;
    transform: translate3d(0, 0, 0);
    animation: ambientFloat 18s var(--ease-out) infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.08) 1px, transparent 0);
    background-size: 26px 26px;
    opacity: 0.22;
}

@keyframes ambientFloat {
    from {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
    }

    to {
        transform: translate3d(1.5%, 1.5%, 0) scale(1.06);
    }
}

::selection {
    background: rgba(34, 211, 238, 0.25);
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    color: rgba(15, 23, 42, 0.82);
}

/* Motion Helpers */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(10px);
    transition:
        opacity 0.9s var(--ease-out),
        transform 0.9s var(--ease-out),
        filter 0.9s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

[data-reveal].is-inview {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.fade-in {
    animation: fadeIn 0.55s var(--ease-out) both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 247, 255, 0.76);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: var(--scroll-progress, 0%);
    background: linear-gradient(90deg, rgba(34, 211, 238, 1), rgba(99, 102, 241, 1), rgba(244, 114, 182, 1));
    opacity: 0.95;
    transform: translateZ(0);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
    gap: 18px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
    user-select: none;
    white-space: nowrap;
}

.logo .highlight {
    background: linear-gradient(90deg, rgba(99, 102, 241, 1), rgba(34, 211, 238, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-header nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.site-header nav a,
.site-header nav button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-pill);
    font-weight: 650;
    color: rgba(11, 18, 32, 0.92);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition:
        transform 0.2s var(--ease-out),
        background-color 0.2s var(--ease-out),
        color 0.2s var(--ease-out);
}

.site-header nav a:hover,
.site-header nav button:hover {
    background: rgba(99, 102, 241, 0.10);
    transform: translateY(-1px);
}

.site-header nav a:focus-visible,
.site-header nav button:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.35);
    outline-offset: 2px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.2s var(--ease-spring);
}

.nav-toggle:hover {
    transform: translateY(-1px);
}

.nav-toggle .bars {
    width: 18px;
    height: 2px;
    background: rgba(11, 18, 32, 0.92);
    border-radius: 999px;
    position: relative;
    margin: 0 auto;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: rgba(11, 18, 32, 0.92);
    border-radius: 999px;
    transition: transform 0.22s var(--ease-spring), top 0.22s var(--ease-spring), opacity 0.2s var(--ease-spring);
}

.nav-toggle .bars::before {
    top: -6px;
}

.nav-toggle .bars::after {
    top: 6px;
}

html.nav-open .nav-toggle .bars {
    background: transparent;
}

html.nav-open .nav-toggle .bars::before {
    top: 0;
    transform: rotate(45deg);
}

html.nav-open .nav-toggle .bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.50);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s var(--ease-out);
    z-index: 900;
}

html.nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 240px;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition:
        opacity 0.22s var(--ease-out),
        transform 0.22s var(--ease-out);
    z-index: 1100;
}

.dropdown-content a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(11, 18, 32, 0.92);
    font-weight: 600;
    transition: background-color 0.18s var(--ease-out), color 0.18s var(--ease-out);
}

.dropdown-content a:hover {
    background: rgba(34, 211, 238, 0.14);
    color: rgba(11, 18, 32, 0.98);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown.open .dropdown-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Common Sections */
section {
    padding: var(--section-pad) 0;
}

h2 {
    font-size: clamp(1.85rem, 2.6vw, 2.35rem);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 14px;
}

.section-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 46px;
    font-size: 1.12rem;
    color: rgba(15, 23, 42, 0.68);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    padding: clamp(92px, 10vw, 140px) 0 clamp(70px, 7vw, 110px);
    text-align: center;
    background:
        radial-gradient(1000px 600px at 15% 0%, rgba(34, 211, 238, 0.35), transparent 60%),
        radial-gradient(1000px 700px at 90% -10%, rgba(99, 102, 241, 0.35), transparent 65%),
        linear-gradient(135deg, #050b17 0%, #0a1638 55%, #0a0b2b 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.35), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.40), transparent 58%),
        radial-gradient(circle at 50% 80%, rgba(244, 114, 182, 0.24), transparent 62%);
    filter: blur(44px);
    opacity: 0.9;
    animation: heroOrbs 14s var(--ease-out) infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.16;
    mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 68%);
    pointer-events: none;
}

@keyframes heroOrbs {
    from {
        transform: translate3d(-2%, -2%, 0) scale(1);
    }

    to {
        transform: translate3d(2%, 4%, 0) scale(1.08);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 4.4rem);
    letter-spacing: -0.05em;
    line-height: 1.02;
    margin-bottom: 18px;
    color: #ffffff;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(34, 211, 238, 1), rgba(99, 102, 241, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    opacity: 0.92;
    margin: 0 auto 36px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.06rem;
    color: rgba(11, 18, 32, 0.92);
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 1) 0%, rgba(34, 211, 238, 1) 100%);
    box-shadow:
        0 18px 45px rgba(99, 102, 241, 0.28),
        0 14px 40px rgba(34, 211, 238, 0.18);
    transform: translateZ(0);
    transition:
        transform 0.28s var(--ease-spring),
        box-shadow 0.28s var(--ease-spring),
        filter 0.28s var(--ease-spring);
}

.cta-button::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(400px 160px at 0% 0%, rgba(255, 255, 255, 0.65), transparent 55%);
    opacity: 0.22;
    mix-blend-mode: overlay;
    transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
    box-shadow:
        0 26px 80px rgba(99, 102, 241, 0.32),
        0 20px 70px rgba(34, 211, 238, 0.22);
}

.cta-button:hover::after {
    opacity: 0.35;
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Comparison Table */
.comparison-section {
    position: relative;
}

.comparison-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 300px at 20% 0%, rgba(34, 211, 238, 0.18), transparent 60%),
        radial-gradient(900px 300px at 80% 100%, rgba(99, 102, 241, 0.14), transparent 60%);
    opacity: 0.7;
}

.comparison-section .container {
    position: relative;
    z-index: 1;
}

.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)) padding-box,
        linear-gradient(135deg, rgba(34, 211, 238, 0.7), rgba(99, 102, 241, 0.7), rgba(244, 114, 182, 0.55)) border-box;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(14px);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    vertical-align: middle;
}

.comparison-table th {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: rgba(15, 23, 42, 0.72);
    background: rgba(15, 23, 42, 0.04);
}

.comparison-table tbody tr {
    transition: background-color 0.22s var(--ease-out);
}

.comparison-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.06);
}

.company-name {
    font-weight: 900;
    color: rgba(11, 18, 32, 0.92);
    font-size: 1.05rem;
}

.stars {
    color: #f59e0b;
    letter-spacing: 1px;
    filter: drop-shadow(0 6px 18px rgba(245, 158, 11, 0.18));
}

.quote-btn {
    position: relative;
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 1), rgba(34, 211, 238, 1));
    color: rgba(11, 18, 32, 0.92);
    border: 0;
    padding: 10px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s var(--ease-spring), filter 0.2s var(--ease-spring);
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.20);
}

.quote-btn:hover {
    transform: translateY(-1px);
    filter: saturate(1.05);
}

.quote-btn:active {
    transform: translateY(0);
}

/* Map */
.map-section p {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: rgba(15, 23, 42, 0.68);
    font-size: 1.08rem;
}

#map {
    height: 520px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-top: 30px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.info-card {
    position: relative;
    padding: 26px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)) padding-box,
        linear-gradient(135deg, rgba(34, 211, 238, 0.65), rgba(99, 102, 241, 0.65), rgba(244, 114, 182, 0.45)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift: 0px;
    transition: transform 0.24s var(--ease-spring), box-shadow 0.24s var(--ease-spring);
    transform: perspective(900px) translateY(var(--lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    will-change: transform;
}

.info-card:hover {
    --lift: -4px;
    box-shadow: var(--shadow-xl);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: rgba(11, 18, 32, 0.92);
}

.info-card p {
    color: rgba(15, 23, 42, 0.75);
}

/* Content Pages */
.hero-page {
    position: relative;
    overflow: hidden;
    padding: clamp(92px, 10vw, 140px) 0 clamp(70px, 7vw, 110px);
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    background:
        radial-gradient(1000px 600px at 15% 0%, rgba(34, 211, 238, 0.34), transparent 60%),
        radial-gradient(1000px 700px at 90% -10%, rgba(99, 102, 241, 0.34), transparent 65%),
        linear-gradient(135deg, #050b17 0%, #0a1638 55%, #0a0b2b 100%);
}

.hero-page::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.32), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.38), transparent 58%),
        radial-gradient(circle at 50% 80%, rgba(244, 114, 182, 0.22), transparent 62%);
    filter: blur(44px);
    opacity: 0.9;
    animation: heroOrbs 16s var(--ease-out) infinite alternate;
}

.hero-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.14;
    mask-image: radial-gradient(circle at 50% 18%, black 0%, transparent 70%);
    pointer-events: none;
}

.hero-page h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 14px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-page p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
}

.content-section {
    position: relative;
}

.article-content {
    max-width: 940px;
    margin: 0 auto;
    padding: clamp(24px, 3vw, 44px);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(12px);
}

.article-content h2 {
    text-align: left;
    margin-top: 44px;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    color: rgba(11, 18, 32, 0.94);
    padding-bottom: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    margin-top: 34px;
    font-size: 1.4rem;
    color: rgba(79, 70, 229, 1);
    margin-bottom: 14px;
    font-weight: 800;
}

.article-content h4 {
    margin-top: 26px;
    font-size: 1.18rem;
    color: rgba(11, 18, 32, 0.92);
    margin-bottom: 12px;
    font-weight: 800;
}

.article-content p {
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: rgba(15, 23, 42, 0.82);
    line-height: 1.85;
}

.article-content ul {
    list-style: none;
    margin: 0 0 26px;
    display: grid;
    gap: 12px;
}

.article-content li {
    color: rgba(15, 23, 42, 0.78);
    font-size: 1.06rem;
    padding-left: 28px;
    position: relative;
}

.article-content li::before {
    content: "•";
    color: rgba(99, 102, 241, 1);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.2;
    font-size: 1.35em;
}

.highlight-box {
    background:
        linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)) padding-box,
        linear-gradient(135deg, rgba(34, 211, 238, 0.65), rgba(99, 102, 241, 0.65), rgba(244, 114, 182, 0.45)) border-box;
    border: 1px solid transparent;
    padding: 26px;
    margin: 34px 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 22px;
    margin-bottom: 10px;
}

.feature-card {
    background:
        linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)) padding-box,
        linear-gradient(135deg, rgba(99, 102, 241, 0.55), rgba(34, 211, 238, 0.55)) border-box;
    border: 1px solid transparent;
    padding: 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift: 0px;
    transition: transform 0.24s var(--ease-spring), box-shadow 0.24s var(--ease-spring);
    transform: perspective(900px) translateY(var(--lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-card:hover {
    --lift: -4px;
    box-shadow: var(--shadow-xl);
}

.feature-card h3 {
    color: rgba(11, 18, 32, 0.92);
    margin-bottom: 12px;
    font-size: 1.25rem;
    margin-top: 0;
}

/* Tables in Content */
.content-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 34px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.9);
}

.content-table th,
.content-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.content-table th {
    background: rgba(11, 18, 32, 0.92);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}

.content-table tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.02);
}

/* Formula */
.formula-box {
    background: rgba(11, 18, 32, 0.92);
    color: rgba(255, 255, 255, 0.86);
    padding: 18px 18px;
    border-radius: var(--radius-md);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    text-align: center;
    margin: 26px 0;
    font-size: 1.12rem;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Footer */
footer {
    background: rgba(11, 18, 32, 0.96);
    color: rgba(148, 163, 184, 0.92);
    padding: 46px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer p {
    color: inherit;
}

footer a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(148, 163, 184, 0.5);
    text-underline-offset: 4px;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.92);
    text-decoration-color: rgba(255, 255, 255, 0.75);
}

/* Legal Pages */
.privacy-content,
.glass-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(12px);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(24px, 3vw, 44px);
}

.privacy-content h1 {
    color: rgba(11, 18, 32, 0.94);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.privacy-content h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.privacy-content p,
.privacy-content li {
    color: rgba(15, 23, 42, 0.78);
}

.privacy-content ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin-bottom: 1rem;
    display: block;
}

.impressum-section {
    padding: 120px 0 80px;
}

.impressum-wrapper {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.glass-card {
    padding: clamp(24px, 3vw, 44px);
}

.site-header nav .lang-toggle {
    background: transparent;
    border: 1px solid rgba(11, 18, 32, 0.40);
    border-radius: 14px;
    padding: 8px 14px;
    cursor: pointer;
    font: inherit;
    color: rgba(11, 18, 32, 0.92);
    transition: all 0.18s var(--ease-out);
}

.site-header nav .lang-toggle:hover {
    background: rgba(99, 102, 241, 0.10);
    border-color: rgba(99, 102, 241, 0.35);
    color: rgba(11, 18, 32, 0.98);
}

/* View Transitions (supported browsers only) */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.6s;
    animation-timing-function: var(--ease-out);
}

::view-transition-old(root) {
    animation-name: vt-out;
}

::view-transition-new(root) {
    animation-name: vt-in;
}

@keyframes vt-out {
    from {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(10px);
    }
}

@keyframes vt-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Responsive */
@media (max-width: 920px) {
    html {
        scroll-padding-top: 86px;
    }

    .site-header nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: min(420px, 92vw);
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(18px);
        border-left: 1px solid rgba(15, 23, 42, 0.10);
        box-shadow: var(--shadow-xl);
        padding: 92px 16px 22px;
        transform: translateX(110%);
        transition: transform 0.32s var(--ease-spring);
        z-index: 1105;
    }

    html.nav-open .site-header nav {
        transform: translateX(0);
    }

    html.nav-open,
    html.nav-open body {
        overflow: hidden;
    }

    .site-header nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .site-header nav a,
    .site-header nav button {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        transform: none;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .dropdown-content {
        position: static;
        min-width: 0;
        padding: 4px 0 0 10px;
        border: 0;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }
}

@media (max-width: 640px) {
    .comparison-table th,
    .comparison-table td {
        padding: 14px 14px;
    }

    #map {
        height: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body::before {
        animation: none;
    }

    .hero::before,
    .hero-page::before {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .cta-button,
    .quote-btn,
    .feature-card,
    .info-card,
    .site-header nav a,
    .site-header nav button {
        transition: none;
    }
}

@supports (scrollbar-color: auto) {
    * {
        scrollbar-color: rgba(99, 102, 241, 0.55) rgba(15, 23, 42, 0.10);
        scrollbar-width: thin;
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.08);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.7), rgba(34, 211, 238, 0.7));
    border-radius: 999px;
    border: 3px solid rgba(15, 23, 42, 0.08);
}
