/* 
  Pashew Website - Swiss-Clean & Futuristic Design
  Modern, minimal, with glassmorphism effects
*/

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

:root {
    --primary-color: #D49A00;
    --secondary-color: #10101A;
    --accent-color: #FF6B6B;
    --text-primary: #10101A;
    --text-secondary: #666666;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F8F8;
    --border-color: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --navbar-height: 72px; /* sticky header height */
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--secondary-color);
}

h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    color: var(--secondary-color);
    box-shadow: 0 12px 24px rgba(212, 154, 0, 0.25);
    font-weight: 700;
    letter-spacing: 0.4px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(212, 154, 0, 0.35);
}

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

.btn-secondary:hover {
    background: rgba(212, 154, 0, 0.1);
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: none;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-cta {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav-cta.active {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
}

.nav-cta.active::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FAFAFA, #FFFFFF);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: static;
}

.hero-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 680px; /* extend to cover stats figures */
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-user-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(250, 250, 250, 0.85) 0%, rgba(250, 250, 250, 0.3) 25%, rgba(250, 250, 250, 0.08) 55%, rgba(250, 250, 250, 0) 85%),
        linear-gradient(to top, rgba(250, 250, 250, 0.7) 0%, rgba(250, 250, 250, 0.2) 45%, rgba(250, 250, 250, 0) 75%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 75%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure text overlays the hero image */
.hero-text {
    position: relative;
    z-index: 2;
}

/* Features Hero */
.features-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #FDF8EC, #FFFFFF);
    position: relative;
    overflow: hidden;
}

.features-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212,154,0,0.12), transparent 35%),
                radial-gradient(circle at 15% 10%, rgba(255,107,107,0.08), transparent 32%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
    z-index: 1;
}

.hero-copy h1 {
    font-size: 3rem;
    line-height: 1.05;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 1rem 0 1.75rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.kpi {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(16, 16, 26, 0.08);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.75);
}

.kpi span {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.kpi p {
    margin: 0.35rem 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-panels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(16, 16, 26, 0.08);
    box-shadow: var(--shadow-md);
}

.panel h3 {
    margin: 0.25rem 0 0.75rem;
}

.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(212, 154, 0, 0.12);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
}

.panel ul {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    color: var(--text-secondary);
}

.panel ul li { margin-bottom: 0.4rem; }

.panel-outline {
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(16,16,26,0.1);
    border-radius: 1rem;
    background: rgba(255,255,255,0.55);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.video-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
}

.video-modal__dialog {
    position: relative;
    width: min(900px, 92vw);
    background: #0f111a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal__frame {
    position: relative;
    padding-top: 56.25%;
    background: linear-gradient(135deg, rgba(212,154,0,0.1), rgba(255,107,107,0.1));
}

.video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.video-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.45);
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.video-modal__close:hover {
    background: rgba(212, 154, 0, 0.9);
    color: #0f111a;
}

@media (max-width: 640px) {
    .video-modal__dialog {
        width: 95vw;
        border-radius: 12px;
    }

    .video-modal__close {
        width: 36px;
        height: 36px;
        top: 8px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        top: 60px;
        width: 100%;
        height: 420px;
    }
}

/* Phone Frame */
.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    border-radius: 3rem;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.screen-header {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.screen-balance {
    margin-bottom: 2rem;
}

.screen-balance p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.screen-balance h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.screen-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: auto;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: rgba(212, 154, 0, 0.1);
    transform: translateY(-2px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features-showcase {
    padding: 4rem 2rem 10rem 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 50%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.features-showcase::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.features-showcase::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.03), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.75rem;
    border-radius: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 154, 0, 0.12);
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 154, 0, 0.2), transparent);
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 64px rgba(212, 154, 0, 0.18);
    border-color: rgba(212, 154, 0, 0.25);
    background: rgba(255, 255, 255, 0.92);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #E8B11A 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 12px 32px rgba(212, 154, 0, 0.25);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 16px 48px rgba(212, 154, 0, 0.35);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    margin: 0;
}

@media (max-width: 768px) {
    .features-showcase {
        padding: 6rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Features Pillars */
.features-pillar {
    padding: 5rem 0 3rem;
    background: #FFFFFF;
}

.section-heading {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 3rem;
}

.section-heading h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-sub {
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 640px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    padding: 1.75rem;
    border: 1px solid rgba(16, 16, 26, 0.08);
    border-radius: 1.25rem;
    background: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    box-shadow: 0 12px 24px rgba(212, 154, 0, 0.2);
}

.pillar-card h3 { margin-bottom: 0.5rem; }

.pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    color: var(--text-secondary);
}

.pillar-card ul li { margin-bottom: 0.35rem; }

/* Feature Flows */
.feature-flows {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.flow-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(16, 16, 26, 0.08);
    background: rgba(255,255,255,0.9);
    transition: var(--transition);
}

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

.flow-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,154,0,0.12), rgba(255,107,107,0.12));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.flow-card h4 { margin-bottom: 0.35rem; }

.flow-card ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    color: var(--text-secondary);
}

.flow-card ul li { margin-bottom: 0.25rem; }

/* Trust Strip */
.trust-strip {
    padding: 4.5rem 0;
    background: #0f111a;
    color: #FFFFFF;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.trust-card {
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    color: #FFFFFF;
}

.trust-card h4 { margin-bottom: 0.5rem; }

.trust-card p { color: rgba(255,255,255,0.85); }

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

    .hero-panels {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .panel,
    .panel-outline {
        flex: 1 1 260px;
    }
}

@media (max-width: 768px) {
    .features-hero {
        padding: 5rem 0 3rem;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .section-heading h2 {
        font-size: 1.9rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}


/* How It Works */
.how-it-works {
    padding: 6rem 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a15);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #F8F8F8, #FFFFFF);
}

.about-hero {
    position: relative;
    padding: 5.5rem 0;
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(16,17,26,0.8), rgba(16,19,32,0.7)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1,
.about-hero p {
    color: #FFFFFF;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212,154,0,0.15), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(255,107,107,0.18), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Detailed */
.features-detailed {
    padding: 4rem 0;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-section:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.feature-section:nth-child(even) > * {
    direction: ltr;
}

.feature-content h2 {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 2rem;
}

.icon-large {
    font-size: 8rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Pricing */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    margin-bottom: 0.25rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.billing {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-faq {
    margin-top: 4rem;
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* About */
.about-section {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
}

.about-card h3 {
    margin-bottom: 0.75rem;
}

.about-timeline {
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-timeline h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.timeline-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 4rem;
}

/* Linear Timeline Design */
.timeline-linear {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%, 
        var(--primary-color) 30%, 
        rgba(212, 154, 0, 0.3) 60%, 
        rgba(212, 154, 0, 0.1) 100%
    );
}

.timeline-stage {
    position: relative;
    padding-left: 4.5rem;
    margin-bottom: 3rem;
    opacity: 0.5;
    transition: var(--transition);
}

.timeline-stage.completed,
.timeline-stage.active {
    opacity: 1;
}

.timeline-stage.future {
    opacity: 0.7;
}

.timeline-stage:hover {
    opacity: 1;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 4px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid rgba(212, 154, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition);
    z-index: 2;
}

.timeline-stage.completed .timeline-marker {
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(212, 154, 0, 0.25);
}

.timeline-stage.active .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(212, 154, 0, 0.35), 0 0 0 6px rgba(212, 154, 0, 0.1);
    animation: pulse-marker 2s ease-in-out infinite;
}

.timeline-stage.future .timeline-marker {
    background: linear-gradient(135deg, var(--accent-color), #FF8585);
    border-color: var(--accent-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(212, 154, 0, 0.35), 0 0 0 6px rgba(212, 154, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 154, 0, 0.45), 0 0 0 10px rgba(212, 154, 0, 0.15);
    }
}

.timeline-content {
    background: var(--bg-secondary);
    padding: 1.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-stage.completed .timeline-content {
    border-left: 3px solid var(--primary-color);
}

.timeline-stage.active .timeline-content {
    background: #FFFFFF;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(212, 154, 0, 0.12);
}

.timeline-stage.future .timeline-content {
    border-left: 3px solid var(--accent-color);
}

.timeline-stage:hover .timeline-content {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-stage.future .timeline-date {
    color: var(--accent-color);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-linear {
        padding: 1.5rem 0;
    }
    
    .timeline-line {
        left: 19px;
    }
    
    .timeline-stage {
        padding-left: 3.5rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-intro {
        margin-bottom: 3rem;
    }
}

.about-team {
    margin-top: 4rem;
}

.about-team h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.about-team > p {
    text-align: center;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 154, 0, 0.2);
    transition: var(--transition);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-avatar {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(212, 154, 0, 0.2);
}

.team-member:hover .member-avatar img {
    transform: scale(1.08);
}

.team-member h4 {
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Blog */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-article-image {
    height: 400px;
    margin-bottom: 2rem;
}

.blog-category {
    display: inline-block;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-card h3 {
    margin-bottom: 0.75rem;
}

.blog-card p {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Preview Carousel on Home */
.blog-preview {
    padding: 6rem 0 2rem;
    background: #FFFFFF;
}

.blog-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.blog-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1rem;
}

.blog-track::-webkit-scrollbar { display: none; }

.blog-preview .blog-card {
    flex: 0 0 auto;
    width: 320px;
    min-height: 280px;
}

.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #FFFFFF;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
    z-index: 2;
}

.blog-nav.prev { left: 0; }
.blog-nav.next { right: 0; }
.blog-nav:disabled { opacity: 0.35; cursor: not-allowed; }

.read-more-card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .blog-carousel { padding: 0 2rem; }
    .blog-preview .blog-card { width: 260px; }
    .blog-nav { width: 36px; height: 36px; }
}

.blog-newsletter {
    margin-top: 4rem;
}

.newsletter-content {
    padding: 3rem;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
}

/* Contact */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 154, 0, 0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
}

/* Partners Section */
.partners-section {
    background: #FFFFFF;
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.partners-grid {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
}

.partners-grid::-webkit-scrollbar {
    display: none;
}

.partner-logo {
    flex: 0 0 auto;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-4px);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.partners-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.5rem;
    z-index: 2;
}

.partners-nav:hover:not(:disabled) {
    background: var(--bg-secondary);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.partners-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.partners-nav.prev {
    left: 0;
}

.partners-nav.next {
    right: 0;
}

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

    .partners-carousel {
        padding: 0 2rem;
    }

    .partners-grid {
        gap: 2rem;
    }

    .partner-logo {
        width: 140px;
        height: 70px;
    }

    .partners-title {
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }

    .partners-nav {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4,
.footer-col h5 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .contact-grid,
    .feature-section {
        grid-template-columns: 1fr;
    }

    .feature-section:nth-child(even) {
        direction: ltr;
    }

    .hero-cta,
    .cta-buttons,
    .newsletter-form {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .pricing-grid,
    .about-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }
}

/* Users Showcase Section - Modern Swiss Design */
.users-showcase {
    padding: 8rem 2rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Modern Users Grid */
.users-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.users-carousel .users-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0.5rem 0;
    gap: 1.75rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.users-carousel .users-grid::-webkit-scrollbar {
    display: none;
}

/* Swiss-Style User Cards */
.user-card {
    background: #FFFFFF;
    border: 1px solid rgba(212, 154, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D49A00 0%, #FF6B6B 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-card:hover {
    border-color: rgba(212, 154, 0, 0.2);
    box-shadow: 0 12px 32px rgba(212, 154, 0, 0.08);
    transform: translateY(-4px);
}

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

.users-carousel .user-card {
    scroll-snap-align: start;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(16, 16, 26, 0.12);
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav:hover {
    transform: translateY(-50%) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.carousel-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: var(--shadow-sm);
}

.carousel-nav.prev {
    left: 0.5rem;
}

.carousel-nav.next {
    right: 0.5rem;
}

/* User Image Container */
.user-image-container {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.08) 0%, rgba(255, 107, 107, 0.08) 100%);
    overflow: hidden;
    position: relative;
}

.user-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-card:hover .user-image {
    transform: scale(1.04);
}

/* User Info Section */
.user-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.user-role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D49A00;
    margin-bottom: 0.5rem;
}

.user-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #10101A;
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.user-quote {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Responsive Users Grid */
@media (max-width: 768px) {
    .users-showcase {
        padding: 6rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .users-carousel {
        padding: 0;
    }

    .users-carousel .users-grid {
        grid-auto-columns: minmax(220px, 1fr);
        gap: 1.25rem;
        padding: 0;
    }

    .carousel-nav {
        display: none;
    }

    .user-image-container {
        height: 200px;
    }

    .user-info {
        padding: 1.5rem;
    }

    .user-card h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   FEATURES PAGE - New Swiss-Clean Design
   ======================================== */

/* Features Hero */
.feat-hero {
    padding: 7rem 0 5rem;
    background: linear-gradient(180deg, #FEFCF7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.feat-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.08), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.feat-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.feat-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feat-hero__content {
    max-width: 560px;
}

.feat-hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.feat-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.feat-hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feat-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    position: relative;
}

.btn-ghost::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Hero Visual - Floating Cards */
.feat-hero__visual {
    position: relative;
    height: 400px;
}

.feat-hero__card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: floatCard 4s ease-in-out infinite;
}

.feat-hero__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.feat-hero__card--1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.feat-hero__card--2 {
    top: 40%;
    right: 5%;
    animation-delay: 1s;
}

.feat-hero__card--3 {
    bottom: 5%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.feat-hero__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.feat-hero__card-icon--alt {
    background: linear-gradient(135deg, #10101A, #2A2A3A);
}

.feat-hero__card-icon--accent {
    background: linear-gradient(135deg, var(--accent-color), #FF8585);
}

.feat-hero__card-content {
    display: flex;
    flex-direction: column;
}

.feat-hero__card-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feat-hero__card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.feat-hero__card-status {
    font-size: 0.8rem;
    color: #22C55E;
    font-weight: 600;
}

/* Stats Bar */
.feat-stats {
    padding: 3rem 0;
    background: var(--secondary-color);
}

.feat-stats__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.feat-stats__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.feat-stats__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.feat-stats__divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

/* Main Features Section */
.feat-main {
    padding: 6rem 0;
    background: #FFFFFF;
}

.feat-main__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.feat-main__title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.feat-main__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.feat-main__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Feature Cards */
.feat-card {
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    border-color: rgba(212, 154, 0, 0.2);
}

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

.feat-card--large {
    grid-column: span 2;
}

.feat-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 32px rgba(212, 154, 0, 0.25);
    transition: transform 0.3s ease;
}

.feat-card:hover .feat-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.feat-card__icon--alt {
    background: linear-gradient(135deg, #10101A, #2A2A3A);
    box-shadow: 0 12px 32px rgba(16, 16, 26, 0.25);
}

.feat-card__icon--accent {
    background: linear-gradient(135deg, var(--accent-color), #FF8585);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.25);
}

.feat-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

.feat-card__list {
    list-style: none;
    margin-top: 1.25rem;
    padding: 0;
}

.feat-card__list li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.feat-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* How It Works */
.feat-how {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.feat-how__header {
    text-align: center;
    margin-bottom: 4rem;
}

.feat-how__header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feat-how__header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.feat-how__steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feat-how__step {
    flex: 1;
    text-align: center;
    max-width: 240px;
}

.feat-how__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feat-how__step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feat-how__step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feat-how__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 154, 0, 0.3), rgba(212, 154, 0, 0.1));
    margin-top: 2.5rem;
    flex-shrink: 0;
}

/* Security Section */
.feat-security {
    padding: 6rem 0;
    background: #FFFFFF;
}

.feat-security__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feat-security__content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

.feat-security__content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feat-security__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feat-security__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feat-security__feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.feat-security__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-security__shield {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-security__pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.1), transparent 70%);
    animation: pulse-ring 2s ease-in-out infinite;
}

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

/* Features CTA */
.feat-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a12 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feat-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.15), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.feat-cta__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.feat-cta__content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feat-cta__content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.feat-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive - Features Page */
@media (max-width: 1024px) {
    .feat-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feat-hero__visual {
        height: 300px;
        max-width: 500px;
        margin: 0 auto;
    }

    .feat-main__grid {
        grid-template-columns: 1fr 1fr;
    }

    .feat-card--large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .feat-hero {
        padding: 5rem 0 4rem;
    }

    .feat-hero__title {
        font-size: 2.5rem;
    }

    .feat-hero__visual {
        display: none;
    }

    .feat-stats__grid {
        gap: 2rem;
    }

    .feat-stats__number {
        font-size: 2rem;
    }

    .feat-stats__divider {
        display: none;
    }

    .feat-main__grid {
        grid-template-columns: 1fr;
    }

    .feat-card--large {
        grid-column: span 1;
    }

    .feat-main__title {
        font-size: 2rem;
    }

    .feat-how__steps {
        flex-direction: column;
        align-items: center;
    }

    .feat-how__connector {
        width: 2px;
        height: 40px;
        margin: 0;
        background: linear-gradient(180deg, rgba(212, 154, 0, 0.3), rgba(212, 154, 0, 0.1));
    }

    .feat-security__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feat-security__features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .feat-security__visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .feat-cta__content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .feat-hero__title {
        font-size: 2rem;
    }

    .feat-hero__actions {
        flex-direction: column;
    }

    .feat-stats__item {
        flex: 1 1 45%;
    }
}

/* ========================================
   ABOUT PAGE - Swiss-Clean Design
   ======================================== */

/* About Hero */
.about-hero-new {
    padding: 7rem 0 5rem;
    background: linear-gradient(180deg, #FEFCF7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.about-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.about-hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.about-hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape--1 {
    width: 400px;
    height: 400px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.08), transparent 60%);
}

.shape--2 {
    width: 300px;
    height: 300px;
    bottom: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.06), transparent 60%);
}

.shape--3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 10%;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.04), transparent 60%);
}

/* Mission Section */
.about-mission {
    padding: 6rem 0;
    background: #FFFFFF;
}

.about-mission__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-mission__content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-mission__content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-mission__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mission-stat {
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 154, 0, 0.2);
}

.mission-stat__number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.mission-stat__label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Values Section */
.about-values {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 0.75rem;
}

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

.value-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 154, 0, 0.2);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin: 0 auto 1.25rem;
    box-shadow: 0 12px 32px rgba(212, 154, 0, 0.25);
}

.value-card__icon--alt {
    background: linear-gradient(135deg, #10101A, #2A2A3A);
    box-shadow: 0 12px 32px rgba(16, 16, 26, 0.25);
}

.value-card__icon--accent {
    background: linear-gradient(135deg, var(--accent-color), #FF8585);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.25);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Timeline New */
.about-timeline-new {
    padding: 6rem 0;
    background: #FFFFFF;
}

.timeline-new {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-new__line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(212, 154, 0, 0.2) 100%);
}

.timeline-new__items {
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-item--done,
.timeline-item--active {
    opacity: 1;
}

.timeline-item__marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid rgba(212, 154, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.timeline-item--done .timeline-item__marker {
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    border-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(212, 154, 0, 0.3);
}

.timeline-item--active .timeline-item__marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(212, 154, 0, 0.15);
}

.timeline-pulse {
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.timeline-item--future .timeline-item__marker {
    background: linear-gradient(135deg, var(--accent-color), #FF8585);
    border-color: var(--accent-color);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.timeline-item__content {
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-item__content {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.timeline-item--active .timeline-item__content {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.timeline-item__date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item--future .timeline-item__date {
    color: var(--accent-color);
}

.timeline-item__content h4 {
    font-size: 1.15rem;
    margin: 0.5rem 0;
}

.timeline-item__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Team New */
.about-team-new {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card__image {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(255, 107, 107, 0.1));
    overflow: hidden;
}

.team-card__image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__image.no-image::after {
    content: '👤';
    font-size: 4rem;
    opacity: 0.3;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card__image img {
    transform: scale(1.05);
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-social {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.team-social:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: scale(1.1);
}

.team-card__info {
    padding: 1.5rem;
    text-align: center;
}

.team-card__info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.team-card__role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-card__info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a12 100%);
    text-align: center;
}

.about-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta__content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.about-cta__content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.about-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero__title {
        font-size: 2.5rem;
    }

    .about-mission__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .team-grid-new {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .about-cta__content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   BLOG PAGE - Swiss-Clean Design
   ======================================== */

/* Blog Hero */
.blog-hero {
    padding: 7rem 0 5rem;
    background: linear-gradient(180deg, #FEFCF7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.blog-hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.blog-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.blog-hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.blog-hero__pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(212, 154, 0, 0.06), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.04), transparent 40%);
    pointer-events: none;
}

/* Featured Post */
.blog-featured {
    padding: 0 0 4rem;
    background: #FFFFFF;
    margin-top: -2rem;
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.5rem;
    overflow: hidden;
}

.featured-post__image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(255, 107, 107, 0.1));
    overflow: hidden;
}

.featured-post__image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post__image.no-image::after {
    content: '📰';
    font-size: 5rem;
    opacity: 0.3;
}

.featured-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post__badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0.5rem;
}

.featured-post__content {
    padding: 2rem 2rem 2rem 0;
}

.featured-post__category {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.featured-post__content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.featured-post__content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-post__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.featured-post__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.featured-post__date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Blog Grid */
.blog-grid-section {
    padding: 4rem 0;
    background: #FFFFFF;
}

.blog-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.blog-grid-header h2 {
    font-size: 2rem;
    font-weight: 800;
}

/* Layout for cards + "More articles" column */
.blog-grid-layout {
    display: flex;
    align-items: flex-start;
    gap: 3.5rem;              /* clear horizontal space between cards and list */
}

/* Make the cards column take more space */
.blog-grid-layout .blog-grid-new {
    flex: 2 1 0;
}

/* Make the list column narrower, like a sidebar */
.blog-grid-layout .blog-list {
    flex: 1 1 260px;
    margin-top: 0;
}

/* Mobile: stack them, add space above the list */
@media (max-width: 900px) {
    .blog-grid-layout {
        flex-direction: column;
    }

    .blog-grid-layout .blog-list {
        margin-top: 2.5rem;
    }
}

/* List panel */

.blog-list {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.75rem 2rem;
    border: 1px solid #eef0f3;
}

.blog-list__title {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.blog-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-list__item {
    padding: 0.9rem 0;
    border-bottom: 1px solid #f1f3f6;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.blog-list__item:last-child {
    border-bottom: none;
}

.blog-list__meta {
    display: flex;
    gap: 0.6rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.blog-list__category {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.blog-list__date {
    color: #9ca3af;
}

.blog-list__link {
    text-decoration: none;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.blog-list__link:hover .blog-list__headline {
    text-decoration: underline;
}

/* Extra breathing room above "More articles" */
.blog-list {
    margin-top: 3.5rem !important;   /* space between cards and list */
    padding-top: 1.25rem;
    border-top: 1px solid #edf0f4;   /* subtle Swiss-style divider */
}

.blog-filters {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #FFFFFF;
}

.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card-new {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.08), rgba(255, 107, 107, 0.08));
    overflow: hidden;
}

.blog-card__image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__image.no-image::after {
    content: '📄';
    font-size: 3rem;
    opacity: 0.3;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-new:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: #FFFFFF;
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.5rem;
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card__date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.blog-card__link:hover {
    gap: 0.75rem;
}

.blog-card__link svg {
    transition: transform 0.3s ease;
}

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

/* Newsletter New */
.blog-newsletter-new {
    padding: 4rem 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--secondary-color);
    border-radius: 1.5rem;
    padding: 3rem;
}

.newsletter-card__content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.newsletter-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.newsletter-card__text h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.newsletter-card__text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.newsletter-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Topics Section */
.blog-topics {
    padding: 4rem 0 6rem;
    background: #FFFFFF;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 154, 0, 0.2);
    background: #FFFFFF;
}

.topic-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 32px rgba(212, 154, 0, 0.25);
    transition: transform 0.3s ease;
}

.topic-card:hover .topic-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.topic-card__icon--alt {
    background: linear-gradient(135deg, #10101A, #2A2A3A);
    box-shadow: 0 12px 32px rgba(16, 16, 26, 0.25);
}

.topic-card__icon--accent {
    background: linear-gradient(135deg, var(--accent-color), #FF8585);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.25);
}

.topic-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--secondary-color);
}

.topic-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero__title {
        font-size: 2.5rem;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post__image {
        height: 250px;
    }

    .featured-post__content {
        padding: 1.5rem;
    }

    .featured-post__content h2 {
        font-size: 1.5rem;
    }

    .blog-grid-new {
        grid-template-columns: 1fr;
    }

    .blog-grid-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-filters {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 0.5rem;
    }

    .newsletter-card {
        padding: 2rem;
    }

    .newsletter-card__content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .topic-card {
        padding: 1.5rem;
    }
}

/* ========================================
   HOMEPAGE - Swiss-Clean Design
   ======================================== */

/* Home Hero */
.home-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, #FEFCF7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-hero__content {
    position: relative;
    z-index: 2;
}

.home-hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.home-hero__title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.home-hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
}

.home-hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(16, 16, 26, 0.15);
    color: var(--secondary-color);
}

.btn-ghost:hover {
    background: rgba(16, 16, 26, 0.05);
    border-color: var(--secondary-color);
}

.home-hero__trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: 2px solid #FFFFFF;
    margin-left: -10px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar:nth-child(2) {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
}

.trust-avatar:nth-child(3) {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.trust-avatar:nth-child(4) {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.home-hero__trust p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.home-hero__trust strong {
    color: var(--secondary-color);
}

/* Hero Visual */
.home-hero__visual {
    position: relative;
    z-index: 1;
}

.hero-phone {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.hero-phone__frame {
    background: #10101A;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(16, 16, 26, 0.25);
}

.hero-phone__screen {
    background: linear-gradient(180deg, #1a1a2e 0%, #10101A 100%);
    border-radius: 32px;
    height: 540px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone__screen.no-image::after {
    content: 'Pashew';
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

.hero-phone__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Floating Cards */
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    animation: float 4s ease-in-out infinite;
}

.hero-float--1 {
    top: 15%;
    right: -30px;
    animation-delay: 0s;
}

.hero-float--2 {
    bottom: 20%;
    left: -40px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-float__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.hero-float__icon--alt {
    background: linear-gradient(135deg, #10101A, #2A2A3A);
}

.hero-float__text {
    display: flex;
    flex-direction: column;
}

.hero-float__text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-float__text strong {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* Hero Background Shapes */
.home-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape--1 {
    width: 500px;
    height: 500px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.08), transparent 60%);
}

.hero-shape--2 {
    width: 400px;
    height: 400px;
    bottom: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.06), transparent 60%);
}

.hero-shape--3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(212, 154, 0, 0.04), transparent 60%);
}

/* Home Stats Bar */
.home-stats {
    padding: 3rem 0;
    background: var(--secondary-color);
}

.home-stats__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.home-stats__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.home-stats__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-stats__divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Home Features - Bento Grid */
.home-features {
    padding: 7rem 0;
    background: #FFFFFF;
}

.home-features__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
}

.bento-card {
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 154, 0, 0.2);
}

.bento-card--lg {
    grid-column: span 2;
    grid-row: span 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.bento-card--md {
    grid-column: span 2;
}

.bento-card--sm {
    grid-column: span 1;
}

.bento-card--wide {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.bento-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 32px rgba(212, 154, 0, 0.25);
}

.bento-card__icon--alt {
    background: linear-gradient(135deg, #10101A, #2A2A3A);
    box-shadow: 0 12px 32px rgba(16, 16, 26, 0.25);
}

.bento-card__icon--accent {
    background: linear-gradient(135deg, var(--accent-color), #FF8585);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.25);
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bento-card--lg h3 {
    font-size: 1.5rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.bento-card__visual {
    margin-top: auto;
    padding-top: 2rem;
}

.speed-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.speed-bar {
    flex: 1;
    height: 8px;
    background: rgba(212, 154, 0, 0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.speed-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 90%;
    background: linear-gradient(90deg, var(--primary-color), #E8B11A);
    border-radius: 4px;
    animation: speed-fill 2s ease-out infinite;
}

@keyframes speed-fill {
    0% { width: 0; }
    100% { width: 90%; }
}

.speed-indicator span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

.bento-card__content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.bento-card__content .bento-card__icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.split-visual {
    display: flex;
    align-items: center;
}

.split-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: 3px solid #FAFAFA;
    margin-left: -12px;
}

.split-avatar:first-child {
    margin-left: 0;
}

.split-avatar:nth-child(2) {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
}

.split-avatar:nth-child(3) {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.split-visual span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: -12px;
}

/* Testimonials Grid */
.home-testimonials {
    padding: 7rem 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card--featured {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.testimonial-card--featured .testimonial-card__quote,
.testimonial-card--featured .testimonial-card__author span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card--featured .testimonial-card__author strong {
    color: #FFFFFF;
}

.testimonial-card__rating {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* How It Works - Home */
.home-how {
    padding: 7rem 0;
    background: #FFFFFF;
}

.home-how__steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.how-step {
    flex: 1;
    max-width: 280px;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 154, 0, 0.2);
}

.how-step__number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 154, 0, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.how-step__content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.how-step__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.how-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin: 1.5rem auto 0;
    box-shadow: 0 12px 32px rgba(212, 154, 0, 0.25);
}

.how-step__connector {
    display: flex;
    align-items: center;
    padding-top: 4rem;
}

/* Home Blog Preview */
.home-blog {
    padding: 7rem 0;
    background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}

.home-blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home-blog__header h2 {
    font-size: 2.25rem;
    margin: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: #FFFFFF;
}

.home-blog__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
}

.home-blog-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.home-blog-card__image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(255, 107, 107, 0.1));
    overflow: hidden;
}

.home-blog-card--featured .home-blog-card__image {
    height: 280px;
}

.home-blog-card__image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-blog-card__image.no-image::after {
    content: '📰';
    font-size: 3rem;
    opacity: 0.3;
}

.home-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-blog-card:hover .home-blog-card__image img {
    transform: scale(1.05);
}

.home-blog-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: #FFFFFF;
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.5rem;
}

.home-blog-card__content {
    padding: 1.5rem;
}

.home-blog-card__content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.home-blog-card--featured .home-blog-card__content h3 {
    font-size: 1.35rem;
}

.home-blog-card__content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: gap 0.3s ease;
}

.home-blog-card__link:hover {
    gap: 0.75rem;
}

/* Home Partners */
.home-partners {
    padding: 4rem 0;
    background: #FAFAFA;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.home-partners__label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Partners Carousel */
.partners-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-carousel-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: partners-scroll 25s linear infinite;
}

.partners-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes partners-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-carousel-track .partner-logo {
    height: 48px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partners-carousel-track .partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partners-carousel-track .partner-logo img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-carousel-track .partner-logo:hover img {
    filter: grayscale(0%);
}

.partners-carousel-track .partner-logo span {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 1rem;
    white-space: nowrap;
}

/* Legacy grid fallback */
.home-partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.home-partners__grid .partner-logo {
    height: 40px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-partners__grid .partner-logo:hover {
    opacity: 1;
}

.home-partners__grid .partner-logo img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.home-partners__grid .partner-logo:hover img {
    filter: grayscale(0%);
}

.home-partners__grid .partner-logo span {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Home CTA */
.home-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a12 100%);
    overflow: hidden;
}

.home-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-cta__content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.home-cta__content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.home-cta__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-cta__visual {
    display: flex;
    justify-content: center;
}

.cta-phone {
    position: relative;
    max-width: 280px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone.no-image {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.cta-phone.no-image::after {
    content: '📱';
    font-size: 6rem;
    opacity: 0.3;
}

.cta-phone.no-image img {
    display: none;
}

.cta-phone img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* ========================================
   ARTICLE PAGE - Swiss-Clean Design
   ======================================== */

/* Article Hero */
.article-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(180deg, #FEFCF7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.article-hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.article-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

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

.article-hero__category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}

.article-hero__title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.article-hero__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-hero__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-hero__author .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.article-hero__author strong {
    display: block;
    font-size: 0.95rem;
}

.article-hero__author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.article-hero__reading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-hero__pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 90% 10%, rgba(212, 154, 0, 0.06), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 107, 107, 0.04), transparent 40%);
    pointer-events: none;
}

/* Article Content Layout */
.article-content {
    padding: 4rem 0;
    background: #FFFFFF;
}

.article-layout {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Floating Share Bar */
.article-share-bar {
    position: relative;
}

.share-bar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.share-bar__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn--twitter:hover {
    background: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.share-btn--facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #FFFFFF;
}

.share-btn--linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #FFFFFF;
}

.share-btn--whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #FFFFFF;
}

.share-btn--copy:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #FFFFFF;
}

.share-btn--copy.copied {
    background: #10B981;
    border-color: #10B981;
    color: #FFFFFF;
}

.share-bar__divider {
    width: 24px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
}

.share-btn--like {
    flex-direction: column;
    gap: 0.25rem;
    height: auto;
    padding: 0.75rem;
    border-radius: 1rem;
}

.share-btn--like span {
    font-size: 0.75rem;
    font-weight: 600;
}

.share-btn--like:hover,
.share-btn--like.liked {
    background: #FEE2E2;
    border-color: #FECACA;
    color: #EF4444;
}

.share-btn--like.liked svg {
    fill: #EF4444;
}

/* Article Main Content */
.article-main {
    min-width: 0;
}

.article-main__image {
    margin: 0 0 2.5rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(255, 107, 107, 0.1));
}

.article-main__image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-main__body {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.article-main__body p {
    margin-bottom: 1.5rem;
}

/* Article Tags */
.article-main__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #F5F5F5;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
}

/* Mobile Share Bar */
.article-share-mobile {
    display: none;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.article-share-mobile > span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.share-mobile__buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* Author Bio */
.article-author-bio {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    margin-top: 3rem;
    background: #FAFAFA;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.author-bio__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    flex-shrink: 0;
}

.author-bio__content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.author-bio__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Article Navigation */
.article-nav {
    padding: 4rem 0;
    background: #F8F8F8;
}

.article-nav__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.article-nav__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.article-nav__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 154, 0, 0.2);
}

.article-nav__item--next {
    text-align: right;
}

.article-nav__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-nav__item--next .article-nav__label {
    justify-content: flex-end;
}

.article-nav__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Related Articles */
.article-related {
    padding: 5rem 0;
    background: #FFFFFF;
}

.article-related h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.25rem;
    padding: 1rem;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

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

.related-card__image {
    width: 140px;
    height: 100px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(255, 107, 107, 0.1));
}

.related-card__image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-card__image.no-image::after {
    content: '📰';
    font-size: 2rem;
    opacity: 0.3;
}

.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-card__category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.related-card__content h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: gap 0.3s ease;
}

.related-card__link:hover {
    gap: 0.75rem;
}

/* Article CTA */
.article-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a12 100%);
    text-align: center;
}

.article-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.article-cta__content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.article-cta__content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

/* Article Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-share-bar {
        display: none;
    }

    .article-share-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .article-hero__title {
        font-size: 2rem;
    }

    .article-hero__meta {
        gap: 1rem;
    }

    .article-nav__grid {
        grid-template-columns: 1fr;
    }

    .article-nav__item--next {
        text-align: left;
    }

    .article-nav__item--next .article-nav__label {
        justify-content: flex-start;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-card {
        grid-template-columns: 1fr;
    }

    .related-card__image {
        width: 100%;
        height: 160px;
    }

    .article-author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio__avatar {
        margin: 0 auto;
    }

    .article-cta__content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .article-hero__title {
        font-size: 1.75rem;
    }

    .article-main__body {
        font-size: 1rem;
    }

    .share-mobile__buttons {
        flex-wrap: wrap;
    }
}

/* Homepage Responsive */
@media (max-width: 1200px) {
    .home-features__bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card--lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .home-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__actions {
        justify-content: center;
    }

    .home-hero__trust {
        justify-content: center;
    }

    .home-hero__visual {
        order: -1;
    }

    .hero-float--1 {
        right: 0;
    }

    .hero-float--2 {
        left: 0;
    }

    .home-blog__grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-blog-card--featured {
        grid-column: span 2;
    }

    .home-cta__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-cta__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-cta__buttons {
        justify-content: center;
    }

    .home-cta__visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 6rem 0 4rem;
    }

    .home-hero__title {
        font-size: 2.5rem;
    }

    .home-stats__grid {
        gap: 1.5rem;
    }

    .home-stats__number {
        font-size: 1.5rem;
    }

    .home-stats__divider {
        display: none;
    }

    .home-features__bento {
        grid-template-columns: 1fr;
    }

    .bento-card--lg,
    .bento-card--md,
    .bento-card--wide {
        grid-column: span 1;
    }

    .bento-card--wide {
        flex-direction: column;
        text-align: center;
    }

    .bento-card__content {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-how__steps {
        flex-direction: column;
        align-items: center;
    }

    .how-step {
        max-width: 100%;
    }

    .how-step__connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .home-blog__grid {
        grid-template-columns: 1fr;
    }

    .home-blog-card--featured {
        grid-column: span 1;
    }

    .home-cta__content h2 {
        font-size: 2rem;
    }

    .hero-phone {
        max-width: 260px;
    }

    .hero-phone__screen {
        height: 440px;
    }

    .hero-float {
        display: none;
    }

    .home-partners__grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .home-hero__title {
        font-size: 2rem;
    }

    .home-hero__actions {
        flex-direction: column;
    }

    .home-hero__actions .btn {
        width: 100%;
    }

    .home-stats__item {
        flex: 1 1 45%;
    }

    .home-cta__buttons {
        flex-direction: column;
    }

    .home-cta__buttons .btn {
        width: 100%;
    }
}

/* Gallery Styles */
.image-gallery {
    padding: 8rem 2rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.image-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 220px;
}

@media (max-width: 768px) {
    .image-gallery {
        padding: 6rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        min-height: 240px;
    }
}

/* ============================================
   CONTACT PAGE - Swiss Clean Design
   ============================================ */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    overflow: hidden;
}

.contact-hero__content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.contact-hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.contact-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.contact-hero__decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
}

.contact-hero .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.contact-hero .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(212, 154, 0, 0.05));
    top: 10%;
    right: 10%;
}

.contact-hero .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    bottom: 20%;
    right: 25%;
}

.contact-hero .shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(16, 16, 26, 0.05), rgba(16, 16, 26, 0.02));
    top: 40%;
    right: 5%;
}

/* Contact Channels */
.contact-channels {
    padding: 5rem 0;
    background: #fff;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.channel-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.channel-card:hover {
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.channel-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #e8b100);
    border-radius: 16px;
    color: white;
    margin-bottom: 1.5rem;
}

.channel-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.channel-card__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.channel-card__contact {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: auto;
    padding-bottom: 1.5rem;
}

.channel-card__action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.channel-card__action svg {
    transition: transform 0.3s ease;
}

.channel-card:hover .channel-card__action svg {
    transform: translateX(4px);
}

/* Contact Main Section */
.contact-main {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #fff 0%, #FAFAFA 100%);
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

.form-alert--success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-alert--error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.form-alert__icon {
    flex-shrink: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--secondary-color);
    background: #FAFAFA;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 154, 0, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

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

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #e8b100);
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 154, 0, 0.3);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info__card {
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info__card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-weight: 500;
    color: var(--secondary-color);
}

.hours-time {
    color: var(--text-secondary);
}

.hours-item--closed .hours-time {
    color: var(--accent-color);
}

.hours-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-info__card--dark {
    background: var(--secondary-color);
    color: white;
}

.contact-info__card--dark h3 {
    color: white;
}

.contact-info__card--dark p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.contact-info__social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    border-radius: 12px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

/* Contact FAQ */
.contact-faq {
    padding: 6rem 0;
    background: #fff;
}

.contact-faq__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-faq__header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 0.75rem;
}

.contact-faq__header p {
    color: var(--text-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FAFAFA;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Map */
.contact-map {
    padding: 4rem 0 6rem;
    background: #FAFAFA;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.map-info {
    padding: 2.5rem;
}

.map-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.map-address {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.map-address strong {
    color: var(--secondary-color);
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
}

.map-embed {
    min-height: 300px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   LEGAL PAGES - Privacy, Terms, Security, Compliance
   ============================================ */

/* Legal Hero */
.legal-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    text-align: center;
}

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

.legal-hero__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #e8b100);
    border-radius: 24px;
    color: white;
    margin: 0 auto 2rem;
}

.legal-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legal-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-meta__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legal-meta__item svg {
    color: var(--primary-color);
}

/* Legal Content Layout */
.legal-content {
    padding: 4rem 0 6rem;
    background: #fff;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Legal Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-toc {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-toc__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-toc__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-toc__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.legal-toc__link:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--secondary-color);
}

.legal-toc__link.active {
    background: rgba(212, 154, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.legal-toc__number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.6;
}

.legal-toc__link.active .legal-toc__number {
    opacity: 1;
}

.legal-sidebar__cta {
    background: linear-gradient(135deg, #FAFAFA, #F0F0F0);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-sidebar__cta h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.legal-sidebar__cta p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-sidebar__btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    background: var(--secondary-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-sidebar__btn:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
}

.legal-sidebar__cta--security {
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(255, 107, 107, 0.1));
    border-color: rgba(212, 154, 0, 0.2);
}

/* Legal Main Content */
.legal-main {
    max-width: 800px;
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-intro__text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    scroll-margin-top: 100px;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.legal-section__number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(212, 154, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: #b8860b;
}

/* Legal Lists */
.legal-list {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.legal-list li {
    margin-bottom: 0.625rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.legal-list li strong {
    color: var(--secondary-color);
}

.legal-list--numbered {
    list-style-type: decimal;
}

.legal-list--icons li {
    position: relative;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 1rem;
}

.legal-list--prohibited li::marker {
    color: var(--accent-color);
}

/* Legal Cards Grid */
.legal-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.legal-cards--small {
    grid-template-columns: repeat(4, 1fr);
}

.legal-card {
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.legal-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.legal-card__icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.legal-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

/* Legal Highlight Box */
.legal-highlight {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.08), rgba(212, 154, 0, 0.04));
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.legal-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--secondary-color);
}

.legal-highlight h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Legal Callout */
.legal-callout {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.legal-callout__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.legal-callout__content strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.legal-callout__content p {
    margin: 0;
    font-size: 0.9rem;
}

.legal-callout--important {
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.legal-callout--warning {
    background: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.legal-callout--info {
    background: rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.rights-item {
    text-align: center;
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 16px;
}

.rights-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.rights-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.rights-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Legal Contact Card */
.legal-contact-card {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-contact__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-contact__item:last-child {
    border-bottom: none;
}

.legal-contact__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.legal-contact__item a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Legal Trust Banner */
.legal-trust-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.1), rgba(255, 107, 107, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(212, 154, 0, 0.2);
    margin-top: 2rem;
}

.legal-trust__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.legal-trust-banner p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.6;
}

.legal-trust-banner--terms {
    background: linear-gradient(135deg, rgba(16, 16, 26, 0.05), rgba(16, 16, 26, 0.02));
    border-color: rgba(16, 16, 26, 0.1);
}

/* Terms-specific: Limits Table */
.limits-table {
    background: #FAFAFA;
    border-radius: 16px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.limits-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.limits-row:last-child {
    border-bottom: none;
}

.limits-row--header {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.limits-amount {
    font-weight: 700;
    color: var(--secondary-color);
}

.limits-amount--free {
    color: #4CAF50;
}

/* Terms-specific: Verification Tiers */
.verification-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tier-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tier-card__header {
    padding: 1.25rem;
    color: white;
}

.tier-card__header--basic {
    background: linear-gradient(135deg, #78909C, #607D8B);
}

.tier-card__header--enhanced {
    background: linear-gradient(135deg, var(--primary-color), #e8b100);
}

.tier-card__header--advanced {
    background: linear-gradient(135deg, var(--secondary-color), #2a2a40);
}

.tier-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-card__header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.tier-card ul {
    padding: 1.25rem;
    margin: 0;
    list-style: none;
}

.tier-card li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-card li:last-child {
    border-bottom: none;
}

.tier-limit {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #FAFAFA;
    font-size: 0.9rem;
}

.tier-limit strong {
    color: var(--secondary-color);
}

/* ============================================
   SECURITY PAGE - Additional Styles
   ============================================ */

/* Security Hero */
.security-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
    overflow: hidden;
}

.security-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.security-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 154, 0, 0.2);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.security-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.security-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.security-hero__stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.security-stat__value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.security-stat__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.1;
}

.security-grid-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Security Features */
.security-features {
    padding: 5rem 0;
    background: #fff;
}

.security-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.security-feature-card {
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.security-feature-card:hover {
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.security-feature-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #e8b100);
    border-radius: 18px;
    color: white;
    margin-bottom: 1.5rem;
}

.security-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.security-feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Security Auth Grid */
.security-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.auth-method {
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 16px;
    text-align: center;
}

.auth-method__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.auth-method h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.auth-method p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.legal-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-secondary);
    padding: 1rem;
    background: rgba(212, 154, 0, 0.05);
    border-radius: 8px;
    margin-top: 1rem;
}

/* Security Tips Grid */
.security-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.security-tip {
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 16px;
    text-align: center;
}

.security-tip__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.security-tip h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.security-tip p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Emergency Steps */
.emergency-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.emergency-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #FAFAFA;
    border-radius: 12px;
}

.emergency-step__number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.emergency-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.emergency-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #FAFAFA;
    border-radius: 12px;
}

.certification-badge__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4CAF50;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.certification-badge h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.certification-badge p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Security Promise */
.security-promise {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #1a1a2e);
    border-radius: 20px;
    margin-top: 2rem;
}

.security-promise__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.security-promise__content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.security-promise__content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.security-promise__contact {
    font-size: 0.9rem;
}

.security-promise__contact a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   COMPLIANCE PAGE - Additional Styles
   ============================================ */

/* Compliance Hero */
.compliance-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    text-align: center;
}

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

.compliance-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.compliance-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.compliance-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Compliance Pillars */
.compliance-pillars {
    padding: 5rem 0;
    background: #fff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.pillar-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 18px;
    color: white;
    margin: 0 auto 1.5rem;
}

.pillar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Licenses Table */
.licenses-table {
    background: #FAFAFA;
    border-radius: 16px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.license-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
}

.license-row:last-child {
    border-bottom: none;
}

.license-row--header {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.license-status {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.license-status--active {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.license-status--pending {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

/* KYC Tiers */
.kyc-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.kyc-tier {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.kyc-tier__header {
    padding: 1.25rem;
    color: white;
}

.kyc-tier__header--tier1 {
    background: linear-gradient(135deg, #78909C, #607D8B);
}

.kyc-tier__header--tier2 {
    background: linear-gradient(135deg, var(--primary-color), #e8b100);
}

.kyc-tier__header--tier3 {
    background: linear-gradient(135deg, var(--secondary-color), #2a2a40);
}

.kyc-tier__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.kyc-tier__header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.kyc-tier ul {
    padding: 1.25rem;
    margin: 0;
    list-style: none;
}

.kyc-tier li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.kyc-tier li:last-child {
    border-bottom: none;
}

.kyc-tier__limit {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #FAFAFA;
    font-size: 0.9rem;
}

.kyc-tier__limit strong {
    color: var(--secondary-color);
}

/* AML Grid */
.aml-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.aml-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #FAFAFA;
    border-radius: 12px;
}

.aml-item__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aml-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.aml-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Reporting Grid */
.reporting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.reporting-item {
    padding: 1.25rem;
    background: #FAFAFA;
    border-radius: 12px;
    text-align: center;
}

.reporting-item__type {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.reporting-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Audit Grid */
.audit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 1.5rem 0;
}

.audit-column h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Compliance CTA Card */
.compliance-cta-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.08), rgba(255, 107, 107, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    margin-top: 2rem;
}

.compliance-cta__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.compliance-cta__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.compliance-cta__content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.compliance-cta__contacts {
    display: flex;
    gap: 1.5rem;
}

.compliance-cta__contacts a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.compliance-cta__contacts a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE - Contact & Legal Pages
   ============================================ */

@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .security-features__grid,
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verification-tiers,
    .kyc-tiers {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .aml-grid,
    .security-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reporting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero,
    .legal-hero,
    .security-hero,
    .compliance-hero {
        padding: 6rem 0 3rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        display: none;
    }
    
    .legal-cards,
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-cards--small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-features__grid,
    .pillars-grid,
    .aml-grid,
    .security-tips-grid,
    .certifications-grid,
    .audit-grid {
        grid-template-columns: 1fr;
    }
    
    .security-hero__stats {
        gap: 2rem;
    }
    
    .security-auth-grid {
        grid-template-columns: 1fr;
    }
    
    .license-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .license-row--header {
        display: none;
    }
    
    .reporting-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-trust-banner,
    .security-promise,
    .compliance-cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .compliance-cta__contacts {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-grid {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .legal-cards,
    .rights-grid,
    .legal-cards--small {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .channel-card {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Construction Notice Modal */
.construction-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.construction-modal.show {
    opacity: 1;
    visibility: visible;
}

.construction-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 16, 26, 0.8);
    backdrop-filter: blur(8px);
}

.construction-modal__content {
    position: relative;
    background: var(--bg-primary);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    margin: 2rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.construction-modal__header {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(212, 154, 0, 0.05), rgba(232, 177, 26, 0.05));
}

.construction-modal__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #E8B11A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.construction-modal__title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.construction-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

.construction-modal__close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.construction-modal__body {
    padding: 2rem;
}

.construction-modal__message {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.construction-modal__submessage {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.construction-modal__footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .construction-modal__header {
        padding: 1rem 1.5rem;
    }
    
    .construction-modal__body {
        padding: 1.5rem;
    }
    
    .construction-modal__footer {
        padding: 1rem 1.5rem;
    }
    
    .construction-modal__icon {
        width: 40px;
        height: 40px;
    }
    
    .construction-modal__title {
        font-size: 1.1rem;
    }
}
