/* ===== VINFAST AUTO DEALERSHIP - RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* VinFast Signature Palette */
    --primary: #005baa;
    --primary-hover: #004688;
    --primary-light: #e8f2fc;
    --primary-50: #f4f8fe;

    --accent-cyan: #00c2ff;
    --accent-gold: #f59e0b;

    --dark: #09111e;
    --dark-800: #111e36;
    --dark-700: #1e293b;
    --dark-600: #334155;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --white: #ffffff;

    /* Fonts */
    --font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Layout */
    --container: 1160px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 48px rgba(0,91,170,0.15);

    /* Transitions */
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #004688 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 91, 170, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #004688 0%, #003366 100%);
    box-shadow: 0 6px 20px rgba(0, 91, 170, 0.45);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 16px rgba(0, 91, 170, 0.35);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.mobile-cta-btn {
    display: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 76px;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 24px 40px;
    text-align: center;
}

.hero-content {
    max-width: 1040px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(0, 91, 170, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.badge-dot-white {
    background: var(--white);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    margin: 0 auto 36px;
    max-width: 1060px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 91, 170, 0.18);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.hero-banner-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.hero-cta-btn {
    margin-bottom: 50px;
}

/* ===== TRUSTED BY ===== */
.trusted-section {
    padding: 36px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.trusted-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 1px;
}

.trusted-logo-serif {
    font-style: italic;
    font-family: Georgia, serif;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ===== STATS / REVOLUTION SECTION ===== */
.revolution-section {
    background: var(--white);
}

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

.stat-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
    border: 1px solid rgba(0, 91, 170, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.stat-suffix {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== VINFAST SUV SHOWCASE SECTION ===== */
.showcase-section {
    background: var(--dark);
    color: var(--white);
    padding: 90px 0;
    position: relative;
}

.showcase-header .section-title {
    color: var(--white);
}

.showcase-header .section-subtitle {
    color: var(--gray-400);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.showcase-img-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 194, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.showcase-slider-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.showcase-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.showcase-slide {
    min-width: 100%;
    /* height: 380px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #ffffff;
}

.showcase-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 0 20px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.showcase-dot.active {
    background: #005baa;
    width: 28px;
    border-radius: 6px;
}

.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 194, 255, 0.15);
    color: var(--accent-cyan);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
}

.showcase-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.showcase-desc {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.showcase-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.spec-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== RETAIL EXPERIENCE SECTION ===== */
.experience-section {
    background: var(--gray-50);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 18px 0 32px;
}

.experience-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.experience-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 600;
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.exp-img-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.exp-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.exp-img-card-full {
    grid-column: 1 / -1;
}

.exp-img-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== APPLICATION FORM SECTION (REPLICATING SCREENSHOT) ===== */
.application-section {
    background: #f8fafc;
    padding: 80px 0;
}

.form-header-center {
    text-align: center;
    margin-bottom: 36px;
}

.form-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    font-family: var(--font);
}

.form-container-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 48px 56px;
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}

.app-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1f2937;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Phone Input Custom Flag Selector */
.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.country-code-picker {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 12px;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    font-size: 0.92rem;
    color: #374151;
    font-weight: 500;
    user-select: none;
    flex-shrink: 0;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
}

.country-code-picker svg {
    color: #6b7280;
}

.phone-input-group input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 12px;
}

/* Select Wrapper Custom Arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-70%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    pointer-events: none;
}

/* Radio Group */
.radio-question-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.radio-options-row {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 4px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
    cursor: pointer;
}

/* Terms Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: #2563eb;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #4b5563;
}

.checkbox-group label a {
    color: #3b82f6;
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: #1d4ed8;
}

/* Submit Button */
.btn-submit-dealer {
    margin-top: 12px;
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    background: #005baa;
    color: #ffffff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(0, 91, 170, 0.25);
}

.btn-submit-dealer:hover {
    background: #004688;
    transform: translateY(-1px);
}

/* ===== PARTNER STEPS ===== */
.partner-section {
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 0 16px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 12px;
    line-height: 1;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 24px;
    flex-shrink: 0;
}

/* ===== STORIES / TESTIMONIALS ===== */
.stories-section {
    background: var(--gray-50);
}

.stories-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stories-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    flex: 1;
}

.stories-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stories-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 4px;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
}

.story-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

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

.story-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.story-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-avatar span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.story-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.story-role {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    transition: color var(--transition);
}

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

.faq-chevron {
    transition: transform var(--transition);
    color: var(--gray-400);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
    text-align: center;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.18;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 36px;
    line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
    background: #060b14;
    color: var(--gray-400);
    padding-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo-img {
    height: 34px;
    width: auto;
    filter: invert(1);
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--gray-400);
    transition: color var(--transition);
}

.social-link:hover {
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .stats-grid {
        gap: 20px;
    }

    .experience-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-container-card {
        padding: 40px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        height: calc(100vh - 76px);
        background: #0b1329 !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 24px 24px 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff !important;
        padding: 16px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        transition: all 0.2s ease;
    }

    .nav-links .nav-link:hover {
        color: var(--accent-cyan) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-cta-btn {
        display: flex !important;
        width: 100%;
        margin-top: 24px;
        padding: 16px;
        font-size: 1rem;
        border-radius: var(--radius-md);
        text-align: center;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1060;
    }

    .btn-nav {
        display: none !important;
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-container-card {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .form-header-title {
        font-size: 2rem;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .stories-slide {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .spec-value {
    font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

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

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
    }

    .radio-options-row {
        gap: 24px;
    }
}

/* ===== LEGAL PAGES (PRIVACY & TERMS) ===== */
.legal-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.legal-nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color var(--transition);
}

.back-home-link:hover {
    color: var(--primary);
}

.legal-main {
    padding: 60px 0 90px;
    background: var(--gray-50);
}

.legal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    padding: 56px 64px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--gray-700);
    line-height: 1.75;
    font-size: 0.98rem;
}

.legal-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
}

.legal-subsection-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.legal-highlight-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-list {
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    line-height: 1.65;
}

.legal-contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 12px;
}

.legal-contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 32px 20px;
        border-radius: var(--radius-lg);
    }

    .legal-title {
        font-size: 1.85rem;
    }

    .legal-section-title {
        font-size: 1.15rem;
    }
}

/* ===== FEATURES GRID SECTION (MATCHING SCREENSHOT) ===== */
.features-grid-section {
    background: #ffffff;
    padding: 85px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.features-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 56px;
    column-gap: 48px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-box-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 320px;
}

@media (max-width: 992px) {
    .features-grid-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        column-gap: 32px;
    }
}

@media (max-width: 640px) {
    .features-grid-container {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }
}


