@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   AutomateIT - Premium Light Design with Orange Accents
   ==========================================================================
   Table of Contents:
   1.  CSS Variables & Design Tokens
   2.  Dark Mode Variables
   3.  Reset & Base
   4.  Typography
   5.  Layout Utilities
   6.  Button System
   7.  Header & Navigation
   8.  Mobile Menu (Slide-in)
   9.  Hero Section
   10. Hero Small (Subpage Header)
   11. Sections
   12. Services Grid & Cards
   13. Stats Section
   14. Process Timeline (How it Works)
   15. Testimonials Carousel
   16. CTA Section
   17. Social Proof
   18. About Section
   19. Contact Section
   20. Alerts
   21. Footer
   22. Page Content (Privacy / Static)
   23. Additional Components
   24. Responsive: 1440px
   25. Responsive: 1024px
   26. Responsive: 768px
   27. Responsive: 480px
   28. Print Styles
   ========================================================================== */


/* ==========================================================================
   1. CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Colors */
    --primary: #F76100;
    --primary-dark: #E05500;
    --primary-light: #FFF7F0;
    --primary-rgb: 247, 97, 0;
    --dark-navy: #0F172A;
    --success: #10B981;
    --success-light: #ECFDF5;
    --warning: #F59E0B;
    --warning-light: #FFFBEB;
    --danger: #EF4444;
    --danger-light: #FEF2F2;

    /* Text */
    --text: #4B5563;
    --text-dark: #111827;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;

    /* Backgrounds */
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-dark: #0F172A;
    --bg-card: #FFFFFF;

    /* Borders */
    --border: #E5E7EB;
    --border-light: #F3F4F6;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    --gradient-cta: linear-gradient(135deg, #F76100 0%, #E05500 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-orange: 0 8px 24px rgba(247, 97, 0, 0.25);

    /* Radii */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 100px;

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

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

    /* Typography */
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.25rem;
    --font-size-6xl: 4rem;

    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;

    /* Header */
    --header-height: 80px;
}


/* ==========================================================================
   2. Dark Mode Variables
   ========================================================================== */
[data-theme="dark"] {
    --primary: #FF7A1A;
    --primary-dark: #F76100;
    --primary-light: #2A1A0A;
    --primary-rgb: 255, 122, 26;
    --success: #34d399;
    --success-light: #064e3b;
    --warning: #fbbf24;
    --warning-light: #78350f;
    --danger: #f87171;
    --danger-light: #7f1d1d;

    --text: #CBD5E1;
    --text-dark: #F1F5F9;
    --text-light: #94A3B8;
    --text-lighter: #64748B;

    --bg: #0F172A;
    --bg-alt: #1E293B;
    --bg-dark: #020617;
    --bg-card: #1E293B;

    --border: #334155;
    --border-light: #1E293B;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.25);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.4);
    --shadow-orange: 0 8px 24px rgba(255, 122, 26, 0.3);

    --gradient-hero: linear-gradient(135deg, #020617 0%, #0F172A 50%, #0F172A 100%);
    --gradient-dark: linear-gradient(135deg, #020617 0%, #0F172A 100%);
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.95);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(15, 23, 42, 0.98);
}

[data-theme="dark"] .nav__logo {
    color: var(--text-dark);
}

[data-theme="dark"] .nav__toggle span {
    background: #F1F5F9;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .testimonial,
[data-theme="dark"] .about-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .form {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .service-card__icon,
[data-theme="dark"] .stat-card__icon,
[data-theme="dark"] .about-card__icon,
[data-theme="dark"] .value-card__icon,
[data-theme="dark"] .contact-info-card__icon,
[data-theme="dark"] .process-step__number {
    background: var(--primary-light);
}

[data-theme="dark"] .form__input,
[data-theme="dark"] .form__select,
[data-theme="dark"] .form__textarea {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text-dark);
}

[data-theme="dark"] .upload-zone {
    border-color: var(--border);
    background: var(--bg);
}

[data-theme="dark"] .upload-zone:hover,
[data-theme="dark"] .upload-zone--dragover {
    background: var(--primary-light);
}

[data-theme="dark"] .upload-zone__file {
    background: var(--bg-alt);
}

[data-theme="dark"] .footer {
    background: #020617;
}

[data-theme="dark"] .carousel__prev,
[data-theme="dark"] .carousel__next {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="dark"] .nav__dark-toggle-icon--light {
    display: none;
}

[data-theme="dark"] .nav__dark-toggle-icon--dark {
    display: block;
}

[data-theme="dark"] .btn--secondary {
    border-color: var(--border);
    color: var(--text-dark);
}

[data-theme="dark"] .btn--white {
    background: var(--bg-card);
    color: var(--text-dark);
}

[data-theme="dark"] .section__title {
    color: var(--text-dark);
}

[data-theme="dark"] .process-timeline::before {
    background: var(--border);
}

[data-theme="dark"] .page-content {
    color: var(--text);
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    z-index: var(--z-toast);
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

/* Selection */
::selection {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--text-dark);
}


/* ==========================================================================
   4. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 0;
    color: var(--text);
}

strong {
    font-weight: 700;
    color: var(--text-dark);
}

small {
    font-size: 0.875rem;
}


/* ==========================================================================
   5. Layout Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--lg {
    max-width: 1320px;
}

.container--sm {
    max-width: 800px;
}

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

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

.text-right {
    text-align: right;
}

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

.hidden {
    display: none !important;
}


/* ==========================================================================
   6. Button System
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

/* Primary Button */
.btn--primary {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    color: #FFFFFF;
}

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

/* Accent Button (for hero on dark bg) */
.btn--accent {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.btn--accent:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    color: #FFFFFF;
}

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

/* Secondary Button */
.btn--secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

/* White Button (dark bg CTA) */
.btn--white {
    background: #FFFFFF;
    color: var(--text-dark);
    border-color: #FFFFFF;
}

.btn--white:hover {
    background: #F8FAFC;
    border-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

/* Outline White Button (dark bg) */
.btn--outline-white {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Ghost White (transparent, white text/border for dark bg) */
.btn--ghost-white {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

/* Button Sizes */
.btn--lg {
    padding: 16px 40px;
    font-size: var(--font-size-lg);
}

.btn--sm {
    padding: 10px 20px;
    font-size: var(--font-size-sm);
}

.btn--block {
    width: 100%;
}

/* Link-style Button */
.btn--link {
    background: none;
    border: none;
    color: var(--primary);
    padding: 0;
    font-weight: 600;
    gap: 6px;
}

.btn--link:hover {
    color: var(--primary-dark);
}

.btn--link svg {
    transition: transform var(--transition);
}

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


/* ==========================================================================
   7. Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--border-light);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav__logo-accent {
    color: var(--primary);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--primary);
}

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

/* Portal Link */
.nav__link--portal {
    background: var(--primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-weight: 600;
    margin-left: 8px;
}

.nav__link--portal:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: var(--shadow-orange);
}

/* Language Link */
.nav__lang {
    margin-left: auto;
}

.nav__link--lang {
    font-weight: 600;
    color: var(--text-lighter);
    font-size: 0.875rem;
    padding: 8px 12px;
}

.nav__link--lang:hover {
    color: var(--primary);
}

/* Dark Mode Toggle */
.nav__dark-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: color var(--transition);
    border-radius: var(--radius-sm);
}

.nav__dark-toggle:hover {
    color: var(--primary);
}

.nav__dark-toggle svg {
    width: 20px;
    height: 20px;
}

.nav__dark-toggle-icon--light {
    display: block;
}

.nav__dark-toggle-icon--dark {
    display: none;
}

/* Hamburger Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: calc(var(--z-overlay) + 1);
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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


/* ==========================================================================
   8. Mobile Menu (Slide-in)
   ========================================================================== */
.nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: var(--z-overlay);
    opacity: 0;
    transition: opacity var(--transition);
}

.nav__backdrop.active {
    display: block;
    opacity: 1;
}

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

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 100px 24px 40px;
        z-index: var(--z-overlay);
        transform: translateX(100%);
        transition: transform var(--transition-smooth);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav__menu.active {
        transform: translateX(0);
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius);
    }

    .nav__link--portal {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }
}


/* ==========================================================================
   9. Hero Section
   ========================================================================== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Home Hero Variant */
.hero--home {
    min-height: 90vh;
}

/* Grid dot pattern overlay */
.hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* Orange glow effect */
.hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(247, 97, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Decorative elements */
.hero__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero__decor--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 97, 0, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero__decor--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 97, 0, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    position: relative;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 97, 0, 0.15);
    color: #F76100;
    border: 1px solid rgba(247, 97, 0, 0.3);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    color: #FFFFFF;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--primary);
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.hero__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero Visual (right column) */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__visual-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(247, 97, 0, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.hero__visual-header-icon svg {
    width: 20px;
    height: 20px;
}

.hero__visual-header-text {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
}

.hero__visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hero__visual-stat {
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.hero__visual-stat-number {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero__visual-stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-top: 4px;
}

.hero__visual-bar {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__visual-bar-label {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.hero__visual-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.hero__visual-bar-fill {
    height: 100%;
    background: var(--gradient-cta);
    border-radius: 100px;
    width: 85%;
}


/* ==========================================================================
   10. Hero Small (Subpage Header)
   ========================================================================== */
.hero--small {
    min-height: auto;
    padding: 140px 0 80px;
    text-align: center;
}

.hero--small .hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.hero--small .hero__title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.hero--small .hero__subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.hero--small .hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.hero--small .hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.hero--small .hero__breadcrumb a:hover {
    color: var(--primary);
}

.hero--small .hero__breadcrumb svg {
    width: 14px;
    height: 14px;
}


/* ==========================================================================
   11. Sections
   ========================================================================== */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section--dark {
    background: var(--gradient-hero);
    color: #FFFFFF;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 6px 16px;
    margin-bottom: 16px;
}

.section__badge svg {
    width: 16px;
    height: 16px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ==========================================================================
   12. Services Grid & Cards
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-card__icon {
    background: var(--primary);
    color: #FFFFFF;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card__desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.service-card__link:hover {
    color: var(--primary-dark);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* Service Card Detailed (services page) */
.services-grid--detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card--detailed {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card--detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.service-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-card__icon--lg {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all var(--transition);
}

.service-card__icon--lg svg {
    width: 32px;
    height: 32px;
}

.service-card--detailed:hover .service-card__icon--lg {
    background: var(--primary);
    color: #FFFFFF;
}

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-card--popular {
    border-color: var(--primary);
    box-shadow: var(--shadow), 0 0 0 1px rgba(var(--primary-rgb), 0.1);
}

.service-card__features {
    list-style: none;
    margin: 20px 0;
}

.service-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.9375rem;
}

.service-card__features li:last-child {
    border-bottom: none;
}

.service-card__check {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-card__check svg {
    width: 18px;
    height: 18px;
}


/* ==========================================================================
   13. Stats Section
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.stat-card__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card__icon svg {
    width: 24px;
    height: 24px;
}

.stat-card__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.stat-card__label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4px;
}


/* ==========================================================================
   14. Process Timeline (How it Works)
   ========================================================================== */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 220px;
}

.process-step__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.process-step:hover .process-step__number {
    background: var(--primary);
    color: #FFFFFF;
}

.process-step__connector {
    display: none;
}

.process-step__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 8px;
}

.process-step__desc {
    font-size: 0.875rem;
    color: var(--text-light);
    max-width: 200px;
    line-height: 1.6;
}


/* ==========================================================================
   15. Testimonials Carousel
   ========================================================================== */
.carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.carousel__track {
    overflow: hidden;
}

.carousel__slide {
    display: none;
    padding: 0;
}

.carousel__slide.active {
    display: block;
}

.testimonial {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial__star {
    color: var(--warning);
}

.testimonial__star svg {
    width: 20px;
    height: 20px;
}

.testimonial__quote p {
    font-size: 1.125rem;
    color: #374151;
    font-style: italic;
    line-height: 1.8;
}

[data-theme="dark"] .testimonial__quote p {
    color: var(--text);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial__info {
    display: flex;
    flex-direction: column;
}

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

.testimonial__role {
    color: var(--text-lighter);
    font-size: 0.875rem;
}

/* Carousel Controls */
.carousel__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel__prev,
.carousel__next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
}

.carousel__prev:hover,
.carousel__next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.carousel__prev svg,
.carousel__next svg {
    width: 18px;
    height: 18px;
}

.carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}

.carousel__dot:hover {
    background: var(--text-lighter);
}

.carousel__dot.active {
    background: var(--primary);
    transform: scale(1.2);
}


/* ==========================================================================
   16. CTA Section
   ========================================================================== */
/* Full-width orange gradient CTA */
.cta {
    padding: 120px 0;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta__decor--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.cta__decor--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
}

.cta__title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* CTA Section wrapper (subpages) */
.cta-section {
    padding-bottom: 0;
}

/* CTA Block (dark navy, used on subpages) */
.cta-block {
    background: var(--gradient-hero);
    border-radius: var(--radius-2xl);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-block__title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-block__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-block__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}


/* ==========================================================================
   17. Social Proof
   ========================================================================== */
/* Reserved for future use */


/* ==========================================================================
   18. About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about__content {
    display: flex;
    flex-direction: column;
}

.about__text {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__text:last-child {
    margin-bottom: 0;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary);
    transition: all var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.about-card__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-card__icon svg {
    width: 24px;
    height: 24px;
}

.about-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-card__desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    color: var(--primary);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.value-card__icon svg {
    width: 32px;
    height: 32px;
}

.value-card:hover .value-card__icon {
    background: var(--primary);
    color: #FFFFFF;
}

.value-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card__desc {
    color: var(--text-light);
    line-height: 1.7;
}


/* ==========================================================================
   19. Contact Section
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-col {
    position: relative;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.contact-info-card__icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-info-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-card__text {
    color: var(--text);
    font-size: 0.9375rem;
}

.contact-info-card__text a {
    color: var(--primary);
    transition: color var(--transition);
}

.contact-info-card__text a:hover {
    color: var(--primary-dark);
}

.contact-info-card__sub {
    font-size: 0.875rem;
    color: var(--text-lighter);
    margin-top: 4px;
}

/* Form Styling */
.form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.875rem;
}

[data-theme="dark"] .form__label {
    color: var(--text);
}

.form__label--required::after {
    content: " *";
    color: var(--danger);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font);
    color: var(--text-dark);
    background: #FFFFFF;
    transition: all var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-lighter);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form__input--error,
.form__select--error,
.form__textarea--error {
    border-color: var(--danger);
}

.form__input--error:focus,
.form__select--error:focus,
.form__textarea--error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form__input--success {
    border-color: var(--success);
}

.form__input--success:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form__feedback {
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
    min-height: 1em;
}

.form__feedback--error,
.form__error {
    color: var(--danger);
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
}

.form__submit {
    margin-top: 8px;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
}

.upload-zone:hover,
.upload-zone--dragover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.upload-zone__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-zone__icon {
    color: var(--text-lighter);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.upload-zone__icon svg {
    width: 40px;
    height: 40px;
}

.upload-zone__text {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.upload-zone__browse {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.upload-zone__browse:hover {
    color: var(--primary-dark);
}

.upload-zone__help {
    color: var(--text-lighter);
    font-size: 0.75rem;
    margin-top: 8px;
}

.upload-zone__input {
    display: none;
}

.upload-zone__file-list {
    list-style: none;
    margin-top: 16px;
    text-align: left;
}

.upload-zone__file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--text);
}

.upload-zone__file-name {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-zone__file-remove {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0;
}

.upload-zone__file-remove:hover {
    color: var(--danger);
}


/* ==========================================================================
   20. Alerts
   ========================================================================== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 16px auto;
    max-width: 1200px;
    font-size: 0.9375rem;
}

.alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.alert--success {
    background: #ECFDF5;
    color: #065F46;
    border-left: 4px solid var(--success);
}

.alert--error {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 4px solid var(--danger);
}

.alert--warning {
    background: #FFFBEB;
    color: #92400E;
    border-left: 4px solid var(--warning);
}

.alert--info {
    background: var(--primary-light);
    color: #9A3412;
    border-left: 4px solid var(--primary);
}

.alert__close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.alert__close:hover {
    opacity: 1;
}


/* ==========================================================================
   21. Footer
   ========================================================================== */
.footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer__col {
    min-width: 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer__title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__title-accent {
    color: var(--primary);
}

.footer__text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer__text--small {
    font-size: 0.875rem;
}

.footer__subtitle {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
    font-size: 0.9375rem;
}

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

.footer__links--contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__icon {
    color: var(--primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.footer__icon svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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


/* ==========================================================================
   22. Page Content (Privacy / Static)
   ========================================================================== */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-content h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text);
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    line-height: 1.8;
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 8px;
    color: var(--text);
}

.page-content a {
    color: var(--primary);
    transition: color var(--transition);
}

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

.page-content strong {
    color: var(--text-dark);
}


/* ==========================================================================
   23. Additional Components
   ========================================================================== */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px 0;
    z-index: var(--z-modal);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

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

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.6;
    flex: 1;
}

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

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

[data-theme="dark"] .cookie-banner {
    background: var(--bg-card);
    border-top-color: var(--border);
}

/* Decorative gradient line */
.gradient-line {
    height: 3px;
    background: var(--gradient-cta);
    border-radius: 100px;
}

.gradient-line--sm {
    width: 60px;
}

.gradient-line--center {
    margin-left: auto;
    margin-right: auto;
}

/* Feature tag / pill */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
}

.tag--success {
    background: var(--success-light);
    color: var(--success);
}

/* Loading / spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Tooltip */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-navy);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: var(--z-toast);
    pointer-events: none;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-light);
}

.empty-state__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--text-lighter);
}

.empty-state__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.empty-state__text {
    font-size: 0.9375rem;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto;
}

/* Divider */
.divider {
    height: 1px;
    background: var(--border);
    margin: 48px 0;
}

/* Image container */
.img-rounded {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.img-shadow {
    box-shadow: var(--shadow-md);
}


/* ==========================================================================
   24. Responsive: 1440px
   ========================================================================== */
@media (max-width: 1440px) {
    .container {
        max-width: 1140px;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .hero__grid {
        gap: 48px;
    }
}


/* ==========================================================================
   25. Responsive: 1024px
   ========================================================================== */
@media (max-width: 1024px) {
    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section__header {
        margin-bottom: 48px;
    }

    .section__title {
        font-size: 2rem;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__title {
        font-size: 3.25rem;
    }

    .hero__grid {
        gap: 40px;
    }

    .hero--small .hero__title {
        font-size: 2.5rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process */
    .process-timeline {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 16px);
        max-width: 280px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-col {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1;
        min-width: 200px;
    }

    /* Values */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services Detailed */
    .services-grid--detailed {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-grid {
        gap: 48px;
    }

    /* CTA */
    .cta {
        padding: 80px 0;
    }

    .cta-block {
        padding: 64px 32px;
    }
}


/* ==========================================================================
   26. Responsive: 768px
   ========================================================================== */
@media (max-width: 768px) {
    /* Header */
    :root {
        --header-height: 64px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 64px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero__visual {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero--small {
        padding: 100px 0 56px;
    }

    .hero--small .hero__title {
        font-size: 2rem;
    }

    /* Sections */
    .section {
        padding: 64px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

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

    .service-card {
        padding: 32px 24px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 28px 20px;
    }

    .stat-card__number {
        font-size: 2.25rem;
    }

    /* Process */
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-step {
        flex: none;
        width: 100%;
        max-width: 340px;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .process-step__number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .process-step__title {
        margin-top: 0;
    }

    .process-step__desc {
        max-width: none;
    }

    /* CTA */
    .cta {
        padding: 64px 0;
    }

    .cta__title {
        font-size: 2rem;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta-block {
        padding: 48px 24px;
    }

    .cta-block__title {
        font-size: 2rem;
    }

    .cta-block__actions {
        flex-direction: column;
    }

    /* Footer */
    .footer {
        padding-top: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-info-col {
        flex-direction: column;
    }

    /* Form */
    .form {
        padding: 28px 20px;
    }

    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Carousel */
    .testimonial {
        padding: 28px 20px;
    }

    .testimonial__quote p {
        font-size: 1rem;
    }

    /* Cookie Banner */
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-banner__actions .btn {
        width: 100%;
    }
}


/* ==========================================================================
   27. Responsive: 480px
   ========================================================================== */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 48px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__badge {
        font-size: 0.8125rem;
        padding: 6px 16px;
    }

    .hero--small .hero__title {
        font-size: 1.75rem;
    }

    /* Sections */
    .section {
        padding: 48px 0;
    }

    .section__header {
        margin-bottom: 32px;
    }

    .section__title {
        font-size: 1.5rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card__number {
        font-size: 1.75rem;
    }

    .stat-card__icon {
        width: 40px;
        height: 40px;
    }

    /* Buttons */
    .btn--lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* CTA */
    .cta {
        padding: 48px 0;
    }

    .cta__title {
        font-size: 1.75rem;
    }

    .cta-block {
        padding: 40px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-block__title {
        font-size: 1.75rem;
    }

    /* Service Cards */
    .service-card {
        padding: 28px 20px;
    }

    /* Process */
    .process-step {
        gap: 16px;
    }

    .process-step__number {
        width: 44px;
        height: 44px;
        font-size: 0.9375rem;
    }

    /* Testimonials */
    .testimonial {
        padding: 24px 16px;
    }

    /* Footer */
    .footer__title {
        font-size: 1.25rem;
    }

    /* Upload zone */
    .upload-zone {
        padding: 24px 16px;
    }

    /* About cards */
    .about-card {
        padding: 24px;
    }

    /* Value cards */
    .value-card {
        padding: 28px 20px;
    }

    .value-card__icon {
        width: 52px;
        height: 52px;
    }
}


/* ==========================================================================
   28. Print Styles
   ========================================================================== */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    img {
        page-break-inside: avoid;
        max-width: 100% !important;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    .header,
    .footer,
    .nav,
    .back-to-top,
    .cookie-banner,
    .hero__pattern,
    .hero__glow,
    .hero__decor,
    .cta__decor,
    .carousel__controls,
    .btn--outline-white,
    .btn--ghost-white,
    .nav__toggle,
    .nav__backdrop,
    .nav__dark-toggle {
        display: none !important;
    }

    .hero {
        min-height: auto !important;
        padding: 24px 0 !important;
    }

    .hero__title {
        color: #000 !important;
        font-size: 24pt !important;
    }

    .hero__subtitle {
        color: #333 !important;
    }

    .section {
        padding: 24px 0 !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .service-card,
    .stat-card,
    .testimonial,
    .about-card,
    .value-card,
    .contact-info-card {
        border: 1px solid #ccc !important;
        page-break-inside: avoid;
    }
}
