/* ============================================================
   TraspasoFacil.es — Landing Page Design System
   styles-landing.css
   Dark · Gold · Syne + DM Sans
   ============================================================ */

:root {
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --surface-3: #e2e8f0;
    --border: rgba(0, 86, 179, 0.1);
    --border-light: rgba(0, 0, 0, 0.05);

    --blue: #0056b3;
    --blue-dark: #004494;
    --blue-light: #e7f1ff;
    --orange: #ff8c00;
    --orange-glow: rgba(255, 140, 0, 0.25);
    --warning: #f59e0b;
    --danger: #ef4444;
    --success: #10b981;

    --text: #0f172a;
    --text-muted: #64748b;
    --text-dim: #94a3b8;

    --radius-sm: 0.5rem;
    --radius: 0.875rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --max-w: 1200px;
    --section-py: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-3);
    border-radius: 10px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-tag {
    display: inline-block;
    color: var(--blue);
    background: var(--blue-light);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.section-tag.danger {
    color: var(--danger);
    background: var(--danger-pale);
    border-color: rgba(255, 95, 86, 0.2);
}

.section-tag.accent {
    color: var(--gold-light);
}

.text-accent {
    color: var(--gold);
}

.mt-2 {
    margin-top: 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--orange);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.1rem 2.25rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px var(--orange-glow);
}

.btn-orange:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px var(--orange-glow);
}

.btn-primary {
    background: var(--blue);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-stripe-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(135deg, #635bff 0%, #4a42e0 100%);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(99, 91, 255, 0.25);
    width: 100%;
}

.btn-stripe-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 91, 255, 0.35);
    background: linear-gradient(135deg, #5750ee 0%, #4038d1 100%);
}

.btn-stripe-cta strong {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-display);
    line-height: 1.2;
}

.btn-stripe-cta small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-family: var(--font-body);
}

.btn-stripe-cta .material-symbols-outlined {
    font-size: 1.8rem;
}

.btn-stripe-cta .btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-stripe-cta:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-result-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--blue);
    background: var(--blue-light);
    padding: 1rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-result-secondary:hover {
    background: #d4e5ff;
    transform: translateY(-2px);
}

.result-actions {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    color: var(--text);
    border-color: var(--border);
}

.btn-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #1a0c00;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px var(--gold-glow);
    margin-top: 1.5rem;
}

.btn-next:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-calculate-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ff5e00 100%);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4), 0 0 0 0 rgba(255, 94, 0, 0.4);
    animation: pulse-orange 2s infinite;
}

.btn-calculate-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 94, 0, 0.5), 0 0 0 0 rgba(255, 94, 0, 0);
    animation: none;
}

.btn-calculate-glow .material-symbols-outlined {
    font-size: 1.5rem;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4), 0 0 0 0 rgba(255, 94, 0, 0.4); }
    70% { box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4), 0 0 0 15px rgba(255, 94, 0, 0); }
    100% { box-shadow: 0 10px 25px rgba(255, 94, 0, 0.4), 0 0 0 0 rgba(255, 94, 0, 0); }
}

.spin {
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(9, 12, 31, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 2rem;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--text-muted);
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.nav-links .nav-cta {
    background: var(--gold-pale);
    color: var(--gold-light);
    border: 1px solid rgba(247, 147, 26, 0.25);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.2s;
}

.nav-links .nav-cta:hover {
    background: rgba(247, 147, 26, 0.15);
}

/* ============================================================
   CORPORATE HERO: SUPERVISIÓN INTEGRAL
   ============================================================ */
.hero-corporate {
    position: relative;
    padding: 12rem 0 8rem;
    background: radial-gradient(circle at top right, #e7f1ff 0%, #ffffff 50%);
    border-bottom: 1px solid var(--border-light);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-solution {
    flex: 1.2;
}

.solution-tag {
    display: inline-block;
    color: var(--blue);
    background: var(--blue-light);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-blue {
    color: var(--blue);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

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

.pillar {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.pillar span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pillar strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.pillar p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-subtext {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Risks Compact Card */
.hero-risks-compact {
    flex: 0.8;
}

.risk-card {
    background: white;
    border: 2px solid var(--orange);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.risk-tag {
    color: var(--danger);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: block;
}

.risk-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.text-orange {
    color: var(--orange);
}

.risk-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

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

.risk-list li span {
    color: var(--danger);
    font-size: 1.1rem;
}

/* FORM SECTION ENHANCED */
.form-section {
    padding: var(--section-py) 0;
    background: var(--blue-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.budget-form {
    background: white;
    border: 1px solid var(--blue);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.1);
}

.step-label {
    color: var(--blue);
    font-weight: 800;
    border-bottom: 2px solid var(--blue-light);
}

.role-card.selected {
    background: var(--blue-light);
    border-color: var(--blue);
}

.role-card .material-symbols-outlined {
    color: var(--blue);
}

.btn-next {
    background: var(--orange);
    color: white;
    box-shadow: 0 10px 25px var(--orange-glow);
}

.btn-next:hover {
    background: #e67e00;
}

.form-label {
    color: var(--text);
    font-weight: 600;
}

.form-control {
    background: #fdfdfd;
    border: 1px solid var(--surface-3);
    color: var(--text);
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px var(--blue-light);
}

.choice-box {
    background: white;
    border: 1px solid var(--surface-3);
}

.choice-box:hover {
    border-color: var(--blue);
}

.choice-box.selected {
    background: var(--blue-light);
    border-color: var(--blue);
}

.choice-box.selected h4 {
    color: var(--blue);
}

/* SERVICE CARDS REFINED */
.service-card {
    background: white;
    border: 1px solid var(--surface-3);
    border-top: 4px solid var(--blue);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.service-card.featured {
    border-top-color: var(--orange);
    background: #fff9f2;
}

.service-card h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-icon {
    color: var(--blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card.featured .service-icon {
    color: var(--orange);
}

/* FOOTER */
.footer {
    padding: 4rem 0;
    background: var(--blue-dark);
    color: white;
}

.footer-logo {
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* NAVBAR SCROLL */
.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-light);
}

.nav.scrolled .nav-logo {
    color: var(--blue);
}

.nav.scrolled .nav-links a {
    color: var(--text-muted);
}

.nav.scrolled .nav-links a:hover {
    color: var(--blue);
}

@media (max-width: 968px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-actions {
        align-items: center;
    }

    .pillar {
        flex-direction: column;
        align-items: center;
    }
}

.fear-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.fear-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}

.fear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.fear-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fear-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.fear-card:hover {
    border-color: rgba(255, 95, 86, 0.25);
    background: rgba(255, 95, 86, 0.04);
}

.fear-icon {
    font-size: 2rem;
    color: var(--danger);
    margin-bottom: 1rem;
    display: block;
}

.fear-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.fear-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   SERVICE SECTION
   ============================================================ */
.service-section {
    padding: var(--section-py) 0;
}

.service-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.service-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
    line-height: 1.15;
}

.service-intro {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 1rem;
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1) 0%, var(--surface) 60%);
    border-color: rgba(247, 147, 26, 0.25);
}

.service-card.featured-2 {
    background: linear-gradient(135deg, var(--surface) 40%, rgba(247, 147, 26, 0.08) 100%);
    border-color: rgba(247, 147, 26, 0.15);
}

.service-card-inner {
    padding: 2rem 1.75rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* TRUST CARDS & REVIEWS */
.trust-card {
    background: white;
    border: 1px solid var(--surface-3);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.2s;
}

.trust-card:hover {
    border-color: var(--blue);
    transform: translateX(5px);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-section {
    padding: 4rem 0;
    background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-us-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(0,86,179,0.06) 0%, transparent 55%),
        radial-gradient(circle at 90% 20%, rgba(255,140,0,0.05) 0%, transparent 45%);
    pointer-events: none;
}

.why-us-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-us-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.why-us-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* 2-column layout: reviews card | testimonials grid */
.why-us-grid-v2 {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* --- Google Reviews Card --- */
.google-reviews-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid rgba(0,86,179,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0,86,179,0.08), 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.google-reviews-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.google-reviews-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,86,179,0.13), 0 4px 16px rgba(0,0,0,0.06);
}

.grc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.grc-logo-wrap {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e8eaed;
}

.grc-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.grc-platform {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.grc-verified {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #34A853;
}

.grc-verified .material-symbols-outlined {
    font-size: 0.9rem;
}

.grc-external {
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: color 0.2s;
}

.google-reviews-card:hover .grc-external {
    color: var(--blue);
}

.grc-score-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--surface-3);
}

.grc-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.04em;
}

.grc-stars-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.grc-stars {
    display: flex;
    gap: 0.1rem;
}

.grc-stars .star-filled,
.grc-stars .star-half {
    color: #FBBC05;
    font-size: 1.3rem;
    font-variation-settings: 'FILL' 1;
}

.grc-label {
    font-size: 0.73rem;
    color: var(--text-muted);
}

/* Rating bars */
.grc-bar-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.grc-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.grc-bar-item > span {
    font-size: 0.7rem;
    color: var(--text-muted);
    width: 22px;
    flex-shrink: 0;
    text-align: right;
}

.grc-bar {
    flex: 1;
    height: 6px;
    background: var(--surface-2);
    border-radius: 99px;
    overflow: hidden;
}

.grc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FBBC05, #f8a000);
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}

.grc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    padding: 0.65rem;
    background: var(--blue-light);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.grc-cta .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.2s;
}

.google-reviews-card:hover .grc-cta {
    background: var(--blue);
    color: white;
}

.google-reviews-card:hover .grc-cta .material-symbols-outlined {
    transform: translateX(4px);
}

/* --- Testimonials 2×2 Grid --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--surface-3);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    border-color: rgba(0,86,179,0.2);
    box-shadow: 0 6px 24px rgba(0,86,179,0.08);
    transform: translateY(-2px);
}

.tcard-stars {
    display: flex;
    gap: 0.05rem;
    margin-bottom: 0.6rem;
}

.tcard-stars .material-symbols-outlined {
    color: #FBBC05;
    font-size: 0.95rem;
    font-variation-settings: 'FILL' 1;
}

.tcard-text {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    flex: 1;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
}

.tcard-avatar {
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

.tcard-author strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 700;
}

.tcard-author span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* --- Trust Pills Column --- */
.trust-pills-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-pill {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid var(--surface-3);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.trust-pill:hover {
    border-color: var(--blue);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,86,179,0.08);
}

.trust-pill-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-pill strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.trust-pill p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 960px) {
    .why-us-grid-v2 {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


.guarantees-section {
    padding: var(--section-py) 0;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

.gv-num {
    background: var(--blue);
    color: white;
    font-weight: 800;
}

.gv-connector {
    background: var(--blue-light);
}

.guarantees-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.guarantee-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.guarantee-text p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.guarantee-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-list .material-symbols-outlined {
    color: var(--success);
    font-size: 1.1rem;
}

/* Process card */
.gv-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.gv-card-tag {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: var(--surface);
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.gv-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.gv-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.gv-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--gold-pale);
    border: 1px solid rgba(247, 147, 26, 0.3);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-step strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

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

.gv-connector {
    width: 1px;
    height: 24px;
    background: var(--border);
    margin: 0.5rem 0 0.5rem 21px;
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.budget-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInForm 0.35s ease;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(247, 147, 26, 0.5);
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.08);
}

.form-group input.error {
    border-color: var(--danger);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select option {
    background: var(--surface-2);
}

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

.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.role-card {
    background: var(--surface-2);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.role-card:hover {
    border-color: var(--border);
    background: var(--surface-3);
}

.role-card.selected {
    border-color: var(--gold);
    background: var(--gold-pale);
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.08);
}

.role-card .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.role-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

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

.conditional-fields {
    animation: fadeInForm 0.3s ease;
}

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

/* Budget Result */
.budget-result {
    background: var(--surface);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: fadeInForm 0.5s ease;
}

.result-inner {
    padding: 2.5rem;
    text-align: center;
}

.result-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.result-inner h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.result-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.result-price-box {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(247, 147, 26, 0.04));
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.75rem;
}

.result-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.result-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.result-currency {
    font-size: 1.25rem;
    opacity: 0.7;
}

.result-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-nodeal {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--success);
}

.result-includes {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
    text-align: left;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.result-includes p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

/* ============================================================
   CALENDLY CTA
   ============================================================ */
.calendly-section {
    padding: 5rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.calendly-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.calendly-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.calendly-text p {
    color: var(--text-muted);
    max-width: 420px;
    font-size: 0.9rem;
}

.btn-calendly {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-calendly:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-calendly .material-symbols-outlined:first-child {
    font-size: 2rem;
    color: var(--gold);
}

.btn-calendly strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.btn-calendly small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.btn-arrow {
    color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--text-muted);
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 260px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantees-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .guarantee-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 4rem;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero-inner {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .trust-divider {
        display: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

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

    .role-selector {
        grid-template-columns: 1fr;
    }

    .budget-form {
        padding: 1.5rem;
    }

    .calendly-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-calendly {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        align-items: flex-start;
    }

    .form-nav {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .btn-back {
        text-align: center;
        justify-content: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-actions {
        flex-direction: column;
    }
}