/* ============================================
   MOBILHOME SIMULATOR — PREMIUM REDESIGN
   Aesthetic: Organic warmth · Refined natural
   Palette: Deep forest green + warm sand + bone white
   Font: Fraunces (display) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,300;1,9..144,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
    /* Brand Palette */
    --primary: #2d5016;          /* Deep forest green */
    --primary-hover: #1f3a0f;
    --primary-light: #f0f4eb;
    --accent: #c8975a;           /* Warm amber wood */
    --accent-hover: #b07d44;
    --accent-light: #fdf6ee;

    /* Neutrals */
    --bg-color: #f7f4ef;         /* Warm bone */
    --bg-alt: #ffffff;
    --card-bg: #ffffff;
    --surface: #faf8f5;

    /* Text */
    --text-main: #1a1a14;
    --text-secondary: #4a4a3a;
    --text-light: #7a7a68;
    --text-muted: #a8a898;

    /* Borders */
    --border-color: #e8e4dc;
    --border-subtle: #f0ece6;

    /* WhatsApp */
    --whatsapp: #25D366;
    --whatsapp-hover: #1aaa52;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 26, 20, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 26, 20, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 26, 20, 0.10);
    --shadow-xl: 0 24px 60px rgba(26, 26, 20, 0.12);
    --shadow-green: 0 8px 30px rgba(45, 80, 22, 0.20);
    --shadow-accent: 0 8px 30px rgba(200, 151, 90, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

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

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== UTILITIES ===== */
.hidden-label { display: none; }

.hero-badge i { margin-right: 6px; }

.btn-next i, .btn-submit i { margin-left: 8px; }
.btn-back i { margin-right: 8px; }
.model-badge i, .model-message i { margin-right: 4px; }

/* ===== HERO ===== */
.hero {
    background-color: var(--primary);
    background-image:
        radial-gradient(ellipse 80% 60% at 60% 0%, rgba(200, 151, 90, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 100%, rgba(45, 80, 22, 0.5) 0%, transparent 60%);
    padding: 100px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative grain texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Decorative arc bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-color);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(200, 151, 90, 0.2);
    color: #e8b87a;
    border: 1px solid rgba(200, 151, 90, 0.3);
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 28px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: 58px;
    font-weight: 800;
    color: #f5f0e8;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.hero h1 span {
    color: var(--accent);
    font-style: italic;
    font-weight: 700;
}

.hero p {
    font-size: 19px;
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: 44px;
    max-width: 560px;
    line-height: 1.55;
    font-weight: 300;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 44px;
    background-color: var(--accent);
    color: #1a1a14;
    font-size: 17px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-accent);
    letter-spacing: -0.2px;
}

.btn-large:hover {
    background-color: #dba668;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(200, 151, 90, 0.35);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background-color: var(--bg-alt);
    padding: 64px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.trust-item {
    text-align: center;
    padding: 28px 32px;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--border-color);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 18px;
}

.trust-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.trust-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SIMULATOR SECTION ===== */
.simulator-section {
    padding: 80px 0 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
    color: var(--text-main);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.simulator-wrapper {
    max-width: 620px;
    margin: 0 auto;
}

/* ===== CARD ===== */
.card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px 44px;
    margin-bottom: 24px;
    border: 1px solid var(--border-subtle);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

input[type="number"],
input[type="text"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition);
    background-color: var(--surface);
    color: var(--text-main);
    appearance: none;
    -webkit-appearance: none;
}

input:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 80, 22, 0.10);
    background-color: #fff;
    outline: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7a68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.checkbox-group input {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-main);
    font-weight: 500;
}

/* Crane step extras */
.wizard-step-crane { margin-bottom: 25px; }
.crane-checkbox-wrapper { justify-content: center; margin-bottom: 20px; }
input#crane { width: 24px; height: 24px; }
label[for="crane"] { font-size: 16px; padding-top: 2px; }
.wizard-buttons.align-center { align-items: center; }
.btn-submit-crane { flex: 1; margin-top: 0; }

.inline-hint {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 13px 18px;
    border-radius: var(--radius-md);
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    line-height: 1.5;
}

.alert.show { display: block; }

.alert i { margin-right: 7px; }

.alert-info {
    background: #eef5e8;
    color: #2d5016;
    border: 1px solid #c5dba8;
}

.alert-warning {
    background: #fdf6ee;
    color: #8a5a1a;
    border: 1px solid #f0d4a0;
}

.alert-success {
    background: #eef5e8;
    color: #2d5016;
    border: 1px solid #c5dba8;
}

/* ===== BUTTONS ===== */
.btn-submit {
    width: 100%;
    padding: 17px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    letter-spacing: -0.2px;
}

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

/* ===== LEAD CARD ===== */
#lead-card {
    display: none;
    text-align: center;
    animation: fadeSlideUp 0.5s ease both;
}

.lead-whatsapp-icon {
    font-size: 56px;
    color: var(--whatsapp);
    margin-bottom: 16px;
    display: block;
}

.lead-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.lead-subtitle {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.55;
}

#lead-form { text-align: left; }
.lead-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 4px; }
.privacy-notice {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}
.privacy-notice a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== RESULTS CONTAINER ===== */
#results-container {
    display: none;
    animation: fadeSlideUp 0.5s ease both;
}

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

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

/* ===== PRICE HERO (Results) ===== */
.result-card-main {
    max-width: 620px;
    margin: 0 auto 40px;
}

.price-hero {
    background: var(--primary);
    background-image: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200, 151, 90, 0.2) 0%, transparent 60%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 44px 28px;
    text-align: center;
    margin-bottom: -28px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-green);
}

.price-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 151, 90, 0.2);
    color: #e8b87a;
    border: 1px solid rgba(200, 151, 90, 0.3);
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
}

.price-hero .amount {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 12px;
    color: #f5f0e8;
}

.price-hero .iva-notice {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.55);
    font-weight: 400;
}

/* Results body */
.results-body {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 60px 36px 36px;
    border: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

/* Transport summary (secondary, low prominence) */
.transport-summary {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 16px;
}

.transport-summary-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.transport-summary-title i {
    margin-right: 6px;
    color: var(--text-muted);
}

.transport-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.transport-summary-detail {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    flex: 1;
}

.transport-summary-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
}

.alerts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

/* Not included card */
.not-included-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    border-left: 3px solid var(--text-muted);
}

.not-included-card h4 {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.not-included-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.not-included-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}

.not-included-card li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* ===== MODELS GRID ===== */
#models-list-wrapper { display: none; }

.models-header {
    text-align: center;
    margin: 64px 0 32px;
}

.models-header h2 {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.models-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.model-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.model-img-container {
    width: 100%;
    height: 210px;
    position: relative;
    background: #e8e4dc;
    overflow: hidden;
}

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

.model-card:hover .model-img {
    transform: scale(1.06);
}

.model-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}

.model-badge {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(4px);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.badge-new {
    background: var(--primary);
    color: white;
}

.model-price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(26, 26, 20, 0.82);
    backdrop-filter: blur(6px);
    color: #f5f0e8;
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 15px;
    font-family: 'Fraunces', serif;
    box-shadow: var(--shadow-md);
    z-index: 2;
    letter-spacing: -0.3px;
}

.model-info {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: var(--text-main);
}

.model-features {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    gap: 14px;
    font-weight: 500;
}

.model-features i {
    color: var(--primary);
    margin-right: 4px;
}

.model-message {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.85;
}

.model-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.btn-model-primary {
    background: var(--whatsapp);
    color: white;
    padding: 13px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-model-primary:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-model-secondary {
    background: transparent;
    color: var(--text-secondary);
    padding: 11px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
}

.btn-model-secondary:hover {
    background: var(--surface);
    border-color: #ccc8be;
    color: var(--text-main);
}

/* ===== AGENT CARD ===== */
#commercial-wrapper {
    display: none;
}

.commercial-header-title {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin: 48px 0 20px;
    letter-spacing: -0.3px;
}

.agent-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--surface) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 28px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: var(--shadow-md);
}

.agent-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    overflow: hidden;
    outline: 4px solid white;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info { flex: 1; }

.agent-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.agent-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.agent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.agent-actions a {
    flex: 1;
    min-width: 150px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 13px;
    transition: var(--transition);
}

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

.btn-call:hover {
    background: var(--primary-light);
}

/* Back button */
.back-btn {
    background: transparent;
    width: 100%;
    border: 1.5px solid var(--border-color);
    padding: 15px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-btn:hover {
    background: var(--surface);
    color: var(--text-secondary);
    border-color: #ccc8be;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--bg-alt);
    padding: 88px 0;
    border-top: 1px solid var(--border-color);
}

.faq-title {
    font-family: 'Fraunces', serif;
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 52px;
    letter-spacing: -0.8px;
    color: var(--text-main);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    padding: 26px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-main);
    letter-spacing: -0.2px;
    line-height: 1.35;
}

.faq-item h4 i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--primary);
    background-image: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(200, 151, 90, 0.15) 0%, transparent 60%);
    padding: 88px 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #f5f0e8;
    position: relative;
}

.final-cta p {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--whatsapp);
    color: white;
    font-size: 17px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    padding: 17px 40px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    position: relative;
}

.btn-whatsapp-large:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4);
}

/* ===== WIZARD ===== */
.wizard-progress {
    height: 5px;
    background: var(--border-color);
    border-radius: var(--radius-pill);
    margin-bottom: 36px;
    overflow: hidden;
}

.wizard-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #4a8a1e 100%);
    border-radius: var(--radius-pill);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16.6%;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.35s ease both;
}

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

.step-title {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 26px;
    text-align: center;
    color: var(--text-main);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.wizard-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-wizard {
    flex: 1;
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.btn-next:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(45, 80, 22, 0.25);
}

.btn-back {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-color);
    flex: 0 0 auto;
    padding: 15px 22px;
}

.btn-back:hover {
    background: var(--surface);
    border-color: #ccc8be;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 72px 20px 80px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

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

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

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

    .trust-item:not(:last-child)::after {
        display: none;
    }

    .trust-item:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }

    .section-header h2 {
        font-size: 28px;
    }

    .card {
        padding: 28px 24px;
        border-radius: var(--radius-lg);
    }

    .step-title {
        font-size: 18px;
    }

    .faq-grid,
    .models-grid {
        grid-template-columns: 1fr;
    }

    .price-hero .amount {
        font-size: 48px;
    }

    .results-body {
        padding: 48px 22px 26px;
    }

    .agent-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .agent-actions {
        flex-direction: column;
        width: 100%;
    }

    .agent-actions a {
        min-width: unset;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .faq-title {
        font-size: 26px;
    }

    .models-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 30px;
    }

    .card {
        padding: 24px 18px;
    }

    .btn-wizard {
        padding: 14px 12px;
        font-size: 14px;
    }
}
