@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Color Palette - Premium Light Theme + Crimson Red Accents */
    --bg-main: #FFFFFF;
    --bg-subtle: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-subtle: #FAFAFA;
    --bg-dark-accent: #0F172A;
    
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-subtle: #64748B;
    --text-white: #FFFFFF;
    
    --accent-red: #E60000;
    --accent-red-hover: #C50000;
    --accent-red-light: #FFF0F0;
    --accent-red-border: #FCA5A5;
    --accent-red-glow: rgba(230, 0, 0, 0.14);

    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1EBE5D;
    --whatsapp-green-light: #EBFBF1;
    --whatsapp-green-border: rgba(37, 211, 102, 0.3);

    --border-light: #E2E8F0;
    --border-hover: #CBD5E1;
    --border-red: rgba(230, 0, 0, 0.35);

    /* Radius & Shadows */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-pill: 9999px;

    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.03);
    --shadow-card: 0 12px 36px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 20px 40px rgba(230, 0, 0, 0.1);
    --shadow-red-button: 0 8px 24px rgba(230, 0, 0, 0.25);
    --shadow-whatsapp-button: 0 8px 24px rgba(37, 211, 102, 0.3);

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-red {
    color: var(--accent-red);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-red) 0%, #990000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating WhatsApp Action Button Widget */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 996;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: pulseWhatsapp 2.5s infinite ease-in-out;
}

.whatsapp-float:hover .whatsapp-icon-box {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.1);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
    background: #FFFFFF;
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--border-light);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulseWhatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Nav Button & Secondary Buttons */
.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--whatsapp-green);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    background: var(--whatsapp-green-light);
    border: 1px solid var(--whatsapp-green-border);
    transition: var(--transition);
}

.btn-whatsapp-nav:hover {
    background: var(--whatsapp-green);
    color: #FFFFFF;
    border-color: var(--whatsapp-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp-green-light);
    color: #128C7E;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid var(--whatsapp-green-border);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 52px;
}

.btn-whatsapp-secondary:hover {
    background: var(--whatsapp-green);
    color: #FFFFFF;
    border-color: var(--whatsapp-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-size: 1.02rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-whatsapp-button);
    transition: var(--transition);
    text-decoration: none;
    min-height: 52px;
}

.btn-whatsapp-primary:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 4px 0;
    z-index: 1001;
}

.logo-img {
    height: 60px;
    max-height: 68px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.mobile-only-icon {
    display: none;
}

.mobile-drawer-footer {
    display: none;
}

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

.mobile-bottom-dock {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--accent-red);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.btn-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--accent-red-light);
    border-color: var(--accent-red-border);
    color: var(--accent-red);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-red);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    box-shadow: var(--shadow-red-button);
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 0, 0, 0.35);
}

.mobile-toggle {
    display: none;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-red);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-size: 1.02rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-red-button);
    transition: var(--transition);
    text-decoration: none;
    min-height: 52px;
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(230, 0, 0, 0.35);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-main);
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 52px;
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--border-hover);
    color: var(--accent-red);
}

/* Badges */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: var(--accent-red-light);
    border: 1px solid rgba(230, 0, 0, 0.18);
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.badge-pill i {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 80% 20%, rgba(230, 0, 0, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(248, 250, 252, 1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.stat-item h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-subtle);
    font-weight: 600;
}

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

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    background: var(--bg-main);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-card:hover .hero-img {
    transform: scale(1.03);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
    bottom: 24px;
    left: -20px;
}

.floating-card-2 {
    top: 24px;
    right: -20px;
    animation-delay: 2s;
}

.icon-box-red {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-red-light);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.floating-card-text p {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

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

/* Section Headings */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-main);
}

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

/* Bento Valuation Form Section */
.valuation-section {
    padding: 100px 0;
    background-color: var(--bg-subtle);
    position: relative;
}

.form-wrapper {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.form-step-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.form-step-nav::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--bg-main);
    padding: 0 16px;
    cursor: pointer;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-subtle);
    border: 2px solid var(--border-light);
    color: var(--text-subtle);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-indicator.active .step-number {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 0 0 6px var(--accent-red-glow);
}

.step-indicator.completed .step-number {
    background: var(--text-main);
    border-color: var(--text-main);
    color: var(--text-white);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.step-indicator.active .step-label {
    color: var(--accent-red);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-title i {
    color: var(--accent-red);
}

/* Quick Brand Selector Chips */
.quick-brand-wrapper {
    margin-bottom: 32px;
    padding: 16px 20px;
    background: var(--bg-subtle);
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-brand-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.quick-brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.brand-chip {
    padding: 10px 18px;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    touch-action: manipulation;
}

.brand-chip:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: var(--accent-red-light);
}

.brand-chip.selected {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.25);
}

/* Enhanced Form Control Inputs & Selects */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Styled Custom Select Box */
.custom-select-box {
    position: relative;
    display: flex;
    align-items: center;
}

.select-badge-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--accent-red-light);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.select-badge-icon i {
    width: 16px;
    height: 16px;
}

.styled-select {
    width: 100%;
    padding: 16px 44px 16px 54px;
    background: var(--bg-subtle);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
    appearance: none;
    cursor: pointer;
    min-height: 52px;
}

.styled-select:hover {
    border-color: var(--border-hover);
    background: var(--bg-main);
}

.styled-select:focus {
    outline: none;
    background: var(--bg-main);
    border-color: var(--accent-red);
    box-shadow: 0 0 0 5px var(--accent-red-glow);
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--accent-red);
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s ease;
}

.custom-select-box:focus-within .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Styled Custom Input Icon Box */
.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-field-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-subtle);
    pointer-events: none;
    transition: color 0.3s ease;
}

.styled-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--bg-subtle);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
    min-height: 52px;
}

.styled-input:hover {
    border-color: var(--border-hover);
    background: var(--bg-main);
}

.styled-input:focus {
    outline: none;
    background: var(--bg-main);
    border-color: var(--accent-red);
    box-shadow: 0 0 0 5px var(--accent-red-glow);
}

.input-icon-wrapper:focus-within .input-field-icon {
    color: var(--accent-red);
}

.form-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.form-notice {
    font-size: 0.85rem;
    color: var(--text-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-notice i {
    color: var(--accent-red);
}

.form-message {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F0FDF4;
    color: #15803D;
    border: 1px solid #DCFCE7;
}

.form-message.error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-red-light);
    color: var(--accent-red);
    border: 1px solid var(--accent-red-border);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
}

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

.step-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-red-border);
    box-shadow: var(--shadow-hover);
}

.step-number-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red-light);
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Features / Benefits Section (Bento Grid) */
.features-section {
    padding: 100px 0;
    background: var(--bg-subtle);
}

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

.bento-card {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-red-border);
    box-shadow: var(--shadow-hover);
}

.bento-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--accent-red-light) 100%);
    border-color: rgba(230, 0, 0, 0.2);
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--accent-red-light);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Trust / Handover Showcase */
.trust-showcase {
    padding: 100px 0;
}

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

.trust-img-box {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

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

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-red);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0 140px 0;
    background: var(--bg-subtle);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent-red-border);
    box-shadow: var(--shadow-soft);
}

.faq-header {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    user-select: none;
}

.faq-header i {
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 28px 24px 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
}

/* Footer */
.footer {
    background: var(--bg-dark-accent);
    color: var(--text-white);
    padding: 80px 0 100px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo-img {
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    height: 68px;
    width: auto;
    align-self: flex-start;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loading-logo {
    max-height: 95px;
    animation: pulse 1.5s infinite ease-in-out;
}

.loading-bar {
    width: 220px;
    height: 4px;
    background-color: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background-color: var(--accent-red);
    animation: loading 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

body.loaded #loading-screen {
    opacity: 0;
    visibility: hidden;
}

/* 
=====================================================
  RESPONSIVE MOBILE HEADER & OPTIMIZED WHATSAPP POSITIONING
=====================================================
*/

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        height: 84px;
    }

    .logo-img {
        height: 52px;
    }
}

@media (max-width: 868px) {
    /* Hide desktop nav elements on mobile */
    .desktop-only,
    .mobile-toggle,
    .btn-mobile-quick-cta,
    .nav-menu,
    .nav-actions {
        display: none !important;
    }

    /* Clean fixed header on mobile with centered logo */
    .nav-container {
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-logo {
        margin: 0 auto;
        padding: 0;
    }

    .logo-img {
        height: 48px;
        max-height: 52px;
        width: auto;
    }

    /* Ergonomic WhatsApp Float positioning right above bottom dock on mobile */
    .whatsapp-float {
        bottom: 92px;
        right: 20px;
        z-index: 998;
    }

    .whatsapp-icon-box {
        width: 50px;
        height: 50px;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    }

    .whatsapp-icon-box svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-tooltip {
        display: none !important;
    }

    /* Floating App-Style Bottom Dock Bar */
    .mobile-bottom-dock {
        display: flex !important;
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        height: 64px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(226, 232, 240, 0.9);
        border-radius: var(--radius-pill);
        box-shadow: 0 14px 40px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.6);
        z-index: 997;
        align-items: center;
        justify-content: space-around;
        padding: 0 8px;
    }

    .dock-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: var(--text-subtle);
        text-decoration: none;
        font-size: 0.72rem;
        font-weight: 700;
        transition: var(--transition);
        flex: 1;
        height: 100%;
    }

    .dock-item i {
        width: 20px;
        height: 20px;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .dock-item.active,
    .dock-item:hover {
        color: var(--accent-red);
    }

    .dock-item.active i {
        transform: translateY(-2px);
        color: var(--accent-red);
    }

    /* Central CTA Elevated Dock Item */
    .dock-item.dock-cta {
        position: relative;
        color: var(--accent-red);
    }

    .dock-cta-badge {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--accent-red);
        color: var(--text-white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -18px;
        box-shadow: 0 8px 22px rgba(230, 0, 0, 0.4);
        border: 3px solid #FFFFFF;
        transition: transform 0.3s ease;
    }

    .dock-cta-badge i {
        width: 22px;
        height: 22px;
        color: var(--text-white);
    }

    .dock-item.dock-cta:active .dock-cta-badge {
        transform: scale(0.92);
    }

    /* Hero Mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary,
    .hero-cta-group .btn-whatsapp-secondary {
        width: 100%;
    }

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

    .stat-item h4 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    .floating-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .floating-card-1 {
        bottom: 12px;
        left: 8px;
    }

    .floating-card-2 {
        top: 12px;
        right: 8px;
    }

    .floating-card-text h5 {
        font-size: 0.82rem;
    }

    .floating-card-text p {
        font-size: 0.72rem;
    }

    /* Sections Mobile */
    .valuation-section,
    .how-it-works,
    .features-section,
    .trust-showcase,
    .faq-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .form-wrapper {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }

    .form-step-nav {
        margin-bottom: 32px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-brand-wrapper {
        padding: 12px 14px;
        margin-bottom: 24px;
    }

    .quick-brand-chips {
        gap: 6px;
    }

    .brand-chip {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .styled-select,
    .styled-input {
        padding: 14px 38px 14px 48px;
        font-size: 1rem;
        min-height: 48px;
    }

    .form-navigation {
        flex-direction: column-reverse;
        gap: 16px;
        align-items: stretch;
        margin-top: 28px;
        padding-top: 24px;
    }

    .form-navigation .btn-primary,
    .form-navigation .btn-secondary {
        width: 100%;
    }

    .form-notice {
        justify-content: center;
        text-align: center;
    }

    .steps-grid,
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .step-card,
    .bento-card {
        padding: 28px 24px;
    }

    .faq-header {
        padding: 18px 20px;
        font-size: 0.98rem;
    }

    .faq-body {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 50px 0 110px 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

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

    .hero-content p {
        font-size: 0.95rem;
    }

    .badge-pill {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .floating-card {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 12px;
        animation: none;
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-step-nav::before {
        left: 20px;
        right: 20px;
    }

    .step-indicator {
        padding: 0 4px;
    }
}
