/* ============================================
   UGODA KONSUMENCKA - Professional PWA Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Professional Dark Blue Theme */
    --color-primary: #1a365d;
    --color-primary-light: #2d4a7c;
    --color-primary-dark: #0f2442;
    --color-accent: #d69e2e;
    --color-accent-light: #ecc94b;
    --color-accent-dark: #b7791f;

    /* Backgrounds */
    --bg-dark: #0a1628;
    --bg-card: #111d33;
    --bg-card-hover: #1a2b47;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --text-dark: #1a202c;
    --text-dark-secondary: #4a5568;

    /* Status Colors */
    --color-success: #48bb78;
    --color-warning: #ed8936;
    --color-danger: #f56565;
    --color-info: #4299e1;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(214, 158, 46, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-drawer: 300;
    --z-modal: 400;
    --z-toast: 500;

    /* Safe areas for PWA */
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-left: env(safe-area-inset-left, 0px);
    --safe-area-right: env(safe-area-inset-right, 0px);

    /* App-specific */
    --header-height: 60px;
    --bottom-nav-height: 70px;
    --desktop-nav-height: 80px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--color-accent);
    color: var(--bg-dark);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Images */
img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* Inputs */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

/* ============================================
   Top Bar (Phone Number)
   ============================================ */

.top-bar {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    padding: var(--space-sm) var(--space-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--bg-dark);
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.top-bar-phone:hover {
    opacity: 0.9;
}

.top-bar-phone svg {
    width: 16px;
    height: 16px;
    animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.phone-label {
    font-size: 0.8125rem;
}

.phone-number {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .phone-label {
        display: none;
    }
}

/* ============================================
   App Container
   ============================================ */

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: calc(var(--bottom-nav-height) + var(--safe-area-bottom));
}

@media (min-width: 1024px) {
    .app-container {
        padding-top: calc(var(--desktop-nav-height) + 40px);
        padding-bottom: 0;
    }
}

/* ============================================
   Container
   ============================================ */

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

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ============================================
   Mobile App Header
   ============================================ */

.app-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 22, 40, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: var(--z-sticky);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--safe-area-top);
}

.app-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--space-md);
}

/* Logo */
.logo-mark {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--bg-dark);
    animation: logo-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(214, 158, 46, 0);
}

@keyframes logo-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(214, 158, 46, 0),
                    0 2px 8px rgba(214, 158, 46, 0.2);
        transform: scale(1);
        background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 180, 50, 0.2),
                    0 4px 24px rgba(255, 140, 50, 0.45);
        transform: scale(1.03);
        background: linear-gradient(135deg, #f0b429 0%, #e09100 100%);
    }
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--color-accent);
    font-weight: 700;
}

/* Header Status - Online Badge */
.header-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 20px;
    margin-left: auto;
    margin-right: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

@keyframes status-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
    }
}

.status-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Hide status on very small screens */
@media (max-width: 359px) {
    .header-status {
        display: none;
    }
}

/* Hide on desktop - it's for mobile only */
@media (min-width: 1024px) {
    .header-status {
        display: none;
    }
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.menu-toggle:active {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide on desktop */
@media (min-width: 1024px) {
    .app-header {
        display: none;
    }
}

/* ============================================
   Desktop Navigation
   ============================================ */

.desktop-nav {
    display: none;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    height: var(--desktop-nav-height);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 22, 40, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: var(--z-sticky);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.125rem;
    color: var(--text-primary);
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo .logo-icon {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
}

.nav-logo strong {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--bg-dark) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
    animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(214, 158, 46, 0),
                    0 2px 8px rgba(214, 158, 46, 0.2);
        background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(255, 180, 50, 0.15),
                    0 4px 24px rgba(255, 140, 50, 0.4);
        background: linear-gradient(135deg, #f0b429 0%, #e09100 100%);
    }
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.4);
    animation: none;
}

/* ============================================
   Mobile Drawer
   ============================================ */

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: var(--z-drawer);
    pointer-events: none;
}

.mobile-drawer.active {
    pointer-events: all;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-card);
    transform: translateX(100%);
    transition: transform var(--transition-slow) cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    padding-top: var(--safe-area-top);
}

.mobile-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.drawer-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.drawer-nav {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.drawer-link:hover,
.drawer-link:active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.drawer-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.drawer-cta {
    padding: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.drawer-cta-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* Hide drawer on desktop */
@media (min-width: 1024px) {
    .mobile-drawer {
        display: none;
    }
}

/* ============================================
   Mobile Bottom Navigation
   ============================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--bottom-nav-height) + var(--safe-area-bottom));
    padding-bottom: var(--safe-area-bottom);
    background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(10, 22, 40, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    z-index: var(--z-sticky);
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.6875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

.bottom-nav-item.active {
    color: var(--color-accent);
}

.bottom-nav-item.active svg {
    transform: scale(1.1);
}

/* Premium CTA Button - Rectangular Floating Design */
.bottom-nav-item.cta {
    flex: none;
    width: auto;
    flex-direction: row;
    gap: 6px;
    padding: 0 16px;
    height: 42px;
    margin: 8px 4px 8px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c8850a 100%);
    border-radius: 21px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(214, 158, 46, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: cta-btn-glow 3s ease-in-out infinite;
}

.bottom-nav-item.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: cta-shine 4s ease-in-out infinite;
}

@keyframes cta-btn-glow {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(214, 158, 46, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 6px 25px rgba(255, 170, 50, 0.5),
            0 3px 8px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            0 0 0 3px rgba(214, 158, 46, 0.15);
        transform: scale(1.02);
    }
}

@keyframes cta-shine {
    0%, 100% {
        left: -100%;
    }
    50%, 60% {
        left: 100%;
    }
}

.bottom-nav-item.cta svg {
    color: var(--bg-dark);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bottom-nav-item.cta span {
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.bottom-nav-item.cta:active {
    transform: scale(0.96);
}

/* Adjust other nav items when CTA is present */
.mobile-bottom-nav {
    justify-content: center;
    gap: 0;
}

.mobile-bottom-nav .bottom-nav-item:not(.cta) {
    flex: 1;
    max-width: 80px;
}

/* Hide on desktop */
@media (min-width: 1024px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* ============================================
   Main Content
   ============================================ */

.main-content {
    flex: 1;
}

/* ============================================
   Section Styles
   ============================================ */

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

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(214, 158, 46, 0.15);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.highlight {
    color: var(--color-accent);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--bottom-nav-height));
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        min-height: calc(100vh - var(--desktop-nav-height));
        padding: var(--space-3xl) 0;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(26, 54, 93, 0.4) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 50%, rgba(214, 158, 46, 0.1) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a365d' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.hero-subtitle-line {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85em;
    margin-top: var(--space-sm);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.1875rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

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

@media (max-width: 1023px) {
    .hero-scroll-indicator {
        display: none;
    }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
}

.stat-box {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(214, 158, 46, 0.3);
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-xl {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.0625rem;
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Comparison Section (Ugoda vs Upadłość)
   ============================================ */

.comparison {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

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

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

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.comparison-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.comparison-card.featured {
    border-color: rgba(214, 158, 46, 0.4);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.3) 0%, rgba(214, 158, 46, 0.08) 100%);
}

.comparison-header {
    padding: var(--space-xl);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.comparison-icon svg {
    width: 28px;
    height: 28px;
}

.comparison-icon.success {
    background: rgba(72, 187, 120, 0.15);
    color: var(--color-success);
}

.comparison-icon.warning,
.comparison-icon.neutral {
    background: rgba(237, 137, 54, 0.15);
    color: var(--color-warning);
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.comparison-subtitle {
    font-size: 0.9375rem;
    color: var(--color-accent);
    font-weight: 500;
}

.comparison-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.comparison-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-accent);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.comparison-list {
    padding: var(--space-xl);
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-list li.positive svg {
    color: var(--color-success);
}

.comparison-list li.negative svg {
    color: var(--color-danger);
}

.comparison-list li.neutral svg,
.comparison-list li.warning svg {
    color: var(--color-warning);
}

.comparison-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comparison-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-list li span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Button inside comparison card */
.comparison-card > .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 var(--space-xl) var(--space-xl);
    width: calc(100% - var(--space-xl) * 2);
    text-align: center;
}

.comparison-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(214, 158, 46, 0.08);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(214, 158, 46, 0.2);
    text-align: left;
}

@media (max-width: 640px) {
    .comparison-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.comparison-note .note-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-note .note-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.comparison-note .note-content {
    flex: 1;
}

.comparison-note strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.comparison-note p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Audience Section (Dla kogo)
   ============================================ */

.audience {
    background: var(--bg-card);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(214, 158, 46, 0.3);
    transform: translateY(-4px);
}

.audience-icon {
    width: 64px;
    height: 64px;
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.audience-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
}

.audience-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.audience-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.audience-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(214, 158, 46, 0.15);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ============================================
   Criteria Section (Kiedy możemy pomóc)
   ============================================ */

.criteria-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: var(--space-3xl) 0;
}

.criteria-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.criteria-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.criteria-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(72, 187, 120, 0.3);
}

.criteria-item.required {
    border-color: rgba(214, 158, 46, 0.3);
    background: rgba(214, 158, 46, 0.05);
}

.criteria-icon {
    width: 40px;
    height: 40px;
    background: rgba(72, 187, 120, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.criteria-item.required .criteria-icon {
    background: rgba(214, 158, 46, 0.15);
}

.criteria-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
}

.criteria-item.required .criteria-icon svg {
    color: var(--color-accent);
}

.criteria-content {
    flex: 1;
}

.criteria-content strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.criteria-content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.criteria-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(72, 187, 120, 0.15);
    color: var(--color-success);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-left: auto;
    flex-shrink: 0;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

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

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

.service-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.service-card-inner {
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.service-card:hover .service-card-inner {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card.featured .service-card-inner {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.4) 0%, rgba(214, 158, 46, 0.1) 100%);
    border-color: rgba(214, 158, 46, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-accent);
}

.service-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-accent);
    color: var(--bg-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.service-subtitle {
    font-size: 0.9375rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-features {
    margin-bottom: var(--space-lg);
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.service-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-meta {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    margin-bottom: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.meta-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* ============================================
   Calculator Section
   ============================================ */

.calculator-section {
    background: var(--bg-dark);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
}

.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.calc-step-header {
    margin-bottom: var(--space-xl);
}

.step-number {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(214, 158, 46, 0.15);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.form-group input {
    width: 100%;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.2);
}

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

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.calc-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.calc-next {
    margin-left: auto;
}

/* Calculator Results */
.calculator-results {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    animation: fadeIn 0.4s ease;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.results-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.result-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
}

.result-card.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.4) 0%, rgba(214, 158, 46, 0.1) 100%);
    border: 1px solid rgba(214, 158, 46, 0.3);
}

.result-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.result-value.positive {
    color: var(--color-success);
}

.result-value.negative {
    color: var(--color-danger);
}

.results-indicator {
    margin-bottom: var(--space-xl);
}

.indicator-bar {
    height: 12px;
    background: linear-gradient(90deg,
        var(--color-success) 0%, var(--color-success) 40%,
        var(--color-warning) 40%, var(--color-warning) 70%,
        var(--color-danger) 70%, var(--color-danger) 100%
    );
    border-radius: var(--radius-full);
    position: relative;
}

.indicator-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: var(--radius-full);
}

.indicator-marker {
    position: absolute;
    top: -4px;
    width: 20px;
    height: 20px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: left var(--transition-base);
}

.indicator-labels {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-sm);
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.results-message {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.results-message h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.results-message p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.results-message.warning {
    border-left: 4px solid var(--color-warning);
}

.results-message.danger {
    border-left: 4px solid var(--color-danger);
}

.results-message.safe {
    border-left: 4px solid var(--color-success);
}

.results-cta {
    text-align: center;
}

.cta-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ============================================
   Process Section - New Interactive Design
   ============================================ */

.process-new {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    padding: var(--space-3xl) 0 5rem;
    overflow: hidden;
}

/* Progress Bar */
.process-progress {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--space-md);
}

.progress-track {
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    background: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot-number {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.progress-dot:hover .dot-number {
    border-color: rgba(214, 158, 46, 0.5);
    color: var(--text-primary);
}

.progress-dot.active .dot-number,
.progress-dot.completed .dot-number {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-color: var(--color-accent);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(214, 158, 46, 0.4);
}

.dot-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
}

.progress-dot.active .dot-label {
    color: var(--color-accent);
}

@media (max-width: 640px) {
    .progress-track {
        left: 30px;
        right: 30px;
    }

    .dot-label {
        display: none;
    }

    .dot-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

/* Process Cards */
.process-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.process-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.process-card:hover {
    border-color: rgba(214, 158, 46, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.process-card.active {
    border-color: rgba(214, 158, 46, 0.5);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.3) 0%, rgba(214, 158, 46, 0.05) 100%);
}

.process-card.active .card-glow {
    opacity: 1;
}

/* Card Header */
.process-card .card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.process-card .card-icon {
    width: 52px;
    height: 52px;
    background: rgba(214, 158, 46, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.process-card:hover .card-icon {
    background: rgba(214, 158, 46, 0.2);
    transform: scale(1.05);
}

.process-card .card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-accent);
}

.process-card .card-icon.success {
    background: rgba(72, 187, 120, 0.15);
}

.process-card .card-icon.success svg {
    color: var(--color-success);
}

.process-card .card-badge {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.process-card .card-badge.free {
    background: rgba(72, 187, 120, 0.15);
    color: var(--color-success);
}

.process-card .card-badge.success {
    background: rgba(214, 158, 46, 0.15);
    color: var(--color-accent);
}

/* Card Content */
.process-card .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.process-card .card-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Card Details */
.process-card .card-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.process-card .detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.process-card .detail-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
    opacity: 0.7;
}

/* Card Checklist */
.process-card .card-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.process-card .check-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.process-card .check-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* Card Result (for final card) */
.process-card .card-result {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(72, 187, 120, 0.05) 100%);
    border: 1px solid rgba(72, 187, 120, 0.2);
    border-radius: var(--radius-lg);
}

.process-card .result-icon {
    width: 40px;
    height: 40px;
    background: rgba(72, 187, 120, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-card .result-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
}

.process-card .result-text {
    display: flex;
    flex-direction: column;
}

.process-card .result-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-card .result-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-success);
}

/* Process Summary */
.process-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    max-width: 900px;
    margin: var(--space-3xl) auto var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
}

.summary-icon {
    width: 44px;
    height: 44px;
    background: rgba(214, 158, 46, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

.summary-content {
    display: flex;
    flex-direction: column;
}

.summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.summary-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .process-summary {
        flex-direction: column;
        gap: var(--space-md);
    }

    .summary-divider {
        width: 60px;
        height: 1px;
    }

    .summary-item {
        width: 100%;
        justify-content: center;
    }
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    padding: var(--space-3xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

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

/* Main benefit card - spans full width on desktop */
.benefit-card.benefit-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.4) 0%, rgba(214, 158, 46, 0.1) 100%);
    border: 1px solid rgba(214, 158, 46, 0.3);
}

@media (min-width: 768px) {
    .benefit-card.benefit-main {
        grid-template-columns: auto 1fr;
        gap: var(--space-2xl);
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .benefit-card.benefit-main {
        grid-template-columns: 380px 1fr;
        gap: var(--space-3xl);
    }
}

/* Benefit card base */
.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(214, 158, 46, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Benefit visual - Reduction Display */
.benefit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reduction-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 1200px) {
    .reduction-display {
        flex-direction: row;
        gap: var(--space-xl);
    }
}

/* Circular Progress */
.reduction-circle {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.reduction-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.reduction-circle .circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.reduction-circle .circle-progress {
    fill: none;
    stroke: url(#progressGradient);
    stroke: var(--color-accent);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-out;
}

.reduction-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.reduction-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.reduction-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Comparison rows */
.reduction-comparison {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    min-width: 160px;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    min-width: 180px;
}

.comparison-row.before {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.comparison-row.after {
    background: rgba(72, 187, 120, 0.15);
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.row-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.row-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.comparison-row.before .row-value {
    color: #f87171;
    text-decoration: line-through;
    text-decoration-color: rgba(248, 113, 113, 0.5);
}

.comparison-row.after .row-value {
    color: var(--color-success);
}

.comparison-arrow {
    display: flex;
    justify-content: center;
    padding: var(--space-xs) 0;
}

.comparison-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.comparison-saved {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.2) 0%, rgba(214, 158, 46, 0.1) 100%);
    border: 1px solid rgba(214, 158, 46, 0.3);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xs);
    min-width: 180px;
}

.comparison-saved svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.comparison-saved span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.comparison-saved strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* Benefit content */
.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.benefit-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* Benefit list */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
}

.benefit-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
}

.benefit-list li span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.benefit-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Benefit icon */
.benefit-icon {
    width: 52px;
    height: 52px;
    background: rgba(214, 158, 46, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-accent);
}

.benefit-icon.large {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
}

.benefit-icon.large svg {
    width: 32px;
    height: 32px;
}

/* Regular benefit cards */
.benefit-card:not(.benefit-main) h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.benefit-card:not(.benefit-main) p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Benefit highlight */
.benefit-highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.2);
    border-radius: var(--radius-full);
}

.benefit-highlight svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
}

.benefit-highlight span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-success);
}

/* Benefits proof section */
.benefits-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
}

@media (min-width: 1024px) {
    .benefits-proof {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* Quote section */
.proof-quote {
    position: relative;
    padding-left: var(--space-xl);
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    opacity: 0.5;
}

.proof-quote blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0 0 var(--space-lg) 0;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Proof stats */
.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 640px) {
    .proof-stats {
        grid-template-columns: 1fr;
    }
}

.proof-stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(214, 158, 46, 0.08);
    border-radius: var(--radius-xl);
}

.proof-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.proof-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    background: var(--bg-card);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(214, 158, 46, 0.3);
    transform: translateY(-4px);
}

.testimonial-content {
    flex: 1;
    margin-bottom: var(--space-lg);
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
}

.author-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

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

.slider-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

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

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.dot.active {
    width: 24px;
    background: var(--color-accent);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta {
    background: var(--bg-dark);
    padding: var(--space-3xl) 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.6) 0%, rgba(214, 158, 46, 0.15) 100%);
    border: 1px solid rgba(214, 158, 46, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: var(--space-3xl);
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-card);
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .footer {
        padding: var(--space-3xl) 0 var(--space-xl);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-xl);
        margin-bottom: var(--space-2xl);
    }

    .footer-grid.footer-grid-simple {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

/* Mobile compact footer layout */
@media (max-width: 767px) {
    .footer-grid.footer-grid-simple {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-sm);
    }

    .footer-grid.footer-grid-simple .footer-brand {
        flex: 1;
        min-width: 0;
    }

    .footer-grid.footer-grid-simple .footer-contact {
        flex-shrink: 0;
        text-align: right;
    }

    .footer-grid.footer-grid-simple .footer-tagline {
        display: none;
    }

    .footer-grid.footer-grid-simple .footer-phone {
        margin-top: 0;
        align-items: flex-end;
    }

    .footer-grid.footer-grid-simple .footer-contact > p {
        display: none;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
    .footer-logo {
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .footer-logo .logo-icon {
        width: 36px;
        height: 36px;
    }
}

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-tagline {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    margin-bottom: var(--space-sm);
}

.footer-contact a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-hours {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* Footer Phone */
.footer-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .footer-phone {
        gap: var(--space-xs);
    }
}

.phone-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 2px 8px;
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .phone-badge {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}

.phone-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

@media (min-width: 768px) {
    .phone-link {
        font-size: 1.25rem;
    }
}

.phone-link:hover {
    color: var(--color-accent);
}

/* Footer Disclaimer */
.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer .disclaimer-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.footer-disclaimer .disclaimer-icon svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: justify;
}

.footer-disclaimer p strong {
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 640px) {
    .footer-disclaimer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-disclaimer p {
        text-align: center;
    }
}

.footer-bottom-subtle {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: none;
    opacity: 0.6;
}

.footer-bottom-subtle p {
    font-size: 0.75rem;
}

.footer-bottom-subtle .footer-legal a {
    font-size: 0.75rem;
}

/* ============================================
   Install PWA Prompt
   ============================================ */

.install-prompt {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + var(--safe-area-bottom) + var(--space-md));
    left: var(--space-md);
    right: var(--space-md);
    z-index: var(--z-modal);
    animation: slideUp 0.4s ease;
}

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

@media (min-width: 1024px) {
    .install-prompt {
        bottom: var(--space-xl);
        left: auto;
        right: var(--space-xl);
        width: 360px;
    }
}

.install-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.install-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.install-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.install-close svg {
    width: 16px;
    height: 16px;
}

.install-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.install-text {
    flex: 1;
    min-width: 0;
}

.install-text h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.install-text p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ============================================
   Utility Classes
   ============================================ */

[hidden] {
    display: none !important;
}

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

/* AOS-like animations for scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 640px) {
    /* Mobile-specific adjustments */
    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .service-meta {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/* ============================================
   Knowledge Base (Blog) Styles
   ============================================ */

.kb-hero {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

@media (min-width: 1024px) {
    .kb-hero {
        padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    }
}

.kb-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kb-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.kb-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.kb-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.kb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kb-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
}

.kb-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Knowledge Base Categories */
.kb-categories {
    background: var(--bg-card);
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .kb-categories {
        padding: var(--space-3xl) 0;
    }
}

.kb-category {
    margin-bottom: var(--space-2xl);
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kb-category:last-child {
    margin-bottom: 0;
}

.kb-category-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.4) 0%, rgba(214, 158, 46, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .kb-category-header {
        flex-wrap: nowrap;
        align-items: center;
        padding: var(--space-xl);
    }
}

.kb-category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kb-category-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bg-dark);
}

.kb-category-info {
    flex: 1;
    min-width: 0;
}

.kb-category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
    .kb-category-title {
        font-size: 1.375rem;
    }
}

.kb-category-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.kb-category-count {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-md);
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Knowledge Base Articles List */
.kb-articles-list {
    padding: var(--space-md);
}

@media (min-width: 768px) {
    .kb-articles-list {
        padding: var(--space-lg);
    }
}

.kb-article {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.kb-article:last-child {
    margin-bottom: 0;
}

.kb-article:hover {
    background: rgba(214, 158, 46, 0.05);
    border-color: rgba(214, 158, 46, 0.2);
    transform: translateX(4px);
}

.kb-article-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.kb-article-content {
    flex: 1;
    min-width: 0;
}

.kb-article-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .kb-article-title {
        font-size: 1rem;
    }
}

.kb-article-excerpt {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-xs);
    display: none;
}

@media (min-width: 768px) {
    .kb-article-excerpt {
        display: block;
    }
}

.kb-article-status {
    display: inline-flex;
    align-items: center;
    padding: 2px var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Active Article Link */
a.kb-article {
    text-decoration: none;
    color: inherit;
}

a.kb-article-active {
    background: rgba(214, 158, 46, 0.08);
    border-color: rgba(214, 158, 46, 0.2);
}

a.kb-article-active:hover {
    background: rgba(214, 158, 46, 0.12);
    border-color: rgba(214, 158, 46, 0.3);
    transform: translateX(4px);
}

a.kb-article-active .kb-article-number {
    color: var(--color-accent);
}

.kb-article-meta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 2px var(--space-sm);
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Knowledge Base CTA */
.kb-cta {
    background: var(--bg-dark);
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .kb-cta {
        padding: var(--space-3xl) 0;
    }
}

/* ============================================
   Legal Guarantees Page Styles
   ============================================ */

.legal-hero {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
    text-align: center;
}

@media (min-width: 1024px) {
    .legal-hero {
        padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    }
}

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

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.legal-hero-badge svg {
    width: 16px;
    height: 16px;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.legal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .legal-subtitle {
        font-size: 1.0625rem;
    }
}

/* Article-specific Legal Hero */
.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.25;
}

.legal-hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .legal-hero-subtitle {
        font-size: 1.0625rem;
    }
}

.legal-hero-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.legal-hero-meta .meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-hero-meta .meta-item svg {
    opacity: 0.7;
}

/* Article Content Section */
.legal-content {
    background: var(--bg-card);
    padding: var(--space-xl) 0 var(--space-2xl);
}

.legal-content .container {
    max-width: 800px;
}

@media (min-width: 1024px) {
    .legal-content {
        padding: var(--space-2xl) 0 var(--space-3xl);
    }
}

/* Legal Framework Section */
.legal-framework {
    background: var(--bg-card);
    padding: var(--space-xl) 0 var(--space-2xl);
}

@media (min-width: 1024px) {
    .legal-framework {
        padding: var(--space-2xl) 0 var(--space-3xl);
    }
}

/* Legal Card */
.legal-card {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

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

.legal-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.4) 0%, rgba(214, 158, 46, 0.08) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .legal-card-header {
        flex-wrap: nowrap;
        align-items: center;
        padding: var(--space-xl);
    }
}

.legal-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bg-dark);
}

.legal-card-title-group {
    flex: 1;
    min-width: 0;
}

.legal-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.legal-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.legal-card-badge {
    display: inline-flex;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.legal-card-body {
    padding: var(--space-lg);
}

@media (min-width: 768px) {
    .legal-card-body {
        padding: var(--space-xl);
    }
}

/* Legal Article */
.legal-article {
    margin-bottom: var(--space-lg);
}

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

.legal-article-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.legal-article-number {
    display: inline-flex;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(214, 158, 46, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
}

.legal-article-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.legal-quote {
    position: relative;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.legal-quote strong {
    color: var(--text-primary);
    font-style: normal;
}

/* Legal Features */
.legal-features {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-features-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

@media (min-width: 768px) {
    .legal-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.legal-feature-item {
    display: flex;
    gap: var(--space-sm);
}

.legal-feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-success);
}

.legal-feature-icon svg {
    width: 18px;
    height: 18px;
}

.legal-feature-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.legal-feature-text p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Legal Highlight Box */
.legal-highlight-box {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(214, 158, 46, 0.08);
    border: 1px solid rgba(214, 158, 46, 0.2);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.legal-highlight-box.legal-highlight-success {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.legal-highlight-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
}

.legal-highlight-success .legal-highlight-icon {
    color: var(--color-success);
}

.legal-highlight-icon svg {
    width: 20px;
    height: 20px;
}

.legal-highlight-content strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.legal-highlight-content p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Legal Summary */
.legal-summary {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: var(--space-2xl) 0;
}

.legal-summary-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.legal-summary-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.legal-summary-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.legal-summary-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.legal-summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.legal-summary-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.legal-summary-stat .stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

/* Legal CTA */
.legal-cta {
    background: var(--bg-dark);
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .legal-cta {
        padding: var(--space-3xl) 0;
    }
}

/* Legal Cards Mobile Compact */
@media (max-width: 768px) {
    .legal-card {
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .legal-card-header {
        padding: 14px 16px;
        gap: 12px;
    }

    .legal-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .legal-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .legal-card-title {
        font-size: 1.05rem;
        line-height: 1.3;
    }

    .legal-card-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .legal-card-badge {
        padding: 4px 8px;
        font-size: 0.6rem;
    }

    .legal-card-body {
        padding: 14px 16px;
    }

    /* Legal Article Compact */
    .legal-article {
        margin-bottom: 16px;
    }

    .legal-article-header {
        margin-bottom: 10px;
        gap: 8px;
    }

    .legal-article-number {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .legal-article-label {
        font-size: 0.75rem;
    }

    /* Legal Quote Compact */
    .legal-quote {
        padding: 10px 14px;
        font-size: 0.85rem;
        line-height: 1.5;
        border-left-width: 2px;
    }

    /* Legal Features Compact */
    .legal-features {
        margin-top: 16px;
        padding-top: 14px;
    }

    .legal-features-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .legal-feature-grid {
        gap: 10px;
    }

    .legal-feature-item {
        gap: 8px;
    }

    .legal-feature-icon {
        width: 20px;
        height: 20px;
    }

    .legal-feature-icon svg {
        width: 14px;
        height: 14px;
    }

    .legal-feature-text strong {
        font-size: 0.8rem;
        margin-bottom: 1px;
    }

    .legal-feature-text p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Legal Highlight Box Compact */
    .legal-highlight-box {
        padding: 12px;
        margin-top: 14px;
        gap: 10px;
        border-radius: 10px;
    }

    .legal-highlight-icon {
        width: 28px;
        height: 28px;
    }

    .legal-highlight-icon svg {
        width: 16px;
        height: 16px;
    }

    .legal-highlight-content strong {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    .legal-highlight-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Legal Summary Compact */
    .legal-summary {
        padding: 32px 0;
    }

    .legal-summary-content h2 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .legal-summary-content > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .legal-summary-stats {
        gap: 20px;
    }

    .legal-summary-stat {
        min-width: 90px;
    }

    .legal-summary-stat .stat-number {
        font-size: 1.5rem;
    }

    .legal-summary-stat .stat-label {
        font-size: 0.7rem;
    }

    /* Legal CTA Compact */
    .legal-cta {
        padding: 32px 0;
    }
}

/* ================================
   Legal Banner Section
   ================================ */

.legal-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.legal-banner-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.legal-banner-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26, 54, 93, 0.3) 0%, transparent 50%);
}

.legal-banner-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.legal-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
    animation: legal-glow-pulse 4s ease-in-out infinite;
}

@keyframes legal-glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.legal-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.legal-banner-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-banner-icon .icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    animation: icon-ring-rotate 8s linear infinite;
}

.legal-banner-icon .icon-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.8);
}

.legal-banner-icon .icon-ring-inner {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 50%;
    animation: icon-ring-rotate 6s linear infinite reverse;
}

.legal-banner-icon .icon-ring-inner::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

@keyframes icon-ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.legal-banner-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.4));
}

.legal-banner-text {
    max-width: 600px;
}

.legal-banner-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(218, 165, 32, 0.15);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.legal-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.legal-banner-title .highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-banner-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.legal-banner-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 8px 0;
}

.legal-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.legal-feature:hover {
    background: rgba(218, 165, 32, 0.1);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-2px);
}

.legal-feature svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.legal-feature span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.legal-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c8850a 100%);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(218, 165, 32, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.legal-banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.legal-banner-btn:hover::before {
    left: 100%;
}

.legal-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(218, 165, 32, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.legal-banner-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.legal-banner-btn:hover svg {
    transform: translateX(4px);
}

/* Legal Banner Mobile */
@media (max-width: 768px) {
    .legal-banner {
        padding: 50px 0;
        background: linear-gradient(180deg, #0f172a 0%, #1a2744 100%);
    }

    /* Hide complex background effects on mobile */
    .legal-banner-pattern,
    .legal-banner-pattern::before,
    .legal-banner-glow {
        display: none;
    }

    .legal-banner-content {
        gap: 20px;
        padding: 0 8px;
    }

    .legal-banner-icon {
        width: 60px;
        height: 60px;
    }

    /* Simplify icon animation on mobile */
    .legal-banner-icon .icon-ring,
    .legal-banner-icon .icon-ring-inner {
        display: none;
    }

    .legal-banner-icon svg {
        width: 36px;
        height: 36px;
    }

    .legal-banner-tag {
        padding: 5px 12px;
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .legal-banner-title {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .legal-banner-description {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 8px;
    }

    .legal-banner-features {
        gap: 8px;
        margin: 4px 0;
    }

    .legal-feature {
        padding: 8px 12px;
        background: rgba(218, 165, 32, 0.1);
        border-color: rgba(218, 165, 32, 0.2);
    }

    .legal-feature span {
        font-size: 0.75rem;
    }

    .legal-feature svg {
        width: 14px;
        height: 14px;
    }

    .legal-banner-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: auto;
        max-width: none;
        border-radius: 10px;
    }

    .legal-banner-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Print styles */
@media print {
    .app-header,
    .desktop-nav,
    .mobile-bottom-nav,
    .mobile-drawer,
    .install-prompt {
        display: none !important;
    }

    .app-container {
        padding: 0;
    }

    body {
        background: white;
        color: black;
    }
}
