:root {
    --color-primary: #1f4ab8;
    --color-secondary: #0f78d1;
    --color-tertiary: #00a6d9;
    --color-dark: #0f1a2a;
    --color-muted: #5a6a85;
    --color-border: rgba(15, 26, 42, 0.12);
    --color-surface: rgba(255, 255, 255, 0.65);
    --color-light: #f8fafc;
    --gradient-hero: linear-gradient(135deg, rgba(31, 74, 184, 0.95), rgba(0, 166, 217, 0.85));
    --shadow-soft: 0 20px 45px rgba(15, 26, 42, 0.12);
    --shadow-lift: 0 10px 30px rgba(15, 26, 42, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --space-xxs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.75rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    --transition: all 0.35s ease;
    --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max-width: 1200px;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover,
a:focus {
    color: var(--color-secondary);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-muted);
    font-size: clamp(1rem, 1vw + 0.9rem, 1.125rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin: 0 0 var(--space-sm);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 3vw + 2rem, 3.75rem);
}

h2 {
    font-size: clamp(1.75rem, 2vw + 1.2rem, 2.5rem);
}

h3 {
    font-size: clamp(1.45rem, 1.4vw + 1rem, 1.9rem);
}

h4 {
    font-size: clamp(1.25rem, 1vw + 0.9rem, 1.5rem);
}

ul,
ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--color-muted);
}

li + li {
    margin-top: var(--space-xs);
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: var(--space-xl) 0;
}

.section.compact {
    padding: var(--space-lg) 0;
}

.section-header {
    max-width: 750px;
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    margin-bottom: 0;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(31, 74, 184, 0.28);
    min-width: 44px;
    min-height: 44px;
}

.btn:hover,
.btn:focus,
button.btn:hover,
button.btn:focus {
    background: var(--color-secondary);
    box-shadow: 0 14px 35px rgba(15, 120, 209, 0.32);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(15, 26, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-light:hover,
.btn-light:focus {
    background: var(--color-light);
    color: var(--color-secondary);
}

.btn-link {
    background: transparent;
    color: var(--color-primary);
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.btn-small {
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
}

main {
    flex: 1;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 24px rgba(15, 26, 42, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    gap: var(--space-md);
}

.logo {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
}

.logo:hover,
.logo:focus {
    color: var(--color-secondary);
}

.nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(31, 74, 184, 0.35);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-dark);
    position: relative;
    transition: var(--transition);
}

.nav-toggle span::before {
    position: absolute;
    top: -6px;
}

.nav-toggle span::after {
    position: absolute;
    top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-md);
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.3rem 0;
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.page-hero {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(150% 150% at 50% 0%, rgba(31, 74, 184, 0.18), transparent 60%);
    opacity: 0.75;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero.homepage-hero {
    background: var(--gradient-hero);
    color: #fff;
    padding: var(--space-xxl) 0;
}

.page-hero.homepage-hero::before {
    background: radial-gradient(140% 90% at 10% 10%, rgba(255, 255, 255, 0.35), transparent 60%);
    opacity: 1;
}

.page-hero.homepage-hero h1,
.page-hero.homepage-hero p,
.page-hero.homepage-hero a {
    color: #fff;
}

.page-hero.inner-hero {
    background: linear-gradient(140deg, rgba(248, 250, 252, 1), rgba(31, 74, 184, 0.08));
}

.page-hero.inner-hero::before {
    opacity: 0.35;
}

.page-hero.inner-hero .hero-eyebrow {
    color: var(--color-primary);
}

.hero-container {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.page-hero.inner-hero .hero-eyebrow {
    color: var(--color-primary);
}

.hero-highlight {
    font-size: clamp(1.1rem, 1vw + 1rem, 1.35rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.35rem);
    color: var(--color-muted);
    max-width: 650px;
    margin: 0;
}

.page-hero.homepage-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-trust {
    display: grid;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.65rem 1.15rem;
    backdrop-filter: blur(8px);
    font-weight: 500;
}

.hero-trust-item::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    filter: blur(0);
    z-index: 0;
}

.hero-media .glass-card {
    position: relative;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    z-index: 1;
}

.hero-media img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lift);
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid.featured-grid {
    margin-top: var(--space-xl);
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(31, 74, 184, 0.18), rgba(255, 255, 255, 0)) border-box;
    mask: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff);
    mask-composite: exclude;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 26, 42, 0.18);
}

.card h3 {
    margin-bottom: var(--space-xs);
}

.card p {
    margin-bottom: 0;
}

.card .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.metrics-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.metric-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
}

.metric-card strong {
    display: block;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-sm);
}

.list-clean li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.list-clean li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 0.6rem;
    border-radius: 50%;
    background: var(--color-secondary);
    flex-shrink: 0;
}

.highlight-panel {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(31, 74, 184, 0.08), rgba(15, 120, 209, 0.15));
    border: 1px solid rgba(31, 74, 184, 0.15);
    box-shadow: var(--shadow-soft);
}

.cta-banner {
    background: linear-gradient(135deg, rgba(31, 74, 184, 0.94), rgba(0, 166, 217, 0.88));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: #fff;
    display: grid;
    gap: var(--space-md);
    box-shadow: 0 30px 60px rgba(15, 26, 42, 0.22);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 55%);
    pointer-events: none;
}

.cta-banner h2,
.cta-banner p {
    color: #fff;
    margin: 0;
}

.testimonial-grid {
    display: grid;
    gap: var(--space-md);
}

.testimonial {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
    position: relative;
}

.testimonial::before {
    content: "“";
    font-size: 4rem;
    color: rgba(31, 74, 184, 0.18);
    position: absolute;
    top: -20px;
    left: 20px;
}

.testimonial cite {
    display: block;
    margin-top: var(--space-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.insight-grid {
    display: grid;
    gap: var(--space-md);
}

.insight-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 26, 42, 0.18);
}

.insight-card .meta {
    display: flex;
    gap: var(--space-xs);
    font-size: 0.92rem;
    color: var(--color-muted);
}

.split-layout {
    display: grid;
    gap: var(--space-lg);
    align-items: start;
}

.process-steps {
    counter-reset: step-counter;
    display: grid;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-steps li {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
    position: relative;
    padding-left: calc(var(--space-lg) + 1.5rem);
}

.process-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: 50%;
    left: var(--space-md);
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
}

form {
    display: grid;
    gap: var(--space-md);
}

.form-group {
    display: grid;
    gap: var(--space-xs);
}

label {
    font-weight: 600;
    color: var(--color-dark);
}

input,
select,
textarea {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 26, 42, 0.15);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.98);
    transition: var(--transition);
    font-family: var(--font-body);
    color: var(--color-dark);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(31, 74, 184, 0.15);
    outline: none;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

address {
    font-style: normal;
    color: var(--color-muted);
}

.contact-details {
    display: grid;
    gap: var(--space-sm);
}

.contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
}

.site-footer {
    background: #061020;
    color: rgba(255, 255, 255, 0.82);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    gap: var(--space-lg);
}

.footer-top {
    display: grid;
    gap: var(--space-lg);
}

.footer-brand {
    display: grid;
    gap: var(--space-sm);
    max-width: 380px;
}

.footer-nav {
    display: grid;
    gap: var(--space-sm);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: #fff;
}

.footer-contact {
    display: grid;
    gap: var(--space-xs);
}

.footer-contact strong {
    color: #fff;
    font-size: 1rem;
}

.footer-hours {
    display: grid;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-hours strong {
    color: #fff;
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--space-lg);
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: var(--space-sm);
    right: var(--space-sm);
    max-width: 360px;
    background: rgba(6, 16, 32, 0.95);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(6, 16, 32, 0.25);
    z-index: 9999;
    backdrop-filter: blur(12px);
    display: grid;
    gap: var(--space-sm);
    transition: var(--transition);
}

.cookie-banner.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: #9cc7ff;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.cookie-banner .btn {
    box-shadow: none;
    min-height: 40px;
    padding: 0.65rem 1.3rem;
}

.table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(15, 26, 42, 0.1);
}

th {
    background: rgba(31, 74, 184, 0.08);
    color: var(--color-dark);
    font-weight: 700;
}

blockquote {
    margin: 0;
    padding-left: var(--space-md);
    border-left: 4px solid var(--color-primary);
    color: var(--color-muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(31, 74, 184, 0.12);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.timeline {
    position: relative;
    padding-left: var(--space-xl);
    display: grid;
    gap: var(--space-lg);
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 16px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 74, 184, 0.65), rgba(0, 166, 217, 0.4));
}

.timeline-item {
    position: relative;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(31, 74, 184, 0.2);
}

.team-grid {
    display: grid;
    gap: var(--space-md);
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
    text-align: left;
}

.team-card h3 {
    margin-bottom: 0.3rem;
}

.team-card span {
    display: block;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}

.animate-float {
    animation: floatPulse 6s ease-in-out infinite;
}

@keyframes floatPulse {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.faq-list {
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
}

.legal-section {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 26, 42, 0.05);
    margin-bottom: var(--space-md);
}

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

.legal-section h2 {
    margin-bottom: var(--space-xs);
}

.legal-section p + p {
    margin-top: var(--space-xs);
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid.featured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .metrics-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .cookie-banner {
        bottom: var(--space-md);
        right: var(--space-md);
    }
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 1023px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: var(--space-sm);
        left: var(--space-sm);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        background: rgba(248, 250, 252, 0.98);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(31, 74, 184, 0.12);
        transition: var(--transition);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .site-nav[data-visible="false"] {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
    }

    .site-nav[data-visible="true"] {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: var(--space-xl) 0;
    }

    .card,
    .metric-card,
    .testimonial,
    .team-card,
    .form-card,
    .highlight-panel {
        padding: var(--space-md);
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .cta-banner {
        padding: var(--space-lg);
    }

    .footer-bottom {
        align-items: flex-start;
    }
}