/* ========================
   FAST BACKUPS — Style v5.0
   Servmask-inspired design
   ======================== */

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

:root {
    --primary: #2D518D;
    --primary-dark: #1E3764;
    --primary-light: #3B6AB5;
    --accent: #F47920;
    --text: #333;
    --text-light: #6B7280;
    --bg: #fff;
    --bg-alt: #F8FAFC;
    --bg-dark: #0F172A;
    --border: #E5E7EB;
    --radius: 12px;
    --radius-sm: 8px;
    --max-width: 1200px;
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, #0F172A 0%, #1E3764 50%, #2D518D 100%);
    color: #fff;
    overflow: hidden;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #E06A10;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}

/* Hero Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    color: var(--text);
}

.hero-card-header {
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.card-dots span:first-child { background: #EF4444; }
.card-dots span:nth-child(2) { background: #F59E0B; }
.card-dots span:last-child { background: #22C55E; }

.card-title {
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
}

.hero-card-body {
    padding: 24px;
}

.card-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: var(--bg-alt);
    transition: all var(--transition);
}

.card-step.active {
    background: #EFF6FF;
    border-left: 3px solid var(--primary);
}

.card-step div {
    flex: 1;
}

.card-step strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.card-step span {
    font-size: 12px;
    color: var(--text-light);
}

.card-step i:first-child {
    color: var(--primary);
    flex-shrink: 0;
}

.card-step .check {
    color: #22C55E;
    flex-shrink: 0;
}

.card-step:not(.active) i:first-child {
    color: #9CA3AF;
}

.card-progress {
    margin-top: 16px;
}

.progress-bar {
    height: 4px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: var(--primary);
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { width: 60%; }
    50% { width: 85%; }
}

.card-progress span {
    font-size: 12px;
    color: var(--text-light);
}

/* ========================
   STATS BAR
   ======================== */
.stats-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
}

.stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ========================
   BANNER SECTION
   ======================== */
.banner-section {
    width: 100%;
}

.banner-inner {
    display: table;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
}

.banner-inner img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}

/* ========================
   FEATURES SECTION
   ======================== */
.features-section {
    padding: 80px 24px;
}

.features-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.features-inner > h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-sub {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: left;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(45,81,141,0.08);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
    padding: 48px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-label {
    font-weight: 700;
    font-size: 18px;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.cta-inner p {
    font-size: 18px;
    opacity: 0.9;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-white:hover {
    background: #F3F4F6;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ========================
   HOW SECTION
   ======================== */
.how-section {
    padding: 80px 24px;
    background: var(--bg-alt);
}

.how-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.how-inner > h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 56px;
    letter-spacing: -0.01em;
}

.how-inner > h2 span {
    display: block;
    color: var(--text-light);
    font-size: 28px;
    font-weight: 500;
    margin-top: 8px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.how-step {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}

.how-step:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 20px;
}

.how-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.how-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.step-badge {
    background: #EFF6FF;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 20px;
}

.step-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-tags span {
    background: #EFF6FF;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}

/* ========================
   DESTINATIONS SECTION
   ======================== */
.destinations-section {
    padding: 80px 24px;
}

.destinations-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.destinations-inner > h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dest-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
}

.dest-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(45,81,141,0.08);
    transform: translateY(-2px);
}

.dest-card i {
    color: var(--primary);
    margin-bottom: 20px;
}

.dest-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dest-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================
   COMPARISON TABLE
   ======================== */
.comparison-section {
    padding: 80px 24px;
    background: var(--bg-alt);
}

.comparison-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.comparison-inner > h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-alt);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.comparison-table th.highlight {
    background: var(--primary);
    color: #fff;
}

.comparison-table td:first-child {
    font-weight: 500;
    font-size: 15px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comp-yes {
    color: #22C55E;
    font-weight: 700;
}

.comp-no {
    color: #EF4444;
}

/* ========================
   FAQ SECTION
   ======================== */
.faq-section {
    padding: 80px 24px;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-inner > h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
}

.faq-inner > h2 span {
    display: block;
    color: var(--text-light);
    font-size: 22px;
    font-weight: 400;
    margin-top: 8px;
}

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

.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.faq-list summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    transition: color var(--transition);
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--text-light);
    transition: transform var(--transition);
}

.faq-list details[open] summary::after {
    content: '−';
    color: var(--primary);
}

.faq-list details[open] summary {
    color: var(--primary);
}

.faq-answer {
    padding: 0 0 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer ol {
    margin: 12px 0;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 2;
}

.faq-answer strong {
    color: var(--text);
}

/* ========================
   CTA FINAL
   ======================== */
.cta-final {
    margin-bottom: 0;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid,
    .how-steps,
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .cta-inner {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 80px 20px 40px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features-grid,
    .how-steps,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .features-inner > h2,
    .how-inner > h2,
    .destinations-inner > h2,
    .comparison-inner > h2,
    .faq-inner > h2 {
        font-size: 28px;
    }

    .how-inner > h2 span {
        font-size: 22px;
    }

    .stat-item strong {
        font-size: 20px;
    }

    .stat-item span {
        display: flex;
        min-height: 38px;
        align-items: flex-start;
        justify-content: center;
        line-height: 1.45;
    }
}
