/* ========================================
   INNSMOVE LOGISTIK - Premium Stylesheet
   ======================================== */

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

:root {
    --primary: #0c2340;
    --primary-mid: #163a5f;
    --primary-light: #1e5285;
    --accent: #1a8fcb;
    --accent-hover: #1fa8f0;
    --accent-glow: rgba(26, 143, 203, 0.25);
    --gold: #c9a84c;
    --gold-light: #e0c36a;
    --text: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #8896a6;
    --bg: #ffffff;
    --bg-warm: #fafbfd;
    --bg-light: #f0f4f8;
    --bg-dark: #0a1628;
    --border: #e2e8f0;
    --border-light: #edf2f7;
    --success: #10b981;
    --error: #ef4444;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(12, 35, 64, 0.08);
    --shadow-md: 0 8px 30px rgba(12, 35, 64, 0.1);
    --shadow-lg: 0 20px 60px rgba(12, 35, 64, 0.15);
    --shadow-xl: 0 25px 80px rgba(12, 35, 64, 0.2);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --max-width: 1200px;
    --header-h: 120px;
    --header-h-small: 72px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--accent-hover); }
ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(12, 35, 64, 0.08);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .nav {
    height: 72px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.nav-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .nav-logo img {
    width: 52px;
    height: 52px;
}

.nav-logo:hover img {
    transform: scale(1.04);
}

/* Nav links */
.nav-menu a {
    color: var(--text-secondary);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a.active {
    color: var(--accent);
}

.nav-cta {
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(12, 35, 64, 0.2);
}

.nav-cta:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 8px 24px var(--accent-glow) !important;
}

/* Hamburger */
.nav-toggle span { background: var(--primary); }

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 10px 22px;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a.nav-cta {
    padding: 11px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-menu a.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 4px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }

.nav-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #fff;
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #fff;
}

/* ========================================
   FULLSCREEN MOBILE NAV
   ======================================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.5s;
    overflow: hidden;
}

.mobile-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(26, 143, 203, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
}

.mobile-nav-links li {
    overflow: hidden;
}

.mobile-nav-links a {
    display: block;
    color: #fff;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 700;
    padding: 16px 0;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

.mobile-overlay.open .mobile-nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) a { transition-delay: 0.18s; }
.mobile-nav-links li:nth-child(3) a { transition-delay: 0.26s; }
.mobile-nav-links li:nth-child(4) a { transition-delay: 0.34s; }

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

.mobile-nav-links a.active {
    position: relative;
}

.mobile-nav-links a.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    margin: 8px auto 0;
}

.mobile-nav-contact {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.45s;
}

.mobile-overlay.open .mobile-nav-contact {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-contact a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.mobile-nav-contact a:hover { color: #fff; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
    margin-top: 110px;
}

/* Hero uses gradient, no image bg */

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26, 143, 203, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 80%, rgba(26, 143, 203, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 10% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-decoration .line {
    position: absolute;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
    width: 1px;
}

.hero-decoration .line:nth-child(1) { left: 20%; height: 60%; top: 20%; }
.hero-decoration .line:nth-child(2) { left: 40%; height: 45%; top: 30%; }
.hero-decoration .line:nth-child(3) { left: 60%; height: 55%; top: 15%; }
.hero-decoration .line:nth-child(4) { left: 80%; height: 40%; top: 35%; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-text { color: #fff; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent-hover), #60d5f7, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 520px;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    position: relative;
    padding-left: 20px;
}

.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--accent), var(--gold));
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 16px;
    transition: all var(--transition);
}

.hero-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-feature-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), rgba(26, 143, 203, 0.4));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
}

.hero-feature-card h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-feature-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-primary-dark {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary-dark:hover {
    background: var(--primary-mid);
    border-color: var(--primary-mid);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 35, 64, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    background: var(--bg-light);
    color: var(--primary);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { padding: 14px; border-radius: 50%; }

/* ========================================
   SECTION STYLING
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.4;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   SERVICES GRID (HOME)
   ======================================== */
.services-overview {
    background: var(--bg-warm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(26, 143, 203, 0.08), rgba(26, 143, 203, 0.03));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: #fff;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.75;
}

.service-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

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

/* ========================================
   TRUST BANNER
   ======================================== */
.trust-banner {
    padding: 56px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.advantage {
    text-align: center;
    padding: 48px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}

.advantage:hover {
    background: var(--bg-warm);
}

.advantage-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--border-light) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.advantage h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.advantage p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 88px 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 20% 100%, rgba(26, 143, 203, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 72px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(26, 143, 203, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-header > .container { position: relative; z-index: 1; }

.page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.65;
    max-width: 560px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.88rem;
    opacity: 0.5;
}

.breadcrumb a { color: #fff; }
.breadcrumb a:hover { opacity: 0.8; }

/* ========================================
   SERVICE DETAILS (Leistungen Page)
   ======================================== */
.service-detail { padding: 100px 0; }
.service-detail.alt { background: var(--bg-warm); }

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-content.reverse { direction: rtl; }
.service-detail-content.reverse > * { direction: ltr; }

.service-detail-text .section-tag { justify-content: flex-start; }
.service-detail-text .section-tag::before { display: none; }

.service-detail-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-text p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.check-list { margin-bottom: 36px; }

.check-list li {
    padding: 10px 0 10px 40px;
    position: relative;
    color: var(--text);
    font-weight: 500;
    font-size: 1.02rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-visual-icon {
    border-radius: var(--radius-xl);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--bg-light) 0%, #e4ecf5 100%);
    border: 1px solid var(--border-light);
}

.service-detail.alt .service-visual-icon {
    background: linear-gradient(145deg, #fff 0%, var(--bg-light) 100%);
}

.service-visual-icon .icon-wrap {
    width: 160px;
    height: 160px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(26, 143, 203, 0.25);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-visual-icon:hover .icon-wrap {
    transform: scale(1.06) rotate(3deg);
}

.service-visual-icon::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(26, 143, 203, 0.08);
    z-index: 1;
}

.service-visual-icon::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(26, 143, 203, 0.05);
    z-index: 1;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.85;
    font-size: 1.05rem;
}

.about-card {
    background: linear-gradient(145deg, var(--bg-warm), var(--bg-light));
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

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

.about-card img {
    margin: 0 auto 28px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.about-card p {
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Values --- */
.values-section { background: var(--bg-warm); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.value-card:hover::after { opacity: 1; }

.value-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Facts --- */
.facts-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.facts-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(26, 143, 203, 0.15), transparent 50%);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    color: #fff;
    position: relative;
}

.fact { padding: 24px 0; }

.fact-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fact-label {
    font-size: 0.9rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-privacy { margin-bottom: 28px; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
    border-radius: 4px;
}

.form-recaptcha-info {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-alert {
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Contact Info */
.contact-info-card {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.contact-detail {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-detail p {
    color: var(--text);
    line-height: 1.7;
    font-weight: 500;
}

.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--accent); }

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-section { padding: 72px 0 120px; }

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 56px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
}

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

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 36px;
    margin-bottom: 14px;
}

.legal-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.85;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.legal-updated {
    margin-top: 56px;
    font-style: italic;
    color: var(--text-muted);
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 96px 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    border-radius: 14px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.75;
}

.footer-col h3 {
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-col ul a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-col address {
    font-style: normal;
}

.footer-col address p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col address a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-col address a:hover { color: #fff; }
.footer-col address svg { flex-shrink: 0; opacity: 0.35; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition-fast);
}

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

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .hero-text { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .service-detail-content { grid-template-columns: 1fr; gap: 48px; }
    .service-detail-content.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .nav-menu { display: none; }

    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }

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

    .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

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

    .cta-box { padding: 56px 32px; border-radius: var(--radius-lg); }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .trust-items { gap: 24px; }
    .trust-item { font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { min-height: 85vh; }
    .hero h1 { font-size: 1.9rem; }
    .btn-lg { padding: 16px 32px; font-size: 0.95rem; }
    .fact-number { font-size: 2.2rem; }
    .page-header { padding: 120px 0 56px; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card { transition: all var(--transition), opacity 0.7s ease, transform 0.7s ease; }
    .value-card { transition: all var(--transition), opacity 0.7s ease, transform 0.7s ease; }

    .stagger-1 { transition-delay: 0.05s !important; }
    .stagger-2 { transition-delay: 0.1s !important; }
    .stagger-3 { transition-delay: 0.15s !important; }
    .stagger-4 { transition-delay: 0.2s !important; }
    .stagger-5 { transition-delay: 0.25s !important; }
    .stagger-6 { transition-delay: 0.3s !important; }
}
