/* ==========================================================================
   KAPAKLI SU ARITMA - 2026 PREMIUM DESIGN SYSTEM
   Brand Colors: Dark Navy (#071426, #0a1f3d), Deep Cyan (#0077b6), 
   Vibrant Turquoise (#00b4d8), Mint (#2a9d8f), Off-White (#f8fafc)
   ========================================================================== */

:root {
    --navy-950: #040d1a;
    --navy-900: #071426;
    --navy-800: #0a1f3d;
    --navy-700: #0f2d57;
    --primary: #0077b6;
    --primary-light: #00b4d8;
    --primary-dark: #023e8a;
    --accent: #48cae4;
    --accent-glow: rgba(72, 202, 228, 0.25);
    --secondary: #2a9d8f;
    --secondary-dark: #21867a;
    --dark: #0f172a;
    --slate-800: #1e293b;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 36px rgba(2, 62, 138, 0.12);
    --shadow-xl: 0 20px 50px rgba(7, 20, 38, 0.18);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    font-size: 16px;
}

[id] {
    scroll-margin-top: 60px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* Container & Grids */
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

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

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 119, 182, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-600);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title { font-size: 1.85rem; }
    .section-desc { font-size: 0.95rem; }
}

/* Buttons & Touch Targets */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 119, 182, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.45);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(42, 157, 143, 0.35);
}
.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy-900);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 54px;
    padding: 15px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Header & Navigation: Deliberate Two-Tier Architecture */
header.site-header {
    width: 100%;
    background: var(--white);
    position: relative;
    z-index: 990;
}

/* Tier 1: Brand & Direct Action Tier */
.header-brand-tier {
    background: var(--white);
    border-bottom: 1px solid var(--slate-100);
    padding: 16px 0;
    transition: var(--transition);
}
.header-brand-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 58px;
}
.brand-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.site-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo-img {
    width: 225px;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    display: block;
}
.brand-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.22);
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy-900);
}
.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.desktop-brand-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.brand-phone-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 4px;
}
.phone-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-500);
    letter-spacing: 0.04em;
    line-height: 1.2;
}
.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-900);
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}
.phone-number:hover {
    color: var(--primary);
}
.phone-number svg {
    color: var(--primary);
}

.btn-brand-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-brand-wa:hover {
    background: #dcfce7;
    border-color: #86efac;
    color: #166534;
}
.brand-cta-btn {
    white-space: nowrap;
    padding: 9px 20px;
    font-weight: 700;
}
.mobile-brand-actions {
    display: none;
}

/* Tier 2: Sticky Navigation Stripe */
.header-nav-stripe {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #f8fafc;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    z-index: 990;
    transition: var(--transition);
}
.header-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}
.desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
}
.nav-item {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--slate-800);
    text-decoration: none;
    padding: 14px 2px;
    position: relative;
    white-space: nowrap;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
}
.nav-item:hover {
    color: var(--primary);
}
.nav-item.active {
    color: var(--primary);
    font-weight: 700;
}
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

/* Accessible Tools Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--slate-800);
    padding: 14px 2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: color 0.15s ease;
}
.nav-dropdown-btn:hover {
    color: var(--primary);
}
.dropdown-chevron {
    transition: transform 0.2s ease;
}
.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 290px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    padding: 8px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--slate-800);
    transition: background 0.15s ease;
}
.dropdown-link:hover,
.dropdown-link:focus {
    background: var(--slate-50);
    outline: none;
}
.dropdown-link-icon {
    font-size: 1.25rem;
    line-height: 1.2;
    flex-shrink: 0;
}
.dropdown-link-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-900);
}
.dropdown-link:hover strong,
.dropdown-link:focus strong {
    color: var(--primary);
}
.dropdown-link-text small {
    display: block;
    font-size: 0.76rem;
    color: var(--slate-500);
    margin-top: 2px;
    line-height: 1.25;
}

/* Mobile Sub Bar inside Tier 2 */
.mobile-sub-bar {
    display: none;
}

/* Media Queries for Navigation & Header */
@media (max-width: 1023px) {
    .header-brand-tier {
        padding: 10px 0;
    }
    .header-brand-inner {
        min-height: 48px;
    }
    .brand-badge-pill {
        display: none;
    }
    .desktop-brand-actions {
        display: none;
    }
    .desktop-nav-links {
        display: none;
    }
    .site-logo-img {
        width: 175px;
        max-width: 185px;
    }
    .mobile-brand-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .mobile-icon-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--slate-200);
        text-decoration: none;
        transition: var(--transition);
    }
    .mobile-icon-phone {
        background: var(--slate-100);
        color: var(--navy-900);
    }
    .mobile-icon-phone:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }
    .mobile-icon-wa {
        background: #dcfce7;
        border-color: #86efac;
        color: #15803d;
    }
    .mobile-icon-wa:hover {
        background: #25d366;
        color: var(--white);
        border-color: #25d366;
    }

    .header-nav-stripe {
        background: #f1f5f9;
    }
    .header-nav-inner {
        height: 46px;
    }
    .mobile-sub-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .mobile-menu-trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px 10px;
        border-radius: var(--radius-sm);
        color: var(--navy-900);
        font-weight: 700;
        font-size: 0.92rem;
        min-height: 40px;
        transition: background 0.15s ease;
    }
    .mobile-menu-trigger:hover {
        background: var(--slate-200);
    }
    .hamburger-box {
        display: flex;
        flex-direction: column;
        gap: 3.5px;
        width: 18px;
    }
    .hamburger-bar {
        width: 100%;
        height: 2px;
        background: var(--navy-900);
        border-radius: 2px;
    }
    .menu-label {
        letter-spacing: 0.02em;
    }
    .mobile-sub-cta {
        padding: 6px 14px;
        font-size: 0.82rem;
        font-weight: 700;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
}

/* Mobile Drawer & Backdrop */
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 13, 26, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 99999;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.mobile-nav-drawer.open {
    transform: translateX(0);
}
body.drawer-open {
    overflow: hidden;
}
body.drawer-open .mobile-bottom-bar {
    display: none !important;
}
body.drawer-open .consent-banner {
    display: none !important;
}
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--slate-200);
}
.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--slate-600);
    cursor: pointer;
    padding: 4px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    -webkit-overflow-scrolling: touch;
}
.mobile-drawer-body a {
    display: block;
    padding: 12px 8px;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--navy-900);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-drawer-body a:hover,
.mobile-drawer-body a.active {
    background: var(--slate-100);
    color: var(--primary);
}
.mobile-drawer-divider {
    height: 1px;
    background: var(--slate-200);
    margin: 10px 0;
}
.mobile-drawer-subheading {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-400);
    letter-spacing: 0.05em;
    padding: 6px 8px 2px;
}
.mobile-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--slate-200);
    background: var(--slate-50);
}

/* Sticky Mobile Bottom Bar - Ultra Stable & Hardware Accelerated */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--slate-200);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px)) 8px;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.12);
    z-index: 99995 !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, bottom;
    contain: layout paint;
}
.mobile-bottom-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
}
.bottom-bar-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.bottom-bar-btn:active {
    transform: scale(0.97);
}
.bottom-bar-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.bottom-bar-btn .btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    text-align: left;
    overflow: hidden;
}
.bottom-bar-btn .btn-main-label {
    font-size: clamp(0.76rem, 3vw, 0.86rem);
    font-weight: 800;
    letter-spacing: -0.2px;
    white-space: nowrap;
}
.bottom-bar-btn .btn-sub-label {
    font-size: clamp(0.58rem, 2.2vw, 0.64rem);
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.bottom-bar-btn.btn-call {
    background: var(--navy-900);
    color: var(--white);
}
.bottom-bar-btn.btn-call:hover {
    background: var(--navy-950);
    color: var(--white);
}
.bottom-bar-btn.btn-wa {
    background: #25d366;
    color: var(--white);
}
.bottom-bar-btn.btn-wa:hover {
    background: #20ba59;
    color: var(--white);
}

@media (max-width: 991px) {
    .mobile-bottom-bar { 
        display: block !important; 
    }
    body { 
        padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)) !important; 
    }
    .hero-wrapper { 
        padding: 32px 0 48px; 
    }
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--navy-800) 100%);
    color: var(--white);
    padding: 54px 0 72px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-strip {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--slate-300);
}
.hero-trust-item svg {
    color: var(--accent);
}

.hero-card-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 36px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* ========================================================
   MODERN SADE HERO SLIDER WITH GENERATED BACKGROUND
   ======================================================== */
.hero-slider-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 50px 0 38px;
    color: var(--white);
    background-color: var(--navy-950);
}

.hero-slider-bg {
    position: absolute;
    inset: 0;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 12s ease;
}

.hero-slider-section:hover .hero-slider-bg {
    transform: scale(1.05);
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 20, 42, 0.94) 0%, rgba(10, 25, 47, 0.82) 48%, rgba(10, 25, 47, 0.52) 100%);
    z-index: 2;
}

.hero-slider-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-slides-wrapper {
    display: grid;
    grid-template-areas: "slide";
    position: relative;
    width: 100%;
    align-items: start;
}

.hero-slide {
    grid-area: slide;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(72, 202, 228, 0.16);
    border: 1px solid rgba(72, 202, 228, 0.35);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.badge-sparkle {
    color: var(--accent);
    font-size: 0.9rem;
}

.slide-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 800px;
}

.slide-title span {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.1rem;
    color: var(--slate-300);
    line-height: 1.65;
    margin-bottom: 26px;
    max-width: 620px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 26px;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

.slide-pills {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
    max-width: 720px;
}

.pill-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    color: var(--slate-300);
    font-weight: 500;
}

.pill-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Minimalist Slider Controls */
.hero-slider-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding-top: 10px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.06);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    padding: 7px 16px;
    color: var(--slate-300);
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.82rem;
    font-weight: 600;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.slider-dot.active {
    background: rgba(0, 180, 216, 0.22);
    border-color: var(--accent);
    color: #ffffff;
}

.slider-dot .dot-num {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
}

.slider-dot .dot-bar {
    width: 26px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    overflow: hidden;
    display: block;
}

.slider-dot.active .dot-progress {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: sliderProgress 6s linear;
}

@keyframes sliderProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Dedicated Clean Lead Form Section Below Slider */
.lead-section-wrapper {
    background: #f8fafc;
    padding: 44px 0 52px;
    border-bottom: 1px solid var(--slate-200);
}

.lead-form-container {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 36px 42px;
    box-shadow: 0 16px 40px rgba(10, 25, 47, 0.05);
}

.lead-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.lead-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 6px;
}

@media (max-width: 1024px) {
    .lead-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-card-box { padding: 20px; }
    .desktop-only { display: none !important; }

    .hero-slider-section {
        min-height: auto;
        padding: 22px 0 16px;
    }
    .hero-slides-wrapper {
        display: grid;
        grid-template-areas: "slide";
        width: 100%;
        align-items: start;
    }
    .slide-badge {
        font-size: 0.74rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    .slide-title {
        font-size: 1.48rem;
        line-height: 1.24;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }
    .slide-description {
        font-size: 0.86rem;
        line-height: 1.45;
        margin-bottom: 14px;
        max-width: 100%;
        color: var(--slate-300);
    }
    .slide-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }
    .slide-actions .btn {
        min-height: 42px;
        padding: 8px 10px;
        font-size: 0.84rem;
        text-align: center;
        width: 100%;
    }
    .slide-pills {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 6px;
    }
    .pill-item {
        font-size: 0.74rem;
        gap: 5px;
    }
    .pill-item svg {
        width: 14px;
        height: 14px;
    }
    .hero-slider-nav {
        margin-top: 10px;
        padding-top: 0;
        gap: 8px;
        justify-content: center;
    }
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    .slider-arrow svg {
        width: 15px;
        height: 15px;
    }
    .slider-dots .dot-text {
        display: none;
    }
    .slider-dot {
        padding: 4px 8px;
        font-size: 0.72rem;
        gap: 4px;
    }
    .slider-dot .dot-bar {
        width: 16px;
        height: 2px;
    }
    .hero-slider-bg {
        background-position: 70% center;
    }
    .hero-slider-overlay {
        background: linear-gradient(180deg, rgba(8, 20, 42, 0.88) 0%, rgba(10, 25, 47, 0.80) 50%, rgba(8, 20, 42, 0.90) 100%);
    }
    .lead-form-container {
        padding: 24px 18px;
    }
    .lead-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Forms & Inputs */
.lead-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-200);
}
.form-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.88rem;
    color: var(--slate-600);
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    font-size: 0.95rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}
textarea.form-control {
    min-height: 80px;
    resize: vertical;
}
.form-helper {
    font-size: 0.78rem;
    color: var(--slate-400);
    margin-top: 4px;
}

/* Cards & Components */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 182, 0.2);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card-img {
    height: 220px;
    background: var(--slate-50);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-card-img img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-category {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.35;
}
.product-desc {
    font-size: 0.88rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}
.product-price-box {
    margin-bottom: 16px;
}
.product-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy-900);
}
.product-old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--slate-400);
    margin-left: 8px;
}
.product-actions {
    display: flex;
    gap: 10px;
}

/* Service Card */
.service-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(72, 202, 228, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}
.service-desc {
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.65;
    margin-bottom: 18px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-link:hover {
    gap: 10px;
}

/* Trust Bar */
.trust-bar {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    padding: 36px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 2px;
}
.trust-item-desc {
    font-size: 0.8rem;
    color: var(--slate-600);
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 24px 20px;
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
footer.site-footer {
    background: var(--navy-950);
    color: var(--slate-400);
    padding: 70px 0 30px;
    border-top: 1px solid var(--navy-800);
}
.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--slate-400);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* Compact Cookie Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    width: calc(100% - 48px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    box-shadow: 0 16px 40px rgba(4, 13, 26, 0.22);
    border: 1px solid var(--slate-200);
    z-index: 99990;
    transition: var(--transition);
}
@media (max-width: 991px) {
    .consent-banner {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important; /* positioned right above the mobile sticky action bar */
        right: 12px;
        left: 12px;
        width: auto;
        padding: 14px 16px;
        border-radius: var(--radius-md);
        box-shadow: 0 10px 30px rgba(4, 13, 26, 0.25);
    }
}
.consent-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.consent-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 2px;
}
.consent-desc {
    font-size: 0.82rem;
    color: var(--slate-600);
    line-height: 1.45;
}
.consent-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.btn-consent-link {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    text-decoration: underline;
}

/* Cookie Preferences Modal */
.consent-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 13, 26, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.consent-modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalFadeIn 0.2s ease-out;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.consent-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--slate-200);
}
.consent-modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
}
.consent-modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--slate-500);
    cursor: pointer;
    padding: 4px 8px;
}
.consent-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
}
.consent-category {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 12px;
}
.consent-cat-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.consent-cat-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.consent-cat-label strong {
    display: block;
    font-size: 0.92rem;
    color: var(--navy-900);
    margin-bottom: 2px;
}
.consent-cat-label p {
    font-size: 0.8rem;
    color: var(--slate-600);
    line-height: 1.4;
    margin: 0;
}
.consent-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid var(--slate-200);
    background: var(--slate-50);
}

/* Compare Table Responsive Scroll */
.compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}
.compare-feature-col {
    position: sticky;
    left: 0;
    background: var(--slate-50);
    z-index: 2;
    border-right: 1px solid var(--slate-200);
}

