/* Fonts: Inter + Poppins */
:root {
    --primary-600: #0050a5;
    --primary-500: #00a0f2;
    --primary-700: #004990;
    --bg-50: #f8fafd;
    --bg-75: #f1f1f1;
    --text-900: #0b1220;
    --text-700: #1a2332;
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-brd: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 10px 30px rgba(0, 34, 85, 0.15);
    --ring-blue: rgba(0,160,242,0.18);
    --ring-strong: rgba(0,80,165,0.35);
}

* { box-sizing: border-box; }
html, body { min-height: 100vh; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--text-900);
    background: radial-gradient(1200px 800px at 20% -10%, #eaf6ff 0%, #f8fbff 35%, #f8fafd 60%, #f7f5f2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.loading { overflow: hidden; }

/* Custom Scrollbar - Liquidglass Style */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(248,250,253,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 1px solid rgba(255,255,255,0.3);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(0,160,242,0.6) 0%, rgba(0,80,165,0.7) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,80,165,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: background 300ms ease, box-shadow 300ms ease;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(0,160,242,0.75) 0%, rgba(0,80,165,0.85) 100%);
    box-shadow: 0 4px 12px rgba(0,80,165,0.3), inset 0 1px 0 rgba(255,255,255,0.5);
}
::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, rgba(0,80,165,0.8) 0%, rgba(0,50,133,0.9) 100%);
}
/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,160,242,0.6) rgba(248,250,253,0.4);
}

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(1200px 800px at 20% -10%, #eaf6ff 0%, #f8fbff 35%, #f8fafd 60%, #f7f5f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), visibility 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.loader-logo {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    animation: logo-float 3s ease-in-out infinite;
    filter: drop-shadow(0 12px 32px rgba(0, 122, 204, 0.4));
}
@keyframes logo-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-12px) rotate(-5deg); }
}

/* Fade-in for page elements */
body.loading .site-header,
body.loading .hero,
body.loading .services,
body.loading .about,
body.loading .contact,
body.loading .site-footer,
body.loading .legal-section {
    opacity: 0;
    transform: translateY(20px);
}
.site-header,
.hero,
.services,
.about,
.contact,
.site-footer,
.legal-section {
    transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header { transition-delay: 100ms; }
.hero { transition-delay: 200ms; }
.services { transition-delay: 300ms; }
.about { transition-delay: 400ms; }
.contact { transition-delay: 500ms; }
.site-footer { transition-delay: 600ms; }
.legal-section { transition-delay: 200ms; }

/* Improve touch scrolling */
@media (max-width: 900px) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
    padding: 0 clamp(16px, 2.5vw, 32px);
}

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        width: min(1280px, 90vw);
        padding: 0 48px;
    }
}

/* Extra Large Screens */
@media (min-width: 1920px) {
    .container {
        width: min(1400px, 85vw);
    }
}

/* Background FX layer */
.bg-canvas { position: fixed; inset: 0; z-index: -2; min-height: 100vh; }
#fx-canvas { width: 100%; height: 100%; min-height: 100vh; display: block; filter: blur(0.2px) saturate(110%); }
.gradient-overlay {
    position: absolute; inset: 0; min-height: 100vh; pointer-events: none; z-index: -1;
    background: radial-gradient(850px 520px at 80% 10%, rgba(0,160,242,0.18), transparent 60%),
                radial-gradient(720px 420px at 20% 80%, rgba(0,80,165,0.12), transparent 60%),
                radial-gradient(900px 500px at 50% 95%, rgba(255,185,122,0.22), transparent 65%),
                linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.15) 40%, rgba(247,245,242,0.3) 85%, rgba(247,245,242,0.35) 100%);
}
.noise-overlay { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04; mix-blend-mode: soft-light; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.95" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.4"/></svg>'); }

/* Header */
.site-header { position: sticky; top: 20px; z-index: 10; padding: 0; margin-bottom: -80px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 28px; background: rgba(255,255,255,0.42); border: 1px solid rgba(255,255,255,0.5); border-radius: 18px; backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); box-shadow: 0 10px 40px rgba(0,80,165,0.12), inset 0 1px 0 rgba(255,255,255,0.6); max-width: min(1200px, 94vw); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-900); transition: transform 200ms ease; }
.brand:hover { transform: scale(1.02); }
.brand .logo { width: clamp(36px, 4vw, 48px); height: clamp(36px, 4vw, 48px); filter: drop-shadow(0 8px 20px rgba(0, 122, 204, 0.4)); transition: filter 200ms ease, transform 200ms ease; object-fit: contain; }
.brand:hover .logo { filter: drop-shadow(0 10px 24px rgba(0, 122, 204, 0.5)); transform: scale(1.05); }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a:not(.btn) { text-decoration: none; color: var(--text-700); font-weight: 600; padding: 8px 14px; border-radius: 10px; font-size: 14px; position: relative; transition: color 240ms ease; }
.main-nav > a:not(.btn)::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.6); border-radius: inherit; opacity: 0; transform: scale(0.92); transition: opacity 240ms ease, transform 240ms ease; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; bottom: 4px; left: 50%; width: 0; height: 1.5px; background: linear-gradient(90deg, var(--primary-500), var(--primary-600)); border-radius: 999px; transform: translateX(-50%); transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1); }
.main-nav > a:not(.btn):hover { color: var(--text-900); }
.main-nav > a:not(.btn):hover::before { opacity: 1; transform: scale(1); }
.main-nav > a:not(.btn):hover::after { width: calc(100% - 20px); }
.main-nav .btn { font-size: 15px; padding: 10px 20px; min-height: 40px; }

/* Hamburger Menu */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; padding: 0; gap: 6px; position: relative; z-index: 1001; transition: transform 200ms ease; }
.mobile-menu-toggle:hover { transform: scale(1.05); }
.mobile-menu-toggle:focus { outline: 2px solid var(--primary-500); outline-offset: 2px; border-radius: 8px; }
.hamburger-line { width: 24px; height: 2.5px; background: var(--text-900); border-radius: 2px; transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); transform-origin: center; pointer-events: none; }
.mobile-menu-toggle[aria-expanded="true"] { z-index: 1001; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Tablet */
@media (max-width: 900px) and (min-width: 681px) {
    .container { width: min(94vw, 900px); padding: 0 clamp(20px, 3vw, 32px); }
    .header-inner { padding: clamp(14px, 1.8vw, 18px) clamp(20px, 3vw, 28px); }
    .hero { min-height: 60vh; padding-top: clamp(100px, 12vw, 140px); }
    .services { margin-top: -20px; padding-top: clamp(80px, 10vw, 110px); }
    .section-header { margin-bottom: clamp(32px, 4vw, 44px); }
    .card-grid { grid-template-columns: 1fr !important; gap: clamp(20px, 3vw, 24px); }
    .card { grid-column: span 1 !important; width: 100%; padding: clamp(28px, 4vw, 36px); }
    .card h3 { font-size: clamp(22px, 3vw, 26px); }
    .card p { font-size: clamp(15px, 2vw, 17px); line-height: 1.6; }
    .card .icon { width: clamp(48px, 5vw, 56px); height: clamp(48px, 5vw, 56px); }
    .about-content { padding: clamp(32px, 4vw, 44px); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-content { padding: clamp(32px, 4vw, 44px); }
    .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px); }
    .footer-nav { gap: clamp(6px, 1vw, 10px); }
    .footer-nav a { font-size: clamp(13px, 1.6vw, 14px); padding: clamp(8px, 1.2vw, 10px) clamp(12px, 1.8vw, 16px); }
}

/* Mobile */
@media (max-width: 680px) {
    .container { width: 92vw; padding: 0 clamp(16px, 3vw, 24px); }
    .site-header { top: 12px; margin-bottom: -70px; z-index: 1000; }
    .header-inner { flex-direction: row; gap: 16px; padding: clamp(14px, 2vw, 18px) clamp(16px, 2.5vw, 24px); position: relative; }
    .mobile-menu-toggle { display: flex; min-width: 44px; min-height: 44px; }
    .main-nav { position: fixed; top: 80px; right: 20px; width: min(320px, 85vw); max-height: calc(100vh - 120px); background: rgba(255,255,255,0.95); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); border: 1px solid rgba(255,255,255,0.8); border-radius: 20px; box-shadow: 0 20px 60px rgba(0,80,165,0.2), inset 0 1px 0 rgba(255,255,255,0.9); flex-direction: column; gap: 8px; padding: 20px; transform: translateX(calc(100% + 40px)); transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease; z-index: 1000; overflow-y: auto; -webkit-overflow-scrolling: touch; will-change: transform; visibility: hidden; pointer-events: none; opacity: 0; }
    .main-nav.active { transform: translateX(0); visibility: visible; pointer-events: all; opacity: 1; }
    .main-nav > a:not(.btn) { font-size: 15px; padding: 12px 16px; width: 100%; text-align: left; border-radius: 12px; background: transparent; border: none; box-shadow: none; display: block; position: relative; transition: background 200ms ease, color 200ms ease; }
    .main-nav > a:not(.btn)::before { display: block; background: rgba(0,160,242,0.1); border-radius: inherit; }
    .main-nav > a:not(.btn)::after { display: none; }
    .main-nav > a:not(.btn):hover, .main-nav > a:not(.btn):active { background: rgba(0,160,242,0.08); color: var(--text-900); }
    .main-nav .btn { font-size: 15px; padding: 12px 20px; width: 100%; margin-top: 4px; }
    .hero { padding: clamp(120px, 18vw, 160px) 0 clamp(48px, 7vw, 80px) 0; min-height: 65vh; }
    .hero-content { padding: 0 16px; }
    .card-grid { grid-template-columns: 1fr !important; gap: clamp(20px, 3vw, 24px); }
    .card { grid-column: span 1 !important; width: 100%; padding: clamp(28px, 4vw, 36px); }
    .card h3 { font-size: clamp(20px, 3vw, 24px); font-weight: 800; line-height: 1.3; margin-bottom: clamp(10px, 1.5vw, 14px); }
    .card p { font-size: clamp(15px, 2vw, 16px); line-height: 1.6; color: var(--text-700); }
    .card .icon { width: clamp(48px, 6vw, 56px); height: clamp(48px, 6vw, 56px); margin-bottom: clamp(14px, 2vw, 18px); }
    .footer-inner { flex-direction: column; text-align: center; gap: clamp(16px, 2vw, 20px); padding: clamp(20px, 3vw, 28px) clamp(18px, 2.5vw, 24px); }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: clamp(8px, 1.5vw, 12px); }
    .footer-nav a { font-size: clamp(13px, 1.6vw, 14px); padding: clamp(8px, 1.2vw, 10px) clamp(12px, 1.8vw, 16px); min-height: 44px; }
}

/* Mobile Landscape (Querformat) */
@media (max-width: 680px) and (orientation: landscape) {
    .site-header { margin-bottom: -40px; }
    .hero { padding: clamp(90px, 12vh, 120px) 0 clamp(32px, 5vw, 48px) 0; min-height: auto; }
    .hero-content { padding-top: clamp(20px, 3vh, 32px); }
    .badge { margin-top: clamp(12px, 1.5vh, 18px); margin-bottom: clamp(10px, 1.5vh, 14px); }
    .headline { font-size: clamp(28px, 5vw, 52px); margin-top: clamp(8px, 1vh, 12px); }
    .subheadline { font-size: clamp(14px, 1.8vw, 18px); margin-bottom: clamp(16px, 2.5vh, 24px); }
    .btn-cta { padding: 10px 20px; font-size: 14px; margin-top: clamp(8px, 1vh, 12px); }
    .section-header { margin-bottom: clamp(32px, 4vw, 40px); }
    .section-title { font-size: clamp(32px, 7vw, 48px); }
    .title-subtitle { font-size: clamp(15px, 2vw, 18px); }
    .card-grid { grid-template-columns: 1fr !important; gap: clamp(20px, 3vw, 24px); }
    .card { grid-column: span 1 !important; padding: clamp(28px, 4vw, 36px); width: 100%; }
    .card h3 { font-size: clamp(20px, 3vw, 24px); font-weight: 800; line-height: 1.3; margin-bottom: clamp(10px, 1.5vw, 14px); }
    .card p { font-size: clamp(15px, 2vw, 16px); line-height: 1.6; color: var(--text-700); }
    .card .icon { width: clamp(48px, 6vw, 56px); height: clamp(48px, 6vw, 56px); margin-bottom: clamp(14px, 2vw, 18px); }
    .footer-inner { flex-direction: column; text-align: center; gap: clamp(14px, 2vw, 18px); padding: clamp(20px, 3vw, 26px) clamp(18px, 2.5vw, 24px); }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: clamp(8px, 1.5vw, 12px); }
    .footer-nav a { font-size: clamp(12px, 1.5vw, 14px); padding: clamp(8px, 1.2vw, 10px) clamp(12px, 1.8vw, 16px); min-height: 44px; }
    .about-header { margin-bottom: clamp(24px, 3vw, 32px); }
    .about-content { padding: clamp(24px, 3vw, 32px); gap: clamp(24px, 3vw, 32px); }
    .about-intro { font-size: clamp(16px, 2vw, 19px); }
    .about-description { font-size: clamp(14px, 1.8vw, 17px); }
    .contact { padding: clamp(40px, 6vw, 64px) 0; }
    .contact-header { margin-bottom: clamp(28px, 4vw, 36px); }
    .contact-content { padding: clamp(20px, 3vw, 28px); }
    .contact-grid { gap: clamp(32px, 4vw, 40px); flex-direction: column; }
    .contact-form { margin-bottom: clamp(24px, 3vw, 32px); }
    .cf { gap: clamp(14px, 2vw, 18px); }
    .cf-field { gap: 6px; }
    .cf-label { font-size: 13px; }
    .cf-input, .cf-textarea { padding: 10px 14px; font-size: 15px; }
    .cf-textarea { min-height: 100px; }
    .contact-info { display: flex; flex-direction: column; gap: clamp(10px, 1.5vw, 14px); }
    .contact-info-card { padding: clamp(14px, 2vw, 18px) clamp(16px, 2.5vw, 20px); border-radius: 14px; display: flex; align-items: center; gap: clamp(10px, 1.5vw, 14px); min-height: auto; flex-wrap: wrap; }
    .contact-info-card > *:not(.contact-card-header) { flex: 1 1 100%; margin-top: 4px; }
    .contact-card-header { margin-bottom: 0; gap: clamp(10px, 1.5vw, 12px); display: flex; align-items: center; flex: 0 0 auto; }
    .contact-icon { width: clamp(18px, 2.2vw, 22px); height: clamp(18px, 2.2vw, 22px); flex-shrink: 0; }
    .contact-card-title { font-size: clamp(12px, 1.5vw, 14px); margin: 0; flex-shrink: 0; font-weight: 600; }
    .contact-card-value { font-size: clamp(13px, 1.6vw, 15px); margin: 0; line-height: 1.4; }
    .contact-info-card:hover { transform: none; }
    .legal-section { padding: clamp(80px, 10vw, 120px) 0 clamp(40px, 6vw, 64px) 0; }
    .legal-content { padding: clamp(28px, 3.5vw, 40px); }
    .legal-title { font-size: clamp(28px, 5vw, 40px); }
    .legal-text { font-size: clamp(14px, 1.7vw, 16px); line-height: 1.7; }
    .legal-text h2 { font-size: clamp(20px, 2.5vw, 24px); margin: clamp(28px, 3.5vw, 40px) 0 clamp(14px, 1.8vw, 18px) 0; }
    .legal-text h3 { font-size: clamp(16px, 2vw, 20px); margin: clamp(20px, 2.5vw, 28px) 0 clamp(10px, 1.3vw, 14px) 0; }
    .footer-inner { flex-direction: column; text-align: center; gap: 16px; padding: 22px 24px; }
    .footer-nav { flex-wrap: wrap; justify-content: center; }
    .footer-nav a { font-size: 12px; padding: 6px 12px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container { padding: 0 12px; width: 95vw; }
    .header-inner { padding: 12px 16px; }
    .hero { min-height: 55vh; padding-top: clamp(80px, 12vw, 120px); padding-bottom: clamp(40px, 6vw, 60px); }
    .headline { font-size: clamp(24px, 8vw, 48px); line-height: 1.05; }
    .subheadline { font-size: clamp(14px, 1.6vw, 18px); }
    .badge { font-size: 11px; padding: 5px 10px; }
    .btn-cta { padding: 12px 20px; font-size: 14px; min-height: 44px; }
    .section-title { font-size: clamp(28px, 6.5vw, 44px); }
    .title-subtitle { font-size: clamp(14px, 1.7vw, 17px); }
    .card { padding: clamp(20px, 3.5vw, 28px); }
    .card h3 { font-size: clamp(19px, 3.5vw, 23px); }
    .card p { font-size: clamp(14px, 2vw, 16px); }
    .card .icon { width: clamp(44px, 6vw, 52px); height: clamp(44px, 6vw, 52px); }
    .about-content { padding: clamp(20px, 3vw, 28px); }
    .about-intro { font-size: clamp(15px, 2vw, 19px); }
    .about-description { font-size: clamp(13px, 1.8vw, 17px); }
    .contact-content { padding: clamp(18px, 2.5vw, 24px); }
    .contact-header { margin-bottom: clamp(24px, 3vw, 32px); }
    .cf-input, .cf-textarea { padding: 12px 16px; font-size: 15px; min-height: 44px; }
    .cf-textarea { min-height: 100px; }
    .contact-info-card { padding: clamp(12px, 2vw, 16px) clamp(14px, 2.5vw, 18px); }
    .contact-card-header { gap: 10px; }
    .contact-icon { width: clamp(18px, 2.2vw, 22px); height: clamp(18px, 2.2vw, 22px); }
    .contact-card-title { font-size: clamp(12px, 1.5vw, 14px); }
    .contact-card-value { font-size: clamp(12px, 1.6vw, 15px); }
    .btn-contact-submit { padding: 12px 20px; font-size: 14px; min-height: 44px; }
    .footer-inner { flex-direction: column; text-align: center; gap: 14px; padding: clamp(18px, 2.5vw, 24px) clamp(16px, 2.5vw, 20px); }
    .footer-nav { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .footer-nav a { padding: 10px 14px; font-size: 13px; min-height: 44px; }
    .site-footer p { font-size: clamp(13px, 1.5vw, 15px); }
    .legal-content { padding: 24px 20px; }
    .legal-title { font-size: clamp(26px, 6vw, 40px); }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; padding: 12px 24px; text-decoration: none; cursor: pointer; user-select: none; position: relative; overflow: hidden; border: none; transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1); font-family: inherit; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--primary-500), var(--primary-600)); box-shadow: 0 10px 24px rgba(0,80,165,0.25), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,80,165,0.3); }
.btn-cta, .btn-contact-submit { color: white; background: linear-gradient(135deg, var(--primary-500), var(--primary-700)); box-shadow: 0 10px 28px rgba(0,80,165,0.28), inset 0 1px 0 rgba(255,255,255,0.35); font-weight: 700; font-size: 15px; letter-spacing: 0.15px; }
.btn-cta:hover, .btn-contact-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,80,165,0.32), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-contact-submit { width: 100%; padding: 12px 20px; font-size: 15px; min-height: 44px; position: relative; }
.btn-contact-submit:disabled { opacity: 0.7; cursor: not-allowed; pointer-events: none; }
.btn-contact-submit .btn-text { display: inline-block; }
.btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.4), rgba(255,255,255,0.0)); transform: translateX(-120%); transition: transform 700ms ease; }
.btn:hover::after { transform: translateX(120%); }

/* Hero */
.hero { padding: clamp(100px, 10vw, 160px) 0 clamp(60px, 8vw, 100px) 0; position: relative; min-height: 68vh; display: flex; align-items: center; overflow: hidden; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -120px; height: 400px; pointer-events: none; background: linear-gradient(180deg, rgba(248,250,253,0.0) 0%, rgba(248,250,253,0.15) 15%, rgba(248,250,253,0.35) 35%, rgba(248,250,253,0.5) 55%, rgba(247,245,242,0.6) 75%, rgba(247,245,242,0.4) 90%, transparent 100%); filter: blur(32px); z-index: 1; }
.hero::before { content: ""; position: absolute; left: 0; right: 0; bottom: -100px; height: 360px; pointer-events: none; background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.25) 70%, rgba(255,255,255,0.2) 90%, transparent 100%); filter: blur(36px) saturate(120%); mix-blend-mode: soft-light; opacity: 0.7; z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { text-align: center; max-width: 700px; margin-inline: auto; padding: 0 24px; animation: fade-in-up 0.8s ease-out; }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-glass-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.liquid-glass-panel { position: absolute; border-radius: 28px; backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); background: rgba(255,255,255,0.24); border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 16px 48px rgba(0,80,165,0.08), inset 0 1px 0 rgba(255,255,255,0.5); animation: float-panel 20s ease-in-out infinite; }
.liquid-glass-panel::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(120% 60% at 50% -10%, rgba(255,255,255,0.5), rgba(255,255,255,0.2) 40%, transparent 80%); mix-blend-mode: screen; pointer-events: none; }
.liquid-glass-panel::after { content: ""; position: absolute; top: -100%; left: -30%; width: 60%; height: 300%; background: linear-gradient(120deg, rgba(255,255,255,0.0) 20%, rgba(255,255,255,0.4) 48%, rgba(255,255,255,0.0) 80%); transform: rotate(12deg); animation: sweep-reflection 12s ease-in-out infinite; pointer-events: none; filter: blur(1px); }
.liquid-glass-panel.panel-1 { width: 280px; height: 180px; top: 12%; left: 8%; animation-delay: 0s; }
.liquid-glass-panel.panel-2 { width: 220px; height: 220px; top: 45%; right: 10%; animation-delay: -7s; }
.liquid-glass-panel.panel-3 { width: 200px; height: 160px; bottom: 20%; left: 12%; animation-delay: -14s; }
@keyframes float-panel { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(8px, -12px) rotate(1deg); } 66% { transform: translate(-6px, 8px) rotate(-1deg); } }
@keyframes sweep-reflection { 0%, 100% { transform: translateX(-50%) translateY(10%) rotate(12deg); } 50% { transform: translateX(50%) translateY(-10%) rotate(12deg); } }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.75); box-shadow: 0 4px 16px rgba(0,80,165,0.1), inset 0 1px 0 rgba(255,255,255,0.9); margin-bottom: clamp(12px, 1.4vw, 18px); font-weight: 600; color: var(--text-900); font-size: clamp(11px, 1.1vw, 13px); letter-spacing: 0.2px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.headline { font-family: Poppins, Inter, sans-serif; font-weight: 900; font-size: clamp(32px, 5.2vw, 72px); letter-spacing: -0.028em; line-height: 1.02; margin: 0 0 clamp(14px, 1.8vw, 22px); color: var(--text-900); }
.accent { background: linear-gradient(135deg, var(--primary-500), var(--primary-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subheadline { font-size: clamp(16px, 1.8vw, 22px); color: var(--text-700); margin: 0 0 clamp(24px, 3vw, 36px); line-height: 1.5; font-weight: 500; letter-spacing: -0.01em; }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Glass panels */
.glass { background: rgba(255,255,255,0.48); border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 12px 36px rgba(0, 34, 85, 0.16); backdrop-filter: blur(18px) saturate(170%); -webkit-backdrop-filter: blur(18px) saturate(170%); border-radius: 22px; position: relative; overflow: hidden; }
.glass::before { content: ""; position: absolute; inset: -1px; background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.08)); pointer-events: none; mix-blend-mode: soft-light; z-index: 0; }
.hero .hero-panel.glass::before { display: none; }
.glass::after { content: ""; position: absolute; top: -40%; left: -10%; width: 80%; height: 80%; background: radial-gradient(ellipse at top, rgba(255,255,255,0.65), transparent 62%); transform: rotate(8deg); filter: blur(16px); opacity: 0.85; pointer-events: none; z-index: 0; }
.glass .reflection { position: absolute; top: -100%; left: -30%; width: 60%; height: 350%; background: linear-gradient(120deg, rgba(255,255,255,0.0) 15%, rgba(255,255,255,0.45) 48%, rgba(255,255,255,0.0) 85%); transform: rotate(12deg); animation: sweep 10s ease-in-out infinite; pointer-events: none; filter: blur(1px); }
@keyframes sweep { 0%, 100% { transform: translateX(-45%) translateY(10%) rotate(12deg); } 50% { transform: translateX(45%) translateY(-10%) rotate(12deg); } }
.glass:hover { box-shadow: 0 18px 48px rgba(0,80,165,0.20), 0 0 0 1px rgba(255,255,255,0.5) inset; }

/* Services */
.services { padding: clamp(48px, 7vw, 96px) 0; margin-top: 0; position: relative; animation: fade-in 1.2s ease-out 0.3s both; }
@keyframes fade-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
/* Desktop */
@media (min-width: 901px) {
    .services { margin-top: -40px; padding-top: clamp(100px, 11vw, 140px); }
}
.services::before { content: none; }
.services::after { content: none; }
.services .container { position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); position: relative; animation: fade-in 1s ease-out 0.4s both; max-width: 800px; margin-inline: auto; }
.title-number { font-family: Poppins, Inter, sans-serif; font-size: clamp(14px, 1.8vw, 18px); font-weight: 800; color: var(--primary-500); letter-spacing: 0.15em; margin-bottom: clamp(12px, 1.5vw, 18px); opacity: 0.7; }
.section-title { font-family: Poppins, Inter, sans-serif; font-size: clamp(32px, 5.2vw, 56px); margin: 0 0 clamp(12px, 1.5vw, 18px); letter-spacing: -0.04em; font-weight: 900; position: relative; display: inline-block; }
.title-text { color: var(--text-900); display: block; line-height: 1.05; position: relative; }
.title-text::after { content: ""; position: absolute; bottom: clamp(6px, 0.8vw, 10px); left: 50%; transform: translateX(-50%); width: clamp(90px, 14vw, 160px); height: clamp(3px, 0.4vw, 4px); background: linear-gradient(90deg, transparent, var(--primary-500) 25%, var(--primary-700) 75%, transparent); border-radius: 999px; }
.title-subtitle { font-size: clamp(15px, 1.8vw, 19px); color: var(--text-700); font-weight: 500; margin: 0; line-height: 1.5; letter-spacing: 0.01em; }
.card-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(18px, 2.5vw, 26px); }
.card { grid-column: span 6; padding: clamp(28px, 3.5vw, 36px); transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); border-radius: 24px; position: relative; overflow: hidden; animation: card-fade-in 0.8s ease-out both; }
.card > * { position: relative; z-index: 3; }
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
@keyframes card-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 56px rgba(0,80,165,0.22), 0 0 0 1px rgba(255,255,255,0.6) inset; }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(0,160,242,0.5)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 300ms ease; z-index: 0; pointer-events: none; }
.card:hover::after { opacity: 1; }
.card .icon { width: clamp(32px, 3.5vw, 40px); height: clamp(32px, 3.5vw, 40px); margin-bottom: clamp(12px, 1.5vw, 16px); color: var(--primary-600); transition: transform 300ms ease; }
.card:hover .icon { transform: scale(1.1) rotate(5deg); }
.card h3 { margin: 0 0 clamp(10px, 1.2vw, 14px); font-size: clamp(20px, 2.2vw, 24px); letter-spacing: -0.015em; font-weight: 700; color: var(--text-900); opacity: 1; }
.card p { margin: 0; color: var(--text-700); line-height: 1.65; font-size: clamp(14px, 1.5vw, 16px); opacity: 1; }
.card .icon { opacity: 1; }
.card.optional { display: none; }

@media (min-width: 901px) {
    .card-grid { grid-template-columns: repeat(12, 1fr); }
    .card { grid-column: span 4; width: auto; }
    .card.optional { display: block; }
}

/* About */
.about { padding: clamp(48px, 7vw, 96px) 0; position: relative; }
.about-header { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); position: relative; animation: fade-in 1s ease-out 0.5s both; max-width: 800px; margin-inline: auto; }
.about-content { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 48px); padding: clamp(32px, 4vw, 48px); border-radius: 28px; }
.about-text { display: grid; gap: clamp(16px, 2vw, 24px); }
.about-intro { font-size: clamp(17px, 2.2vw, 22px); color: var(--text-900); line-height: 1.65; font-weight: 500; letter-spacing: -0.01em; margin: 0; }
.about-description { font-size: clamp(15px, 1.9vw, 19px); color: var(--text-700); line-height: 1.7; margin: 0; opacity: 0.85; }
.about-visual { position: relative; min-height: clamp(280px, 35vw, 380px); border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, rgba(0,160,242,0.12), rgba(0,80,165,0.08)); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.about-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 20px; filter: drop-shadow(0 8px 24px rgba(0,80,165,0.15)); transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1); }
.about-image-default { opacity: 1; z-index: 1; }
.about-image-hover { opacity: 0; z-index: 2; }
.about-visual:hover .about-image-default { opacity: 0; }
.about-visual:hover .about-image-hover { opacity: 1; transform: scale(1.02); }

@media (min-width: 901px) {
    .about-content { grid-template-columns: 1.2fr 1fr; align-items: center; padding: clamp(40px, 5vw, 56px); }
}

/* Contact */
.contact { padding: clamp(48px, 7vw, 96px) 0; position: relative; }
.contact-header { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); position: relative; animation: fade-in 1s ease-out 0.6s both; max-width: 800px; margin-inline: auto; }
.contact-content { padding: clamp(32px, 4vw, 48px); border-radius: 28px; animation: fade-in 1s ease-out 0.7s both; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 48px); }
/* Contact form v2 - Liquidglass Design */
.cf { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.2vw, 22px); }
.cf-field { display: grid; gap: 8px; }
.cf-label { font-size: clamp(13px, 1.4vw, 15px); font-weight: 700; color: var(--text-900); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 8px; }
.cf-label::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: linear-gradient(135deg, var(--primary-500), var(--primary-700)); box-shadow: 0 0 0 3px rgba(0,160,242,0.12); }
.cf-input, .cf-textarea { width: 100%; border-radius: 14px; border: 1.5px solid rgba(0,0,0,0.06); background: rgba(255,255,255,0.85); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); color: var(--text-900); font: inherit; transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 16px rgba(0,80,165,0.06), inset 0 1px 0 rgba(255,255,255,0.7); position: relative; }
.cf-input { padding: clamp(10px, 1.3vw, 12px) clamp(14px, 1.8vw, 18px); font-size: clamp(14px, 1.5vw, 16px); line-height: 1.4; }
.cf-textarea { padding: clamp(12px, 1.5vw, 14px) clamp(14px, 1.8vw, 18px); font-size: clamp(14px, 1.5vw, 16px); line-height: 1.5; min-height: clamp(100px, 13vw, 130px); resize: vertical; }
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(42,52,68,0.5); }
.cf-input:focus, .cf-textarea:focus { outline: none; border-color: var(--primary-500); background: rgba(255,255,255,0.92); box-shadow: 0 0 0 3px rgba(0,160,242,0.12), 0 8px 24px rgba(0,80,165,0.12), inset 0 1px 0 rgba(255,255,255,0.8); transform: translateY(-1px); }
.cf-input:hover, .cf-textarea:hover { background: rgba(255,255,255,0.88); border-color: rgba(0,160,242,0.15); }
.cf-actions { margin-top: 4px; }
.cf-span-2 { grid-column: 1 / -1; }
.contact-form { display: grid; gap: clamp(20px, 2.5vw, 24px); grid-template-columns: 1fr; }
.contact-form .field { display: grid; gap: clamp(7px, 0.9vw, 9px); }
.label-text { font-size: clamp(14px, 1.5vw, 16px); font-weight: 600; color: var(--text-900); letter-spacing: 0.01em; }
.input-wrap { position: relative; display: flex; align-items: center; border-radius: 12px; background: rgba(255,255,255,0.88); border: 1.5px solid rgba(0,0,0,0.06); box-shadow: 0 4px 16px rgba(0,80,165,0.06), inset 0 1px 0 rgba(255,255,255,0.8); transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1); min-height: 36px; }
.input-wrap::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(0,160,242,0.3)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 240ms ease; pointer-events: none; }
.input-wrap:focus-within { border-color: var(--primary-500); box-shadow: 0 0 0 3px rgba(0,160,242,0.12), 0 8px 24px rgba(0,80,165,0.1); transform: translateY(-1px); }
.input-wrap:focus-within::before { opacity: 0.5; }
.input-icon { position: absolute; left: clamp(14px, 1.8vw, 16px); top: 50%; transform: translateY(-50%); width: clamp(16px, 2vw, 18px); height: clamp(16px, 2vw, 18px); color: var(--primary-600); opacity: 0.75; pointer-events: none; transition: opacity 200ms ease, transform 200ms ease; z-index: 1; }
.textarea-wrap { align-items: flex-start; }
.textarea-wrap .input-icon { top: clamp(14px, 1.8vw, 16px); transform: none; }
.text-input { width: 100%; border: 0; outline: none; background: transparent; padding: 6px 10px 6px 40px; font: inherit; color: var(--text-900); font-size: 14px; line-height: 1.4; transition: color 200ms ease; }
.text-input::placeholder { color: rgba(42,52,68,0.5); }
.textarea-wrap .text-input { padding: 10px 10px 10px 40px; min-height: clamp(90px, 12vw, 120px); resize: vertical; line-height: 1.5; }
.input-wrap:focus-within .input-icon { opacity: 1; color: var(--primary-500); }
.actions { margin-top: 2px; }
.field-full { grid-column: 1 / -1; }
.contact-info { display: grid; gap: clamp(16px, 2vw, 20px); }
.contact-info-card { padding: clamp(24px, 3vw, 32px); border-radius: 20px; background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.6); backdrop-filter: blur(16px) saturate(170%); -webkit-backdrop-filter: blur(16px) saturate(170%); box-shadow: 0 6px 20px rgba(0,80,165,0.1), inset 0 1px 0 rgba(255,255,255,0.6); transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.contact-info-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,80,165,0.14), inset 0 1px 0 rgba(255,255,255,0.7); background: rgba(255,255,255,0.58); }
.contact-card-header { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 16px); margin-bottom: clamp(12px, 1.5vw, 16px); }
.contact-icon { width: clamp(24px, 3vw, 28px); height: clamp(24px, 3vw, 28px); color: var(--primary-600); flex-shrink: 0; transition: transform 280ms ease; }
.contact-info-card:hover .contact-icon { transform: scale(1.1) rotate(5deg); }
.contact-card-title { margin: 0; font-size: clamp(15px, 1.8vw, 18px); font-weight: 700; color: var(--text-900); letter-spacing: -0.01em; }
.contact-card-value { display: block; font-size: clamp(14px, 1.6vw, 16px); font-weight: 500; color: var(--text-700); line-height: 1.5; margin: 0; text-decoration: none; transition: color 200ms ease; }
.contact-card-value[href]:hover { color: var(--primary-600); }

@media (min-width: 901px) {
    .contact-grid { grid-template-columns: 1.3fr 1fr; gap: clamp(36px, 4.5vw, 48px); }
    .contact-content { padding: clamp(40px, 5vw, 56px); }
    .cf { grid-template-columns: repeat(2, 1fr); }
    .cf-span-2 { grid-column: 1 / -1; }
}

/* Desktop Large */
@media (min-width: 1400px) {
    .header-inner { padding: 16px 32px; max-width: min(1400px, 92vw); }
    .hero { min-height: 75vh; padding-top: clamp(140px, 12vw, 180px); }
    .headline { font-size: clamp(56px, 6vw, 80px); }
    .subheadline { font-size: clamp(20px, 2vw, 24px); }
    .section-title { font-size: clamp(48px, 5.5vw, 64px); }
    .card-grid { gap: clamp(24px, 3vw, 32px); }
    .card { padding: clamp(36px, 4vw, 44px); }
    .about-content { padding: clamp(48px, 6vw, 64px); }
    .contact-content { padding: clamp(48px, 6vw, 64px); }
}

/* Performance: Reduce animations on low-end devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Footer */
.site-footer { padding: clamp(32px, 5vw, 56px) 0; position: relative; margin-top: 64px; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 32px; background: rgba(255,255,255,0.38); border: 1px solid rgba(255,255,255,0.45); border-radius: 20px; backdrop-filter: blur(16px) saturate(170%); -webkit-backdrop-filter: blur(16px) saturate(170%); box-shadow: 0 8px 32px rgba(0,80,165,0.08), inset 0 1px 0 rgba(255,255,255,0.5); }
.site-footer p { margin: 0; color: var(--text-700); font-weight: 500; font-size: 15px; letter-spacing: 0.2px; }
.footer-nav { display: flex; align-items: center; gap: 6px; }
.footer-nav a { color: var(--text-700); text-decoration: none; padding: 8px 14px; border-radius: 10px; font-weight: 600; font-size: 14px; position: relative; transition: color 240ms ease; min-height: 40px; display: inline-flex; align-items: center; }
.footer-nav a::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.6); border-radius: inherit; opacity: 0; transform: scale(0.92); transition: opacity 240ms ease, transform 240ms ease; }
.footer-nav a::after { content: ""; position: absolute; bottom: 4px; left: 50%; width: 0; height: 1.5px; background: linear-gradient(90deg, var(--primary-500), var(--primary-600)); border-radius: 999px; transform: translateX(-50%); transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1); }
.footer-nav a:hover { color: var(--text-900); }
.footer-nav a:hover::before { opacity: 1; transform: scale(1); }
.footer-nav a:hover::after { width: calc(100% - 20px); }

/* Micro animations */
@keyframes float { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

/* Legal Pages */
.legal-section { padding: clamp(100px, 12vw, 160px) 0 clamp(64px, 8vw, 96px) 0; position: relative; }
.legal-content { padding: clamp(40px, 5vw, 60px); border-radius: 28px; max-width: 900px; margin-inline: auto; }
.legal-title { font-family: Poppins, Inter, sans-serif; font-size: clamp(32px, 4.5vw, 48px); font-weight: 900; color: var(--text-900); margin: 0 0 clamp(16px, 2vw, 24px); letter-spacing: -0.02em; }
.legal-date { font-size: clamp(13px, 1.5vw, 15px); color: var(--text-700); margin: 0 0 clamp(32px, 4vw, 48px); font-weight: 500; opacity: 0.7; }
.legal-text { font-size: clamp(15px, 1.8vw, 17px); line-height: 1.8; color: var(--text-900); }
.legal-text h2 { font-family: Poppins, Inter, sans-serif; font-size: clamp(22px, 2.8vw, 28px); font-weight: 800; color: var(--text-900); margin: clamp(32px, 4vw, 48px) 0 clamp(16px, 2vw, 20px) 0; letter-spacing: -0.01em; }
.legal-text h3 { font-family: Poppins, Inter, sans-serif; font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; color: var(--text-900); margin: clamp(24px, 3vw, 32px) 0 clamp(12px, 1.5vw, 16px) 0; }
.legal-text p { margin: 0 0 clamp(16px, 2vw, 20px); }
.legal-text a { color: var(--primary-600); text-decoration: none; transition: color 200ms ease; border-bottom: 1px solid transparent; }
.legal-text a:hover { color: var(--primary-700); border-bottom-color: var(--primary-500); }
.legal-actions { margin-top: clamp(40px, 5vw, 56px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid rgba(0,0,0,0.08); text-align: center; }

/* Utility */
.section + .section { margin-top: 24px; }


