/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (PREMIUM ACCESSIBLE FRONTEND)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #0A2540;          /* Deep Slate Blue - Authoritative, Trustworthy */
    --color-primary-dark: #051424;     /* Sleek Dark Navy */
    --color-primary-light: #1E3A5F;    /* Soft Navy */
    --color-accent-green: #10B981;     /* Emerald Green - Success, WhatsApp, Active State */
    --color-accent-green-hover: #059669;
    --color-accent-green-dark: #047857; /* Accessible Emerald Green for text on white (contrast 4.53:1) */
    --color-gold: #C5A880;             /* Elegant Champagne Gold - Highlights, Accents */
    --color-gold-light: #F4EFE6;       /* Extremely Soft Gold for backgrounds */
    --color-gold-dark: #705220;         /* Accessible Bronze Gold for text on white (contrast 4.9:1) */
    
    /* Neutrals */
    --color-bg-page: #F8FAFC;          /* Clean Slate Light */
    --color-bg-card: #FFFFFF;          /* Pure White */
    --color-bg-accent: #F1F5F9;        /* Soft Gray for secondary areas */
    --color-text-main: #0F172A;        /* Deep Slate Dark (no pure black) */
    --color-text-muted: #475569;       /* Medium Slate Gray */
    --color-text-light: #94A3B8;       /* Light Slate Gray */
    
    /* Layout & Styling */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    
    /* Shadows - Tinted to primary tone to avoid muddy blacks */
    --shadow-soft: 0 12px 30px -10px rgba(10, 37, 64, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(10, 37, 64, 0.15);
    --shadow-focus: 0 0 0 3px rgba(16, 185, 129, 0.4);
    
    /* Physics Animations */
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.3s ease;
}

/* ==========================================================================
   RESET & ACCESSIBILITY DEFAULTS
   ========================================================================== */

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-page);
    color: var(--color-text-main);
    line-height: 1.65;
    font-size: 16px;
}

/* Accessible Focus Rings */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details summary:focus-visible {
    outline: 2px solid var(--color-accent-green-dark);
    outline-offset: 4px;
}

/* Touch Targets constraint */
a, button, select, input {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    max-width: 65ch; /* Comfortable reading length */
}

/* Custom Thin Scrollbar */
.scrollable::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollable::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: var(--color-text-light);
    border-radius: 6px;
}

.scrollable::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* ==========================================================================
   LAYOUTS & UTILITIES
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-center {
    text-align: center;
}

.divider-gold {
    width: 60px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 0 auto 24px;
    border-radius: 2px;
}

/* ==========================================================================
   HEADER & EMERGENCY BANNER
   ========================================================================== */

.emergency-bar {
    background-color: var(--color-primary-dark);
    color: var(--color-gold-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.emergency-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-green);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.8s infinite;
}

.tts-trigger {
    display: none !important;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

header {
    background-color: #FFFFFF !important;
    position: sticky;
    top: 37px; /* Below emergency-bar height */
    z-index: 1000;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 2px 10px rgba(10, 37, 64, 0.05);
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-heading);
}

.logo span span {
    color: var(--color-accent-green-dark) !important;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

nav a {
    color: var(--color-text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
}

nav a:hover, nav a:focus {
    color: var(--color-primary);
    background-color: var(--color-bg-accent);
}

.nav-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
}

.nav-phone span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-phone a {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.nav-phone a:hover {
    color: var(--color-accent-green-dark);
}

/* Dropdown Menu System */
.has-submenu {
    position: relative;
}

.submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-card);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    min-width: 220px;
    padding: 12px;
    z-index: 1002;
    transform: translateY(10px);
    transition: var(--transition-spring);
    list-style: none;
    display: block;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
    border-radius: var(--border-radius-sm);
}

.submenu a:hover {
    background-color: var(--color-gold-light);
    color: var(--color-primary);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    text-align: center;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--color-bg-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
    background-color: var(--color-accent-green-dark);
    color: #FFFFFF;
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background-color: #036347;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
}

.btn-gold:hover, .btn-gold:focus {
    background-color: #B59870;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION (ASIMMETRIC LAYOUT)
   ========================================================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.70) 100%), 
                url('../hero_new.png') center/cover no-repeat;
    min-height: calc(100vh - 117px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 80px; /* Safe space for the negative margin overlap of the trust section */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-gold-light);
    color: var(--color-primary);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.hero h1 span {
    color: var(--color-gold-dark);
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Asymmetric Illustration Container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--color-bg-card);
    transform: none;
    transition: var(--transition-spring);
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================================================
   TRUST / INFO BAR (BENTO-STYLE)
   ========================================================================== */

.trust-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: 60px;
}

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

.trust-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 4px solid var(--color-gold);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.trust-icon {
    width: 52px;
    height: 52px;
    background-color: var(--color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-info h3 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.trust-info p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SERVICES & CARDS
   ========================================================================== */

.services-intro {
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 60px;
}

.package-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10, 37, 64, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-spring);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border-top: 6px solid var(--color-gold);
}

.package-card.highlighted {
    border-top: 6px solid var(--color-accent-green-dark);
}

.package-card.standard {
    border-top: 6px solid var(--color-primary-light);
}

.package-header {
    background-color: var(--color-bg-accent);
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.package-header h3 {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 2.8em;
}

.package-badge {
    display: inline-block;
    background-color: var(--color-gold-light);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.package-body {
    padding: 36px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.4;
}

.package-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-green-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.package-body .btn {
    width: 100%;
}

/* Additional Services Sub-Grid */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
    margin: 40px auto 0;
    gap: 24px;
    justify-content: center;
}

.sub-service-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(10, 37, 64, 0.03);
}

.sub-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold-light);
}

.sub-service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.sub-service-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   ASIMMETRIC PROTOCOLOS GRID
   ========================================================================== */

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

.protocols-info {
    background-color: var(--color-bg-card);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--color-gold);
}

.protocols-list {
    list-style: none;
    margin-top: 24px;
}

.protocols-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid var(--color-gold-light);
    transition: var(--transition-smooth);
}

.protocols-list li:hover {
    border-left-color: var(--color-accent-green-dark);
}

.protocols-list strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.protocols-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.protocols-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.protocol-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.protocol-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.protocol-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.protocol-card-body {
    padding: 20px;
}

.protocol-card-body h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.protocol-card-body p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================================================
   INTERACTIVE WIZARD: ASISTENTE EXEQUIAL (ACCESSIBLE MODAL)
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 37, 64, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.wizard-modal {
    background-color: var(--color-bg-card);
    width: 90%;
    max-width: 640px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-spring);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-backdrop.active .wizard-modal {
    transform: scale(1) translateY(0);
}

.wizard-header {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 24px 30px;
    position: relative;
}

.wizard-header h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.wizard-header p {
    color: var(--color-gold-light);
    font-size: 0.875rem;
    margin-bottom: 0;
    opacity: 0.85;
}

.wizard-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    min-width: 36px;
    min-height: 36px;
}

.wizard-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.wizard-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(10, 37, 64, 0.1);
    position: relative;
}

.wizard-progress-fill {
    height: 100%;
    background-color: var(--color-accent-green-dark);
    width: 33.3%;
    transition: var(--transition-smooth);
}

.wizard-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: slideInStep 0.4s ease;
}

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

.wizard-step-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

/* Wizard Options System */
.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.wizard-option {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-bg-accent);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.wizard-option:hover {
    border-color: var(--color-gold-light);
    background-color: var(--color-gold-light);
}

.wizard-option input[type="radio"],
.wizard-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.wizard-custom-control {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-text-light);
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.wizard-option input[type="checkbox"] + .wizard-custom-control {
    border-radius: 4px;
}

.wizard-option input:checked + .wizard-custom-control {
    border-color: var(--color-accent-green-dark);
    background-color: var(--color-accent-green-dark);
}

.wizard-option input:checked + .wizard-custom-control::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.wizard-option input[type="checkbox"]:checked + .wizard-custom-control::after {
    border-radius: 0;
    width: 6px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.wizard-option-text strong {
    display: block;
    color: var(--color-primary);
    font-size: 1rem;
    font-family: var(--font-heading);
}

.wizard-option-text span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.wizard-option input:checked ~ .wizard-option-text strong {
    color: var(--color-primary);
}

.wizard-option.selected {
    border-color: var(--color-accent-green-dark);
    background-color: rgba(4, 120, 87, 0.05);
}

.wizard-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(10, 37, 64, 0.05);
    background-color: var(--color-bg-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   TEXT-TO-SPEECH (TTS) FLOATING & INLINE WIDGETS
   ========================================================================== */

.tts-trigger {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transition: var(--transition-spring);
    font-size: 1.1rem;
    vertical-align: middle;
    margin-left: 10px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
}

.tts-trigger:hover,
.tts-trigger:focus {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold);
    transform: scale(1.08);
}

.tts-trigger.speaking {
    background-color: var(--color-accent-green-dark);
    color: #FFFFFF;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.tts-trigger svg {
    pointer-events: none;
}

/* Accessible hidden text for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   TOAST NOTIFICATIONS (NATIVE-DIALOG BAN ALTERNATIVE)
   ========================================================================== */

.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    width: calc(100% - 60px);
}

.toast {
    background-color: var(--color-primary-dark);
    color: #FFFFFF;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition-spring);
    border-left: 4px solid var(--color-gold);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left-color: var(--color-accent-green);
}

.toast-error {
    border-left-color: #EF4444;
}

.toast-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==========================================================================
   WHATSAPP FLOAT & DYNAMIC CALL FLOATS
   ========================================================================== */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.15);
    cursor: pointer;
    transition: var(--transition-spring);
    text-decoration: none;
    border: none;
    padding: 0;
}

.float-btn:hover {
    transform: scale(1.08) translateY(-3px);
}

.float-whatsapp {
    background-color: var(--color-accent-green-dark);
    box-shadow: 0 8px 24px rgba(4, 120, 87, 0.3);
}

.float-whatsapp:hover {
    background-color: #036347;
}

.float-assistant {
    background-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.25);
    border: 1px solid var(--color-gold);
}

.float-assistant:hover {
    background-color: var(--color-primary-dark);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-box {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(10, 37, 64, 0.05);
}

.contact-info-panel {
    padding: 60px;
    background-color: var(--color-bg-accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-channels {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background-color: var(--color-bg-card);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: var(--transition-spring);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-card-text {
    text-align: left;
}

.contact-card-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.contact-card-text strong {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.contact-form-panel {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid var(--color-bg-accent);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    color: var(--color-text-main);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    outline: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background-color: var(--color-primary-dark);
    color: var(--color-gold-light);
    padding: 80px 0 30px;
    border-top: 4px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

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

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    transition: var(--transition-smooth);
    text-decoration: none;
    min-width: 40px;
    min-height: 40px;
}

.social-icon:hover {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   MEDIA QUERIES & RESPONSIVE FLUIDITY
   ========================================================================== */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 24px;
    }
    
    .hero-image-wrapper {
        max-width: 420px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sub-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-box {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 40px;
    }

    .trust-section {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .emergency-bar {
        font-size: 0.78rem;
        padding: 6px 12px;
        line-height: 1.3;
        white-space: normal;
    }
    
    header {
        top: 33px;
    }
    
    .nav-wrapper {
        height: 65px;
    }
    
    /* Toggle Mobile Navigation Menu */
    nav {
        display: none; /* Will be toggled via JS */
        position: fixed;
        top: 98px; /* emergency + header heights */
        left: 0;
        width: 100%;
        background-color: var(--color-bg-card);
        border-bottom: 1px solid rgba(10, 37, 64, 0.1);
        box-shadow: var(--shadow-hover);
        padding: 24px;
        z-index: 999;
    }
    
    nav.active {
        display: block;
        animation: slideDownMenu 0.3s ease;
    }
    
    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    nav li {
        width: 100%;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        transform: none;
        margin-top: 8px;
        display: block;
        background-color: var(--color-bg-page);
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-phone {
        display: none; /* Hide in header, present in footer and CTA panels */
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .sub-services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .protocols-info {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .emergency-bar {
        font-size: 0.72rem;
        padding: 5px 8px;
    }
    
    header {
        top: 29px;
    }
    
    nav {
        top: 94px;
    }

    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    
    .btn {
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .logo span {
        font-size: 0.95rem;
    }
    
    .sub-services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 20px 16px;
    }
    
    .contact-card {
        padding: 14px 16px;
    }
    
    .contact-card-text strong {
        font-size: 1.1rem;
    }
    
    .floating-actions {
        bottom: 80px !important;
        right: 14px !important;
        gap: 8px !important;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & ASSISTANT MODAL)
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.float-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.25);
    border: 2px solid #FFFFFF;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.2s ease;
    text-decoration: none;
    padding: 0;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.35);
}

.float-btn:active {
    transform: scale(0.92);
}

.float-assistant {
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 1.4rem;
}

.float-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

/* ==========================================================================
   MOBILE STICKY CTA BAR (MOBILE FIRST / CRO OPTIMIZATION)
   ========================================================================== */
.mobile-sticky-cta {
    display: none;
}

/* Estilos de Bento Rápido de Emergencia */
.emergency-bento-card {
    background-color: var(--color-bg-card);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid #DC2626;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(10, 37, 64, 0.15);
        padding: 12px 16px;
        z-index: 9999;
        gap: 12px;
        border-top: 1px solid rgba(10, 37, 64, 0.08);
    }
    
    .mobile-sticky-cta a {
        flex: 1;
        height: 50px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
        gap: 8px;
    }
    
    .mobile-sticky-cta a:active {
        transform: scale(0.96);
    }
    
    .mobile-sticky-cta .cta-phone {
        background-color: #DC2626; /* High contrast warning/urgency red */
        color: #FFFFFF !important;
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    }
    
    .mobile-sticky-cta .cta-phone:hover {
        background-color: #B91C1C;
    }
    
    .mobile-sticky-cta .cta-whatsapp {
        background-color: var(--color-accent-green-dark);
        color: #FFFFFF !important;
        box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
    }
    
    .mobile-sticky-cta .cta-whatsapp:hover {
        background-color: #036347;
    }
    
    /* Reposition float buttons above sticky bar in mobile */
    .floating-actions {
        bottom: 80px !important;
        right: 14px !important;
        gap: 8px !important;
    }
    
    body {
        padding-bottom: 74px; /* Prevent content occlusion */
    }

    .emergency-bento-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px 16px;
    }
    
    .emergency-bento-card .phone-link {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        display: block;
        text-align: center;
        margin: 4px 0 12px 0;
    }
    
    .emergency-bento-card .btn {
        width: 100%;
    }
}

/* ==========================================================================
   TESTIMONIALS & BENTO SUBSIDY PROCESS STYLES (SOCIAL PROOF & PSYCHOLOGY)
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--color-gold-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-spring);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(10,37,64,0.08);
}

.testimonial-author-info strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Bento Subsidy Process */
.subsidy-bento,
.subsidy-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .subsidy-bento,
    .subsidy-container {
        grid-template-columns: 1fr;
    }
}

.bento-card-main,
.subsidy-info-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #FFFFFF;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.bento-card-main h3,
.subsidy-info-card h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.bento-card-main p,
.subsidy-info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.bento-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.bento-stat-item strong {
    display: block;
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.bento-stat-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.bento-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-step-item {
    background-color: var(--color-bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-left: 4px solid var(--color-gold-dark);
}

.bento-step-number {
    background-color: var(--color-gold-dark);
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.bento-step-text h4 {
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
}

.bento-step-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Enable TTS triggers with accessible rounded pill styling */
.tts-trigger {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 50%;
    background-color: rgba(10, 37, 64, 0.06);
    border: 1px solid rgba(10, 37, 64, 0.12);
    color: var(--color-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-left: 8px;
    vertical-align: middle;
}

.tts-trigger:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-dark);
    transform: scale(1.08);
}

.tts-trigger.speaking {
    background-color: var(--color-accent-green);
    color: #FFFFFF;
    border-color: var(--color-accent-green-dark);
    animation: pulse 1.5s infinite;
}

/* Tactile Active State Feedback (Neuromarketing Micro-interactions) */
.btn:active,
.float-btn:active,
.trust-card:active,
.package-card:active,
.testimonial-card:active,
.bento-step-item:active,
.faq-item:active {
    transform: scale(0.98) !important;
}

/* ==========================================================================
   ACCESSIBLE FAQ ACCORDION (UX & ACCESSIBILITY)
   ========================================================================== */
.faq-section {
    margin-top: 40px;
}

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

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(197, 168, 128, 0.5);
    box-shadow: var(--shadow-hover);
}

.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-bg-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background-color: var(--color-gold-dark);
    color: #FFFFFF;
}

.faq-body {
    padding: 0 24px 20px 24px;
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    border-top: 1px dashed rgba(10, 37, 64, 0.08);
    padding-top: 16px;
}

.faq-body p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   TRUST STATS BADGES (SOCIAL PROOF BANNER)
   ========================================================================== */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.03), rgba(197, 168, 128, 0.08));
    border-radius: var(--border-radius);
    border: 1px solid rgba(10, 37, 64, 0.06);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Form Real-Time Feedback Helpers */
.form-group .field-hint {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 4px;
    display: block;
}

.form-group input.input-error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.form-group input.input-valid {
    border-color: var(--color-accent-green) !important;
}


