/* ============================================
   DOMODNOWA - Frutiger Aero Design System
   Fresh, glossy, nature-inspired aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Core Palette */
    --primary: #0078d4;
    --primary-dark: #005a9e;
    --primary-darker: #003f6f;
    --primary-light: #4da3e8;
    --primary-lighter: #b3d9f2;
    --primary-bg: #e8f4f8;

    --secondary: #e8f4f8;
    --accent: #7fba00;
    --accent-dark: #5a8c00;
    --accent-light: #a5d63a;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f7fbfd;
    --gray-50: #f0f5f9;
    --gray-100: #e1eaf1;
    --gray-200: #c8d6e0;
    --gray-300: #a3b5c4;
    --gray-400: #7d93a6;
    --gray-500: #5a7189;
    --gray-600: #435568;
    --gray-700: #2e3d4c;
    --gray-800: #1d2833;
    --gray-900: #0f1820;

    /* Functional */
    --success: #7fba00;
    --warning: #f5a623;
    --error: #d13438;
    --info: #0078d4;

    /* Shadows - Frutiger Aero style (soft blue/green) */
    --shadow-sm: 0 1px 3px rgba(0, 120, 212, 0.08), 0 1px 2px rgba(0, 120, 212, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 120, 212, 0.1), 0 2px 4px rgba(0, 120, 212, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 120, 212, 0.12), 0 4px 8px rgba(0, 120, 212, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 120, 212, 0.15), 0 8px 16px rgba(0, 120, 212, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 120, 212, 0.25);
    --shadow-green: 0 4px 16px rgba(127, 186, 0, 0.2);

    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: 16px;

    /* Typography */
    --font-display: 'Quicksand', 'Segoe UI', 'Calibri', sans-serif;
    --font-body: 'Source Sans 3', 'Segoe UI', 'Calibri', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.15s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;

    /* Frutiger Aero Gradients */
    --grad-sky: linear-gradient(180deg, #c5e8f7 0%, #e8f4f8 40%, #ffffff 100%);
    --grad-hero: linear-gradient(160deg, #d4eef8 0%, #b8e2f4 20%, #e8f4f8 50%, #f0faf0 80%, #ffffff 100%);
    --grad-aero-btn: linear-gradient(180deg, #3fadea 0%, #0078d4 50%, #005ea8 100%);
    --grad-aero-btn-hover: linear-gradient(180deg, #5bbdef 0%, #0088ea 50%, #006bbd 100%);
    --grad-aero-green: linear-gradient(180deg, #a5d63a 0%, #7fba00 50%, #5a8c00 100%);
    --grad-glass: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.15) 100%);
    --grad-card: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

a:hover {
    color: var(--primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-800);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Utility Classes --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   BUTTONS - Frutiger Aero Aqua Style
   ============================================ */
.btn-aero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 1.3;
}

.btn-aero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    pointer-events: none;
}

.btn-aero-primary {
    background: var(--grad-aero-btn);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 90, 158, 0.5);
}

.btn-aero-primary:hover {
    background: var(--grad-aero-btn-hover);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-aero-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 120, 212, 0.3),
                inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-aero-secondary {
    background: linear-gradient(180deg, #f8fbfd 0%, #e8f0f5 50%, #d8e4ed 100%);
    color: var(--gray-700);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gray-200);
}

.btn-aero-secondary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #eef4f9 50%, #e0eaf2 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
}

.btn-aero-glass {
    background: rgba(255, 255, 255, 0.6);
    color: var(--gray-700);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-aero-glass:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

.btn-aero-white {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 50%, #e8f4f8 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-aero-white:hover {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f0f8ff 100%);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    transition: all var(--duration-normal) var(--ease-out);
}

.header-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 8px rgba(0, 120, 212, 0.06);
    transition: all var(--duration-normal) ease;
}

.header.scrolled .header-glass {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 2px 16px rgba(0, 120, 212, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-800);
    line-height: 1.1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 120, 212, 0.06);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.nav-link-cta {
    background: var(--grad-aero-btn);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    padding: 8px 20px;
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.25);
    border: 1px solid rgba(0, 90, 158, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-link-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--grad-aero-btn-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(127, 186, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(0, 120, 212, 0.06) 0%, transparent 60%);
}

/* Bubbles - Frutiger Aero floating elements */
.hero-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.6),
        rgba(0, 120, 212, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 -4px 8px rgba(0, 120, 212, 0.05),
                0 2px 8px rgba(0, 120, 212, 0.06);
    animation: bubbleFloat 20s ease-in-out infinite;
}

.bubble-1 { width: 120px; height: 120px; top: 15%; left: 5%; animation-delay: 0s; animation-duration: 22s; }
.bubble-2 { width: 80px; height: 80px; top: 60%; left: 10%; animation-delay: -3s; animation-duration: 18s; }
.bubble-3 { width: 160px; height: 160px; top: 10%; right: 8%; animation-delay: -7s; animation-duration: 25s; }
.bubble-4 { width: 60px; height: 60px; top: 45%; right: 15%; animation-delay: -5s; animation-duration: 16s; }
.bubble-5 { width: 100px; height: 100px; bottom: 20%; left: 30%; animation-delay: -10s; animation-duration: 20s; }
.bubble-6 { width: 40px; height: 40px; top: 30%; left: 40%; animation-delay: -2s; animation-duration: 14s; }
.bubble-7 { width: 70px; height: 70px; bottom: 30%; right: 25%; animation-delay: -8s; animation-duration: 19s; }

@keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -20px) scale(1.03); }
    50% { transform: translate(-10px, -35px) scale(0.97); }
    75% { transform: translate(20px, -15px) scale(1.02); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: var(--space-3xl);
    padding-bottom: 120px;
}

.hero-content {
    animation: heroFadeIn 0.8s var(--ease-out) forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px 6px 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(127, 186, 0, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(127, 186, 0, 0.1);
    animation: heroFadeIn 0.8s var(--ease-out) 0.1s forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: heroFadeIn 0.8s var(--ease-out) 0.2s forwards;
    opacity: 0;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 520px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    animation: heroFadeIn 0.8s var(--ease-out) 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    animation: heroFadeIn 0.8s var(--ease-out) 0.4s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: heroFadeIn 0.8s var(--ease-out) 0.5s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: heroVisualIn 1s var(--ease-out) 0.3s forwards;
    opacity: 0;
}

@keyframes heroVisualIn {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(0, 120, 212, 0.12) 0%, transparent 70%);
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
    font-size: 0.82rem;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card strong {
    display: block;
    color: var(--gray-800);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
}

.hero-floating-card span {
    display: block;
    color: var(--gray-400);
    font-size: 0.72rem;
}

.hero-floating-card-1 {
    bottom: 80px;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    top: 30px;
    right: -20px;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--white);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    z-index: 4;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-out);
}

.trust-item:hover {
    background: var(--gray-50);
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f0f8ff 0%, #e0f0fa 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 120, 212, 0.1);
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-800);
}

.trust-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    padding: 4px 14px;
    background: linear-gradient(180deg, rgba(127, 186, 0, 0.1) 0%, rgba(127, 186, 0, 0.05) 100%);
    border-radius: var(--radius-full);
    border: 1px solid rgba(127, 186, 0, 0.15);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.section-title-left {
    text-align: left;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 120, 212, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(127, 186, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease-out);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--duration-slow) ease;
    background: radial-gradient(ellipse at center, rgba(0, 120, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-inner {
    position: relative;
    z-index: 1;
    padding: var(--space-xl);
    background: var(--grad-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card-inner {
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 120, 212, 0.15);
    transform: translateY(-6px);
}

.service-icon-wrap {
    margin-bottom: var(--space-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e8f4f8 0%, #d0eaf5 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 120, 212, 0.12);
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.08);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--gray-600);
}

.service-features li svg {
    flex-shrink: 0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 0;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.service-btn:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.service-btn svg {
    transition: transform var(--duration-fast) ease;
}

.service-btn:hover svg {
    transform: translateX(3px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-img-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.about-img-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--grad-aero-green);
    border-radius: 50%;
    box-shadow: var(--shadow-green), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: absolute;
    overflow: hidden;
}

.about-experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 50% 50% 0 0;
}

.about-exp-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.about-exp-text {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content .section-label {
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.about-content .section-title {
    margin-bottom: var(--space-lg);
}

.about-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(127, 186, 0, 0.1) 0%, rgba(127, 186, 0, 0.05) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(127, 186, 0, 0.15);
}

.about-feature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-800);
}

.about-feature span {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ============================================
   PORTFOLIO / CASE STUDIES
   ============================================ */
.portfolio {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.portfolio-card-large {
    grid-row: 1 / 3;
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.portfolio-card-image {
    position: relative;
    height: 100%;
    min-height: 260px;
}

.portfolio-card-large .portfolio-card-image {
    min-height: 100%;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.05);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 24, 32, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    transition: background var(--duration-normal) ease;
}

.portfolio-card:hover .portfolio-card-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(15, 24, 32, 0.9) 100%);
}

.portfolio-card-overlay-content {
    color: var(--white);
}

.portfolio-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(127, 186, 0, 0.85);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.portfolio-card-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.portfolio-stats-mini {
    display: flex;
    gap: var(--space-lg);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-stats-mini strong {
    color: var(--white);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    padding: var(--space-4xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.team-bg-decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 30% at 10% 90%, rgba(0, 120, 212, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 90% 10%, rgba(127, 186, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.team-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-slow) var(--ease-out);
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card-inner {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--grad-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-normal) var(--ease-out);
    height: 100%;
}

.team-card:hover .team-card-inner {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(0, 120, 212, 0.12);
}

.team-avatar {
    margin-bottom: var(--space-md);
}

.team-avatar-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e8f4f8 0%, #d0eaf5 100%);
    border: 2px solid rgba(0, 120, 212, 0.12);
    box-shadow: inset 0 -2px 4px rgba(0, 120, 212, 0.05);
    position: relative;
    overflow: hidden;
}

.team-avatar-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 50% 50% 0 0;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.team-bio {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 var(--space-xl);
}

.testimonial-card-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--grad-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    quotes: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-aero-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.25);
    position: relative;
    overflow: hidden;
}

.testimonial-author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 50% 50% 0 0;
}

.testimonial-author div:last-child {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-800);
}

.testimonial-author span {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-400);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.testimonials-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f0f5f9 100%);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    box-shadow: var(--shadow-sm);
    color: var(--gray-500);
    position: relative;
    overflow: hidden;
}

.testimonials-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, transparent 100%);
}

.testimonials-btn:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
    color: var(--primary);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-sm);
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    padding: 0;
}

.testimonials-dots .dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(0, 120, 212, 0.3);
    transform: scale(1.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 40%, #003f6f 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-bubble-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-bubble-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }
.cta-bubble-3 { width: 120px; height: 120px; top: 40%; left: 20%; }

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info-card {
    background: var(--grad-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e8f4f8 0%, #d0eaf5 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 120, 212, 0.1);
}

.contact-info-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.contact-info-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.contact-trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.82rem;
    color: var(--gray-500);
    padding: var(--space-sm) var(--space-md);
    background: rgba(127, 186, 0, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(127, 186, 0, 0.1);
}

/* Contact Form */
.contact-form-wrap {
    position: relative;
}

.contact-form {
    background: var(--grad-card);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.contact-form-subtitle {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    line-height: 1.5;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-required {
    color: var(--error);
}

.form-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-wrap svg {
    position: absolute;
    left: 14px;
    pointer-events: none;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--gray-700);
    background: linear-gradient(180deg, #fafcfe 0%, #ffffff 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12),
                inset 0 1px 3px rgba(0, 0, 0, 0.02);
    outline: none;
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(209, 52, 56, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--gray-700);
    background: linear-gradient(180deg, #fafcfe 0%, #ffffff 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
    resize: vertical;
    min-height: 100px;
}

.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
    outline: none;
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: var(--error);
    margin-top: 4px;
    min-height: 18px;
}

/* Checkbox */
.form-group-checkbox {
    margin-bottom: var(--space-xl);
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.82rem;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) ease;
    background: var(--white);
    margin-top: 1px;
}

.form-checkbox-label input:checked + .form-checkbox-custom {
    background: var(--grad-aero-btn);
    border-color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 120, 212, 0.25);
}

.form-checkbox-label input:checked + .form-checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.form-checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* Form Success */
.form-success {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.form-success-inner {
    text-align: center;
    padding: var(--space-xl);
}

.form-success-inner svg {
    margin: 0 auto var(--space-md);
}

.form-success-inner h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.form-success-inner p {
    font-size: 0.92rem;
    color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1d2833 0%, #0f1820 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    position: relative;
    top: 0;
    line-height: 0;
    margin-bottom: var(--space-3xl);
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: var(--space-md) 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-address p {
    margin-bottom: 2px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-heading-mt {
    margin-top: var(--space-xl);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 24, 32, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.modal-overlay.visible {
    opacity: 1;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform var(--duration-normal) var(--ease-spring);
}

.modal-overlay.visible .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    color: var(--gray-500);
    transition: all var(--duration-fast) ease;
    z-index: 3;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.modal-content {
    padding: var(--space-2xl);
}

.modal-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e8f4f8 0%, #d0eaf5 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 120, 212, 0.1);
    margin-bottom: var(--space-lg);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-lg);
}

.modal-body p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.modal-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.modal-body ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.modal-body li {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    list-style: disc;
    margin-bottom: 4px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-aero-btn);
    border: 1px solid rgba(0, 90, 158, 0.3);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
    color: var(--white);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 120, 212, 0.4);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 120, 212, 0.1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform var(--duration-slow) var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
}

.cookie-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e8f4f8 0%, #d0eaf5 100%);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 4px;
}

.cookie-text p:first-child {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-link {
    font-size: 0.82rem;
    color: var(--gray-400);
    padding: 8px 12px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: 72px;
    min-height: 100vh;
}

.legal-hero {
    background: var(--grad-hero);
    padding: var(--space-3xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.legal-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.legal-subtitle {
    font-size: 0.92rem;
    color: var(--gray-400);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-lighter);
}

.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-section p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.legal-section ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-section li {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    list-style: disc;
    margin-bottom: 6px;
}

.legal-highlight {
    background: linear-gradient(180deg, #f0f8ff 0%, #e8f4f8 100%);
    border: 1px solid rgba(0, 120, 212, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.legal-highlight p {
    margin-bottom: 4px;
    color: var(--gray-600);
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.gdpr-right-card {
    background: var(--grad-card);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-normal) ease;
}

.gdpr-right-card:hover {
    box-shadow: var(--shadow-md);
}

.gdpr-right-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e8f4f8 0%, #d0eaf5 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.gdpr-right-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.gdpr-right-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Legal Steps */
.legal-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.legal-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.legal-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-aero-btn);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.25);
}

.legal-step strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.legal-step p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Legal Table */
.legal-table-wrap {
    overflow-x: auto;
    margin: var(--space-lg) 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.legal-table th {
    background: linear-gradient(180deg, #e8f4f8 0%, #d8edf5 100%);
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.legal-table td {
    padding: 12px 16px;
    border: 1px solid var(--gray-100);
    color: var(--gray-500);
}

.legal-table tr:nth-child(even) td {
    background: var(--gray-50);
}

/* Footer Legal */
.footer-legal {
    padding-top: var(--space-xl);
}

.footer-legal .footer-wave {
    display: none;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-floating-card-1 {
        left: 10px;
        bottom: 40px;
    }

    .hero-floating-card-2 {
        right: 10px;
        top: 10px;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card-large {
        grid-row: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        padding: 100px var(--space-xl) var(--space-xl);
        transition: right var(--duration-normal) var(--ease-out);
        z-index: 5;
    }

    .nav.open {
        right: 0;
    }

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

    .nav-link {
        font-size: 1rem;
        padding: 12px var(--space-md);
        width: 100%;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link-cta {
        margin-top: var(--space-sm);
        text-align: center;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-container {
        padding-top: var(--space-2xl);
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .hero-stat-divider {
        display: none;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn-aero {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-img {
        height: 280px;
    }

    .about-img-secondary {
        width: 160px;
        right: -10px;
        bottom: -20px;
    }

    .about-img-secondary img {
        height: 120px;
    }

    .about-experience-badge {
        width: 80px;
        height: 80px;
        left: -10px;
        top: -10px;
    }

    .about-exp-number {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: var(--space-lg);
    }

    .testimonial-card {
        padding: 0 var(--space-sm);
    }

    .testimonial-card-inner {
        padding: var(--space-lg);
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .modal-content {
        padding: var(--space-lg);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .cookie-banner,
    .back-to-top,
    .hero-bubbles,
    .hero-wave,
    .footer-wave {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }
}
