/* Presencia - Employee Attendance & Time Tracking */

@import url('/site-assets/css/fonts.css');

:root {
    /* Blue palette */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-subtle: #eff6ff;
    --accent: #06b6d4;
    --accent-light: #cffafe;

    /* Neutrals */
    --secondary: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Semantic */
    --success: #22c55e;
    --success-light: #dcfce7;
    --success-dark: #16a34a;
    --error: #ef4444;

    /* Effects */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #dbeafe 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-primary: 0 20px 40px -10px rgba(37, 99, 235, 0.35);
    --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.15);

    /* Spacing & Radius */
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

/* ==================== Animations ==================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
}

.animate { opacity: 0; }

.animate.animate-in {
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.animate.fade-up.animate-in { animation-name: fadeUp; }
.animate.fade-in.animate-in { animation-name: fadeIn; }
.animate.scale-in.animate-in { animation-name: scaleIn; }
.animate.slide-right.animate-in { animation-name: slideInRight; }

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .animate { opacity: 1; animation: none !important; }
}

/* ==================== Base ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ==================== Top Banner ==================== */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--secondary);
    padding: 0.625rem 0;
}

.top-banner .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.top-banner span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.top-banner a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #67e8f9;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.top-banner a:hover {
    color: #a5f3fc;
}

.top-banner a svg {
    width: 16px;
    height: 16px;
}

/* ==================== Header ==================== */
header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    padding: 0.875rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

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

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

nav .nav-lang {
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

nav .nav-lang:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 1px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

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

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

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

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 10.5rem 0 5rem;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-subtle);
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.08;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

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

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.125rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 2rem;
    color: var(--success-dark);
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

.hero-screenshot {
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 640px;
    width: 100%;
    border: 1px solid var(--border);
}

.hero-screenshot img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-mockup {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mockup-header h3 {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.mockup-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.timeline-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: transform 0.2s;
}

.timeline-entry:hover { transform: translateX(4px); }

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-dot.green { background: var(--primary); }
.timeline-dot.orange { background: #f59e0b; }
.timeline-dot.red { background: #ef4444; }
.timeline-dot.blue { background: #3b82f6; }

.timeline-info { flex: 1; }

.timeline-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
}

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

.timeline-time {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.hero-stat {
    position: absolute;
    background: white;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.hero-stat-icon svg { width: 20px; height: 20px; }

.hero-stat-icon--green { background: #dbeafe; color: #2563eb; }
.hero-stat-icon--amber { background: #fef3c7; color: #d97706; }

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

.hero-stat-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

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

.hero-stat-1 { top: 5%; left: -15%; animation-delay: 0s; }
.hero-stat-2 { bottom: 10%; right: -15%; animation-delay: 1s; }

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

.section-header h2 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ==================== Features Section ==================== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon { transform: scale(1.05); }

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

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-grid + .feature-grid { margin-top: 1.25rem; }

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid var(--primary);
    color: var(--primary);
    font-family: 'Satoshi', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.08);
    box-shadow: var(--shadow-primary);
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Highlight Section ==================== */
.highlight {
    padding: 5rem 0;
    background: var(--bg-alt);
}

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

.highlight-content h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.highlight-content > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text);
}

.highlight-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-visual {
    display: flex;
    justify-content: center;
}

.highlight-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}

.highlight-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.highlight-card-header h4 {
    font-size: 0.9375rem;
    color: var(--secondary);
}

.highlight-card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: var(--primary-subtle);
    color: var(--primary-dark);
    border-radius: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.stat-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

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

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 80px;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.bar-1 { height: 65%; background: var(--primary-subtle); }
.bar-2 { height: 80%; background: var(--primary-subtle); }
.bar-3 { height: 92%; background: var(--primary); }
.bar-4 { height: 85%; background: var(--primary-subtle); }
.bar-5 { height: 95%; background: var(--primary); }

/* ==================== Value Proposition ==================== */
.value-prop {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.value-prop-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    flex-wrap: wrap;
}

.value-prop-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.value-prop-text h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.375rem;
}

.value-prop-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ==================== Showcase Sections ==================== */
.showcase {
    padding: 5rem 0;
    background: white;
}

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

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

.showcase-block-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.showcase-block-reverse .showcase-text {
    order: 2;
}

.showcase-block-reverse .showcase-image {
    order: 1;
}

.showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary-subtle);
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.showcase-text h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.showcase-text > p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.showcase-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text);
}

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

.store-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.store-badge {
    display: block;
    height: 40px;
    transition: opacity 0.2s, transform 0.2s;
}

.store-badge svg {
    height: 40px;
    width: auto;
}

.store-badge:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .store-badges { justify-content: center; }
}

.showcase-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.showcase-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Showcase Duo (two screenshots side by side) */
.showcase-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.showcase-duo-item {
    text-align: center;
}

.showcase-duo-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.showcase-duo-item h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.showcase-duo-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto;
}

/* Showcase Phones (mobile app screenshots) */
.showcase-phones {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
    background: none;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.showcase-phones .phone-screenshot {
    width: 240px;
    height: auto;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.showcase-phones .phone-screenshot:nth-child(2) {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .showcase-phones .phone-screenshot { width: 160px; }
    .showcase-phones { gap: 1rem; }
}

@media (max-width: 1024px) {
    .showcase-block,
    .showcase-block-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .showcase-block-reverse .showcase-text { order: 1; }
    .showcase-block-reverse .showcase-image { order: 2; }

    .showcase-text { text-align: center; }
    .showcase-features { align-items: center; }
    .showcase-duo { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .showcase { padding: 3rem 0; }
    .showcase-text h2 { font-size: 1.75rem; }
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
}

.faq-item summary:hover { background: var(--bg-alt); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--border-light); }

.faq-answer {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== Final CTA ==================== */
.final-cta {
    padding: 6rem 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

/* ==================== Footer ==================== */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand .logo svg { color: var(--primary-light); }

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--text-light);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ==================== Contact Page ==================== */
.contact-page {
    padding: 12.5rem 0 4rem;
}

.contact-page .container {
    max-width: 600px;
}

.contact-page h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.contact-page > .container > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

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

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

.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    display: none;
    font-weight: 500;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background: rgba(37, 99, 235, 0.1);
    color: #1e40af;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

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

    .hero-content { max-width: 100%; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-trust { margin: 0 auto; }
    .hero-visual { max-width: 100%; margin: 0 auto; }
    .hero-stat { display: none; }

    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-grid { grid-template-columns: 1fr; gap: 2rem; }
    .highlight-content { text-align: center; }
    .highlight-list { align-items: center; }
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 8.5rem 0 4rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .section-header h2 { font-size: 2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .final-cta h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    nav {
        position: fixed;
        top: 96px;
        left: 0; right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        display: none;
        gap: 1rem;
        z-index: 999;
    }

    nav.nav-open { display: flex; }

    .nav-buttons { flex-direction: column; width: 100%; }
    .nav-buttons .btn { width: 100%; }
    .mobile-menu-btn { display: flex; }

    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2rem; }
    .hero-mockup { padding: 1.25rem; }
}
