/* ================================================================
   ANRDI COPYRIGHT (c) 2026 — ALL RIGHTS RESERVED - AUTHOR: LYAM
================================================================ */

/* ── RESET & BASE (Stripe clean foundation) ───────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--gray-900);
    background-color: var(--surface-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── HEADER (Service Public clarity + Stripe elegance) ─────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--backdrop-blur-lg);
    -webkit-backdrop-filter: var(--backdrop-blur-lg);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--duration-base) var(--ease-smooth);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-8);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-weight: var(--font-bold);
    font-size: var(--text-xl);
    color: var(--navy-900);
    transition: opacity var(--duration-fast) var(--ease-out);
}

.header-logo:hover {
    opacity: 0.8;
}

.header-logo img {
    height: 40px;
    width: auto;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-600);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-link:hover {
    color: var(--navy-700);
    background: var(--gray-100);
}

.nav-link--active {
    color: var(--navy-700);
    background: var(--blue-50);
}

.nav-link--active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: var(--radius-full);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-burger:hover {
    background: var(--gray-100);
    color: var(--navy-700);
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
}

/* ── BUTTONS (Stripe + Nike bold CTA) ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    line-height: var(--leading-tight);
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn--sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn--xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.4);
}

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

.btn--secondary {
    background: var(--navy-700);
    color: white;
    box-shadow: var(--shadow-navy);
}

.btn--secondary:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--navy-700);
    border: 1px solid var(--gray-300);
}

.btn--ghost:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

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

.btn--outline:hover {
    background: var(--blue-50);
}

.btn--link {
    background: transparent;
    color: var(--brand-primary);
    padding: 0;
    border-radius: 0;
}

.btn--link:hover {
    text-decoration: underline;
}

.btn--icon {
    padding: var(--space-3);
    aspect-ratio: 1;
}

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

/* ── HERO SECTION (Apple storytelling + Nike immersion) ─────────────────── */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: var(--gradient-mesh);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-20) 0;
}

.hero-body {
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-6);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--navy-600);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--backdrop-blur-base);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-full);
}

.hero-flag {
    display: flex;
    width: 20px;
    height: 14px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hero-flag span {
    flex: 1;
    height: 100%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--navy-950);
    margin-bottom: var(--space-6);
}

.hero-title em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-600);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--backdrop-blur-sm);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-emblem {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-emblem-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--blue-200);
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.hero-emblem-ring:nth-child(1) {
    animation: spin 30s linear infinite;
}

.hero-emblem-ring:nth-child(2) {
    inset: 20px;
    animation: spin 25s linear infinite reverse;
}

.hero-emblem-ring:nth-child(3) {
    inset: 40px;
    animation: spin 20s linear infinite;
}

.hero-emblem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-blue);
    animation: float 4s ease-in-out infinite;
}

.hero-emblem-center svg {
    width: 60px;
    height: 60px;
    color: white;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }
    
    .hero-body {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
}

/* ── CARDS (Linear clean + Airbnb modern) ──────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-8);
    background: var(--surface-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    transition: all var(--duration-base) var(--ease-smooth);
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-300);
    box-shadow: var(--shadow-lg);
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-5);
    background: var(--blue-50);
    border-radius: var(--radius-xl);
    color: var(--brand-primary);
    transition: all var(--duration-base) var(--ease-smooth);
}

.card:hover .card-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

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

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--navy-900);
    margin-bottom: var(--space-3);
}

.card-desc {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    flex-grow: 1;
    margin-bottom: var(--space-5);
}

.card--dark {
    background: rgba(30, 58, 138, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
    color: white;
}

.card--dark .card-title {
    color: white;
}

.card--dark .card-desc {
    color: var(--blue-100);
}

.card--dark .card-icon {
    background: rgba(99, 102, 241, 0.2);
    color: var(--blue-200);
}

.card--dark:hover {
    background: rgba(30, 58, 138, 0.5);
    border-color: var(--blue-400);
}

/* ── SECTIONS (Service Public hierarchy) ───────────────────────────────── */
.section {
    padding: var(--space-20) 0;
}

.section--gray {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface-secondary) 100%);
}

.section--dark {
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='%23ffffff' fill-opacity='0.03'%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");
    pointer-events: none;
}

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

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--navy-600);
    background: var(--blue-50);
    border-radius: var(--radius-full);
}

.section--dark .section-label {
    background: rgba(99, 102, 241, 0.2);
    color: var(--blue-200);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--navy-950);
    margin-bottom: var(--space-4);
}

.section--dark .section-title {
    color: white;
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
}

.section--dark .section-desc {
    color: var(--blue-100);
}

/* ── FORMS (Stripe + Figma intuitive) ─────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-700);
}

.form-label--required::after {
    content: ' *';
    color: var(--error-600);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    color: var(--gray-900);
    background: var(--surface-primary);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-focus);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

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

.form-helper {
    margin-top: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.form-error {
    margin-top: var(--space-2);
    font-size: var(--text-sm);
    color: var(--error-600);
}

.form-checkbox,
.form-radio {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.form-checkbox input,
.form-radio input {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-primary);
}

/* ── FOOTER (Service Public structure) ─────────────────────────────────── */
.site-footer {
    background: var(--navy-950);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #002395 33.33%, #EDEDED 33.33%, #EDEDED 66.66%, #ED2939 66.66%);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-brand .logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: white;
}

.footer-brand .tagline {
    font-size: var(--text-sm);
    color: var(--gray-400);
    line-height: var(--leading-relaxed);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gray-400);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.social-link:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: white;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-sm);
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* ── BADGES (Stripe clarity) ───────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

.badge--primary {
    background: var(--blue-100);
    color: var(--blue-700);
}

.badge--success {
    background: var(--success-100);
    color: var(--success-700);
}

.badge--warning {
    background: var(--warning-100);
    color: var(--warning-700);
}

.badge--error {
    background: var(--error-100);
    color: var(--error-700);
}

/* ── SKIP LINK (Accessibility) ───────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    padding: var(--space-3) var(--space-4);
    background: var(--navy-900);
    color: white;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    z-index: var(--z-tooltip);
    transition: top var(--duration-fast) var(--ease-smooth);
}

.skip-link:focus {
    top: var(--space-4);
}

/* ── RESPONSIVE UTILITIES ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-container {
        padding: var(--space-12) 0;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* ── ACCESSIBILITY ENHANCEMENTS ───────────────────────────────────────── */
/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gray-300: #a0a0a0;
        --gray-400: #808080;
        --gray-500: #606060;
    }
    
    .card {
        border-width: 2px;
    }
    
    .btn {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-emblem-ring,
    .hero-emblem-center {
        animation: none !important;
    }
}

/* Focus visible improvements */
*:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    padding: var(--space-3) var(--space-4);
    background: var(--navy-900);
    color: white;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    z-index: var(--z-tooltip);
    transition: top var(--duration-fast) var(--ease-smooth);
}

.skip-link:focus {
    top: var(--space-4);
}

/* Screen reader only class */
.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;
}

/* Touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .card,
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .card-icon {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ── GLOBAL UI STYLES (inspired by plan-du-site.php) ───────────────────── */
/* Modern card style */
.modern-card {
    background: var(--surface-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    transition: all var(--duration-base) var(--ease-smooth);
}

.modern-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Modern section title */
.modern-section-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--navy-900);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--blue-100);
}

/* Modern link style */
.modern-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--gray-700);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
    text-decoration: none;
}

.modern-link:hover {
    background: var(--blue-50);
    color: var(--brand-primary);
    transform: translateX(4px);
}

/* Modern icon style */
.modern-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gray-500);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.modern-link:hover .modern-icon {
    color: var(--brand-primary);
}

/* Apply modern styles to existing components */
.card {
    background: var(--surface-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
}

.card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Dark card variant */
.card--dark {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: white;
}

.card--dark:hover {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

.card--dark .card-title {
    color: white;
}

.card--dark .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.card--dark .card-icon {
    color: rgba(99, 102, 241, 0.8);
}

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--navy-900);
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--blue-100);
}

.section-title {
    font-family: var(--font-display);
    font-weight: var(--font-semibold);
    color: var(--navy-900);
}

/* Modern list style */
.modern-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.modern-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.modern-list-item:hover {
    background: var(--blue-50);
    transform: translateX(4px);
}

/* Modern grid */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

/* Modern content box */
.content-box {
    background: var(--surface-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--duration-base) var(--ease-smooth);
}

.content-box:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-md);
}

/* Apply to hero section */
.hero {
    background: var(--gradient-mesh);
}

.hero-body {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: var(--font-extrabold);
    color: var(--navy-950);
}

.hero-subtitle {
    font-family: var(--font-body);
    color: var(--gray-600);
}

/* Apply to sections */
.section {
    padding: var(--space-16) 0;
}

.section-header {
    margin-bottom: var(--space-8);
}

.section-label {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--navy-600);
    background: var(--blue-50);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    display: inline-block;
    margin-bottom: var(--space-4);
}

/* Apply to buttons */
.btn {
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Apply to navigation */
.nav-link {
    font-family: var(--font-body);
    font-weight: var(--font-medium);
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-4);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-link:hover {
    background: var(--gray-100);
    transform: translateX(2px);
}

/* Apply to footer */
.site-footer {
    background: var(--navy-950);
    color: var(--gray-300);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: white;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.footer-col a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-col a:hover {
    color: white;
    transform: translateX(2px);
}
