:root {
    /* Color System - Premium Water Brand */
    --color-primary: hsl(200, 85%, 45%);
    --color-primary-dark: hsl(200, 85%, 35%);
    --color-primary-light: hsl(200, 85%, 95%);
    --color-secondary: hsl(28, 95%, 55%);
    --color-secondary-dark: hsl(28, 95%, 45%);
    --color-accent: hsl(320, 75%, 55%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(200, 85%, 50%) 0%, hsl(220, 75%, 60%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(28, 95%, 55%) 0%, hsl(38, 90%, 60%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(200, 70%, 15%) 0%, hsl(210, 65%, 25%) 50%, hsl(200, 60%, 35%) 100%);
    --gradient-premium: linear-gradient(135deg, hsl(280, 70%, 45%) 0%, hsl(240, 75%, 55%) 100%);
    
    /* Neutral Colors */
    --color-dark: hsl(210, 20%, 15%);
    --color-gray-dark: hsl(210, 15%, 30%);
    --color-gray: hsl(210, 12%, 50%);
    --color-gray-light: hsl(210, 15%, 85%);
    --color-light: hsl(210, 20%, 98%);
    --color-white: #ffffff;
    
    /* Status Colors */
    --color-success: hsl(145, 65%, 45%);
    --color-warning: hsl(45, 95%, 55%);
    --color-error: hsl(355, 75%, 55%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(3rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* Utility Classes */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--color-primary);
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-premium {
    background: var(--gradient-premium);
    color: var(--color-white);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, hsla(200, 90%, 60%, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, hsla(220, 80%, 60%, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Company Logo */
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-name {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-title {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin: 0 auto var(--spacing-lg);
    padding: 0.625rem 1rem;
    border: 1px solid rgba(186, 230, 253, 0.35);
    border-radius: 100px;
    background: rgba(8, 47, 73, 0.36);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
}

.hero-offer strong {
    color: #bae6fd;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.stat-number-text {
    font-size: 1.45rem;
    line-height: 1.15;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.dynamic-counter {
    transition: all var(--transition-base);
}

/* Comparison Section */
.comparison {
    padding: var(--spacing-xxl) 0;
    background: var(--color-light);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.comparison-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.comparison-card.good {
    border: 2px solid var(--color-primary);
    transform: scale(1.02);
}

.comparison-card.bad {
    opacity: 0.85;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.card-header svg {
    margin-bottom: var(--spacing-sm);
}

.comparison-card.good .card-header svg {
    color: var(--color-success);
}

.comparison-card.bad .card-header svg {
    color: var(--color-error);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--spacing-sm);
}

.price-tag small {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray);
    display: block;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: var(--spacing-xs) 0;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Savings Highlight */
.savings-highlight {
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.savings-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--color-white);
}

.savings-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.savings-text h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.savings-text .amount {
    color: var(--color-white);
    font-weight: 800;
}

.savings-text p {
    opacity: 0.95;
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    animation: subtle-bounce 3s ease-in-out infinite;
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.promo-icon {
    font-size: 1.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(to bottom, var(--color-primary-light) 0%, var(--color-white) 15%);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    border-bottom: 2px solid var(--color-gray-light);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: var(--spacing-sm) 0;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.first-month-price {
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin: var(--spacing-sm) 0;
}

.plan-volume {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    margin-top: var(--spacing-sm);
}

.plan-features {
    margin-bottom: var(--spacing-lg);
}

.feature {
    padding: var(--spacing-xs) 0;
    font-size: 0.9375rem;
    color: var(--color-gray-dark);
}

.feature.special {
    color: var(--color-primary);
    font-weight: 600;
}

.feature.savings {
    color: var(--color-success);
    font-weight: 600;
}

/* Pump Plans Section */
.pump-plans {
    padding: var(--spacing-xxl) 0;
    background: var(--color-light);
}

.pump-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.pump-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.pump-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pump-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.pump-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.pump-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.pump-price span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray);
}

.pump-features {
    margin: var(--spacing-md) 0;
    text-align: left;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-left: 4px solid var(--color-primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.benefit-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* Premium Comunas Section */
.premium-comunas {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, hsl(270, 60%, 20%) 0%, hsl(240, 70%, 30%) 100%);
    color: var(--color-white);
}

.premium-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.premium-comunas .section-title {
    color: var(--color-white);
}

.premium-comunas .section-title .highlight {
    color: var(--color-secondary);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.premium-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    position: relative;
}

.premium-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.premium-card.highlight {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.premium-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.premium-card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.premium-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.premium-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.premium-price {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.premium-price strong {
    color: var(--color-secondary);
}

.premium-price span {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
}

.premium-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.premium-features li {
    padding: var(--spacing-xs) 0;
    color: rgba(255, 255, 255, 0.95);
}

.premium-comunas-list {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.premium-comunas-list h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.comunas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.comuna-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.comuna-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Final CTA Section */
.final-cta {
    padding: var(--spacing-xxl) 0;
    background: var(--gradient-hero);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta-urgency {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.urgency-icon {
    font-size: 1.5rem;
}

.cta-guarantee {
    margin-top: var(--spacing-lg);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-whatsapp-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.final-whatsapp-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.final-whatsapp-links a {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.final-whatsapp-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.footer-whatsapp-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.footer-whatsapp:hover {
    color: var(--color-primary);
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all var(--transition-base);
    margin-top: var(--spacing-sm);
}

.footer-instagram:hover {
    color: #E1306C;
}

.footer-info p {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.875rem;
}

/* ========================================
   ACCESSIBILITY: REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .testimonial-card {
        opacity: 1;
        transform: none;
    }

    .wave-divider svg {
        animation: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .comparison-grid,
    .pricing-grid,
    .pump-grid,
    .premium-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .savings-content {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-urgency {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   PROFESSIONAL REGISTRATION FORM STYLES
   ======================================== */

/* Registration Section */
.registration {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-light) 0%, #f0f7fa 100%);
}

.registration .card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--color-light);
}

.form-header .form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0ea5e9 100%);
    color: white;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.form-header h2 {
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.75rem;
}

.form-header p {
    color: var(--color-gray);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Sections */
.form-professional {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-section {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section-title .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-dark);
}

.form-group label svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.form-group label .required {
    color: var(--color-error);
    font-weight: 600;
}

.form-group label .optional {
    color: var(--color-gray);
    font-weight: 400;
    font-size: 0.8rem;
}

/* Form Inputs & Selects */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--color-dark);
    background: var(--color-white);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' 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 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-group select option {
    padding: 0.5rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.btn-full {
    width: 100%;
    max-width: 400px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--color-gray);
    text-align: center;
}

.form-note svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Input Validation States */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid {
    border-color: var(--color-warning);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid {
    border-color: var(--color-success);
}

/* Hover Effects */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--color-primary);
}

/* Focus Visible */
.form-group input:focus-visible,
.form-group select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .registration .card {
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-sm);
    }
    
    .form-section {
        padding: var(--spacing-md);
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION - Proof Social
   ============================================ */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 158, 224, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--color-gray-light);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-md);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #ffc107;
    fill: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-light);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin: 0;
}

.testimonial-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--color-gray);
    margin-top: 2px;
}

.testimonial-location svg {
    width: 14px;
    height: 14px;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-gray-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-gray);
    font-size: 0.9375rem;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: var(--color-success);
}

/* Testimonial animation */
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
}

/* Fallback: show testimonials if JS fails or is disabled */
@media (scripting: none) {
    .testimonial-card {
        opacity: 1;
        transform: none;
    }
}

.testimonial-card.animate {
    animation: testimonialFadeIn 0.6s ease forwards;
}

@keyframes testimonialFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    transition: all var(--transition-base);
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-logo-icon img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--color-gray-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-links li a:hover {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.nav-links li a.active {
    color: var(--color-primary);
    background: var(--color-primary-light);
    font-weight: 600;
}

.nav-links li a.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
}

.nav-links li a.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-links li a.nav-cta-pay {
    color: var(--color-primary);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.nav-links li a.nav-cta-pay:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
}

/* Pay Online link in pricing cards */
.btn-pay-link {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.4rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-pay-link:hover {
    background: hsl(204, 80%, 96%);
    text-decoration: underline;
}

/* ==========================================
   PAYMENT OPTIONS BAR
   ========================================== */
.payment-options-bar {
    margin-top: 3rem;
    background: linear-gradient(135deg, hsl(204, 80%, 97%), hsl(204, 60%, 94%));
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid hsl(204, 60%, 88%);
    box-shadow: 0 4px 24px rgba(2, 132, 199, 0.08);
}

.payment-bar-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.payment-bar-subtitle {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.payment-tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border: 2px solid hsl(204, 30%, 82%);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-muted);
    min-width: 160px;
    justify-content: center;
}

.payment-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: hsl(204, 80%, 98%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}

.payment-tab.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
    transform: translateY(-2px);
}

.payment-tab.active .payment-tab-icon svg {
    color: white;
}

.payment-tab-icon {
    display: flex;
    align-items: center;
}

.payment-tab-icon svg {
    color: currentColor;
}

/* Payment Panels */
.payment-panels {
    position: relative;
}

.payment-panel {
    display: none;
    animation: fadeInPanel 0.3s ease;
}

.payment-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.payment-panel-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid hsl(204, 40%, 90%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.payment-panel-icon {
    font-size: 2.5rem;
}

.payment-panel-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.4rem;
}

.payment-panel-info p {
    color: var(--color-muted);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
}

.payment-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.pay-method-badge {
    background: hsl(204, 60%, 95%);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.payment-action-btn {
    margin-top: 0.5rem;
    min-width: 260px;
    text-align: center;
    justify-content: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Transfer Details Inline */
.transfer-details-inline {
    width: 100%;
    max-width: 460px;
    background: hsl(40, 50%, 97%);
    border: 1px solid hsl(40, 40%, 88%);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 0.5rem auto;
}

.transfer-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px solid hsl(40, 30%, 92%);
    font-size: 0.88rem;
}

.transfer-detail-row:last-child {
    border-bottom: none;
}

.transfer-detail-row .transfer-label {
    font-weight: 600;
    color: var(--color-muted);
    min-width: 100px;
    text-align: left;
}

.transfer-detail-row .transfer-value {
    font-weight: 700;
    color: var(--color-dark);
    flex: 1;
    text-align: right;
    margin-right: 0.5rem;
}

.copy-btn-inline {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transition: all 0.2s;
    opacity: 0.6;
}

.copy-btn-inline:hover {
    opacity: 1;
    background: hsl(40, 40%, 92%);
}

/* ============================================
   FLEXIBLE PURCHASE SECTION
   ============================================ */

.flexible-purchase {
    margin-top: 3rem;
    background: linear-gradient(135deg, hsl(35, 60%, 97%), hsl(40, 50%, 95%));
    border: 2px solid hsl(35, 50%, 88%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.flexible-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(35, 80%, 55%), hsl(25, 85%, 55%), hsl(35, 80%, 55%));
}

.flexible-header {
    text-align: center;
    margin-bottom: 2rem;
}

.flexible-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(35, 80%, 50%), hsl(25, 85%, 50%));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.flexible-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.flexible-subtitle {
    color: var(--color-muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

.flexible-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.flexible-calculator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flexible-label {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.75rem;
}

.flexible-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 200px;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border: 2px solid hsl(35, 40%, 82%);
    background: white;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:first-child {
    border-radius: 12px 0 0 12px;
}

.qty-btn:last-child {
    border-radius: 0 12px 12px 0;
}

.qty-btn:hover:not(:disabled) {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.flexible-qty-control input {
    width: 60px;
    height: 48px;
    border: 2px solid hsl(35, 40%, 82%);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-dark);
    background: white;
    -moz-appearance: textfield;
    appearance: textfield;
}

.flexible-qty-control input::-webkit-outer-spin-button,
.flexible-qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.flex-comuna-select {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-dark);
    background: white;
    border: 2px solid hsl(35, 40%, 88%);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.flex-comuna-select:hover,
.flex-comuna-select:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px hsla(200, 85%, 45%, 0.12);
}

.flex-comuna-select optgroup {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.85rem;
}

.flex-comuna-select option {
    font-weight: 400;
    color: var(--color-dark);
    padding: 0.4rem;
}

.flex-comuna-note {
    display: none;
    margin-top: 0.6rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
    line-height: 1.5;
    border-radius: 8px;
    background: hsl(200, 70%, 95%);
    border: 1px solid hsl(200, 60%, 85%);
    color: hsl(200, 50%, 25%);
}

.flex-comuna-note a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.flex-comuna-note a:hover {
    text-decoration: underline;
}

.tier-notes {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tier-premium-note {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.form-field-note {
    display: none;
    margin-top: 0.5rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
    line-height: 1.5;
    border-radius: 8px;
    background: hsl(200, 70%, 95%);
    border: 1px solid hsl(200, 60%, 85%);
    color: hsl(200, 50%, 25%);
}

.form-field-note a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.form-field-note a:hover {
    text-decoration: underline;
}

.flexible-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flexible-price-breakdown {
    background: white;
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    border: 1px solid hsl(35, 40%, 90%);
}

.flex-line {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.flex-line span:last-child {
    font-weight: 600;
    color: var(--color-dark);
}

.flex-divider {
    height: 1px;
    background: hsl(35, 30%, 90%);
    margin: 0.3rem 0;
}

.flex-total {
    font-size: 1.1rem;
    padding-top: 0.5rem;
}

.flex-total span:last-child {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.flexible-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
}

.flex-plan-suggest {
    background: hsl(200, 70%, 95%);
    border: 1px solid hsl(200, 60%, 85%);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    color: hsl(200, 50%, 25%);
    line-height: 1.5;
}

.flex-plan-suggest a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}

.flex-plan-suggest a:hover {
    text-decoration: underline;
}

.flexible-note {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.flexible-note a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.flexible-note a:hover {
    text-decoration: underline;
}

.flexible-tiers-table {
    margin-top: 2rem;
    text-align: center;
}

.flexible-tiers-table h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.tier-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tier-badge {
    background: white;
    border: 2px solid hsl(35, 40%, 88%);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    color: var(--color-muted);
    transition: all 0.3s;
}

.tier-badge.active {
    border-color: var(--color-primary);
    background: hsl(200, 80%, 96%);
    color: var(--color-primary);
    box-shadow: 0 2px 8px hsla(200, 80%, 50%, 0.15);
}

.tier-ec-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Flexible Responsive */
@media (max-width: 768px) {
    .flexible-purchase {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .flexible-title {
        font-size: 1.3rem;
    }

    .flexible-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tier-badges {
        gap: 0.4rem;
    }

    .tier-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .flexible-qty-control {
        max-width: 170px;
    }

    .qty-btn {
        width: 42px;
        height: 42px;
    }

    .flexible-qty-control input {
        height: 42px;
        width: 50px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .payment-options-bar {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .payment-bar-title {
        font-size: 1.3rem;
    }

    .payment-tabs {
        gap: 0.5rem;
    }

    .payment-tab {
        flex: 1;
        min-width: 100px;
        padding: 0.7rem 0.8rem;
        font-size: 0.82rem;
    }

    .payment-tab-label {
        display: block;
    }

    .payment-panel-content {
        padding: 1.5rem 1rem;
    }

    .transfer-detail-row {
        font-size: 0.8rem;
    }

    .transfer-detail-row .transfer-label {
        min-width: 80px;
    }

    .payment-action-btn {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .payment-tab {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.6rem 0.5rem;
        font-size: 0.75rem;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: var(--spacing-md);
        right: var(--spacing-md);
        z-index: 1200;
        background: #ffffff;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
        border: 1px solid #e5eef7;
        border-radius: 0 0 1rem 1rem;
        gap: 0.25rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        color: var(--color-dark);
        border-radius: 0.75rem;
    }

    .nav-links li a.nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* Add padding to body for fixed nav */
.hero {
    padding-top: calc(var(--spacing-xxl) + 60px);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.step-connector {
    color: var(--color-primary);
    flex-shrink: 0;
    opacity: 0.4;
}

.steps-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
}

.steps-cta p {
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-light);
}

.faq-grid {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-light);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    gap: var(--spacing-md);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--color-gray);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    color: var(--color-gray-dark);
    line-height: 1.7;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-100%) translateX(-12px) translateY(-50%);
    visibility: visible;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateX(-100%) translateX(-8px) translateY(-50%);
    background: var(--color-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--color-dark);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   URGENCY BAR (TOP)
   ======================================== */
.urgency-bar {
    background: linear-gradient(90deg, #082f49 0%, #075985 100%);
    color: white;
    padding: 0.625rem 0;
    position: relative;
    z-index: 1001;
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.urgency-bar.hidden {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden;
}

.urgency-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 500;
}

.urgency-kicker {
    color: #bae6fd;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.timer-digits {
    display: flex;
    align-items: center;
    gap: 2px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    padding: 2px 6px;
    min-width: 36px;
}

.timer-block span {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.timer-block small {
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.timer-sep {
    font-weight: 800;
    font-size: 1.125rem;
    animation: timerBlink 1s ease-in-out infinite;
}

@keyframes timerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.urgency-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    background: white;
    color: #075985;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: 100px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.urgency-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.urgency-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition-fast);
}

.urgency-close:hover {
    color: white;
}

@media (max-width: 768px) {
    .urgency-bar-content {
        justify-content: flex-start;
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .urgency-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(2.25rem + 56px) 0 2.75rem;
    }

    .company-logo {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .logo-icon img {
        width: 34px;
        height: 34px;
    }

    .logo-name {
        font-size: clamp(1.85rem, 9vw, 2.45rem);
        letter-spacing: 0.045em;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.08;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .hero-offer {
        max-width: 100%;
        margin-bottom: 1.25rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    .hero-offer span[aria-hidden="true"] {
        display: none;
    }

    .hero-cta {
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 1rem 0.625rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-number-text {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.625rem;
        letter-spacing: 0.03em;
    }
}

/* ========================================
   SAVINGS CALCULATOR
   ======================================== */
.calculator-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.calculator-card {
    max-width: 700px;
    margin: var(--spacing-xl) auto 0;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--color-gray-light);
}

.calc-input-section {
    margin-bottom: var(--spacing-lg);
}

.calc-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.calc-label-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
}

.calc-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    background: var(--color-primary-light);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 50%, var(--color-gray-light) 50%);
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
    transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
}

.calc-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.calc-result-card {
    flex: 1;
    min-width: 200px;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.calc-result-card.bad {
    background: hsl(355, 75%, 97%);
    border: 2px solid hsl(355, 75%, 85%);
}

.calc-result-card.good {
    background: hsl(145, 65%, 95%);
    border: 2px solid hsl(145, 65%, 75%);
}

.calc-result-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.calc-result-price {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.calc-result-card.bad .calc-result-price {
    color: hsl(355, 75%, 50%);
}

.calc-result-card.good .calc-result-price {
    color: hsl(145, 65%, 35%);
}

.calc-result-detail {
    font-size: 0.8125rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.calc-vs {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gray);
    flex-shrink: 0;
}

.calc-savings-box {
    background: linear-gradient(135deg, hsl(145, 65%, 95%) 0%, hsl(145, 65%, 90%) 100%);
    border: 2px solid hsl(145, 65%, 70%);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.calc-savings-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: 0.5rem;
}

.calc-savings-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-dark);
}

.calc-savings-value {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(145, 65%, 30%);
}

.calc-savings-yearly {
    font-size: 0.9375rem;
    color: var(--color-gray-dark);
    margin-bottom: 0.25rem;
}

.calc-savings-yearly strong {
    color: hsl(145, 65%, 30%);
}

.calc-savings-extra {
    font-size: 0.875rem;
    color: var(--color-secondary-dark);
    font-weight: 500;
}

@media (max-width: 640px) {
    .calculator-card {
        padding: var(--spacing-lg);
    }

    .calc-label {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .calc-results {
        flex-direction: column;
    }

    .calc-vs {
        transform: rotate(90deg);
    }
}

/* ========================================
   PLAN COMPARISON TABLE
   ======================================== */
.plan-table-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-light);
}

.table-responsive {
    overflow-x: auto;
    margin-top: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    font-size: 0.9375rem;
    min-width: 600px;
}

.plan-table thead {
    background: var(--gradient-hero);
    color: white;
}

.plan-table th {
    padding: 1rem 1.25rem;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    white-space: nowrap;
}

.plan-table th:first-child {
    text-align: left;
}

.plan-table td {
    padding: 0.875rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--color-gray-light);
    color: var(--color-gray-dark);
}

.plan-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
}

.plan-table tbody tr:hover {
    background: hsl(200, 85%, 97%);
}

.plan-table .table-featured {
    background: hsl(200, 85%, 97%);
    position: relative;
}

.plan-table thead .table-featured {
    background: hsl(200, 85%, 40%);
}

.plan-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .table-responsive {
        margin-left: calc(-1 * var(--spacing-md));
        margin-right: calc(-1 * var(--spacing-md));
        border-radius: 0;
    }

    .plan-table {
        font-size: 0.8125rem;
    }

    .plan-table th,
    .plan-table td {
        padding: 0.75rem 0.75rem;
    }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1002;
    transition: width 50ms linear;
    box-shadow: 0 0 8px hsla(200, 85%, 45%, 0.5);
}

/* ========================================
   WAVE DIVIDERS
   ======================================== */
.wave-divider {
    line-height: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
    animation: waveFloat 6s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
}

/* Hero (dark) -> How it Works (light) */
.wave-dark-to-light {
    margin-top: -1px;
    background: var(--gradient-hero);
    color: var(--color-white);
}

/* Pump Plans (light bg) -> Benefits (white) */
.wave-light-to-primary {
    margin-top: -1px;
    background: var(--color-light);
    color: var(--color-white);
}

/* FAQ (light) -> Final CTA (dark) */
.wave-light-to-dark {
    margin-top: -1px;
    background: var(--color-light);
    color: hsl(200, 70%, 15%);
}

/* ========================================
   ANIMATED COUNTERS
   ======================================== */
.animate-count {
    font-variant-numeric: tabular-nums;
}

/* ========================================
   GLOWING ANIMATED BORDER (Featured Plan)
   ======================================== */
.pricing-card.featured.glow-border {
    position: relative;
    border: 2px solid transparent;
    overflow: visible;
}

.pricing-card.featured.glow-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: conic-gradient(
        from var(--glow-angle, 0deg),
        hsl(200, 85%, 50%),
        hsl(220, 75%, 60%),
        hsl(280, 70%, 55%),
        hsl(320, 75%, 55%),
        hsl(28, 95%, 55%),
        hsl(45, 95%, 55%),
        hsl(145, 65%, 45%),
        hsl(200, 85%, 50%)
    );
    z-index: -1;
    animation: glowRotate 4s linear infinite;
}

.pricing-card.featured.glow-border::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: calc(var(--radius-lg) - 1px);
    background: linear-gradient(to bottom, var(--color-primary-light) 0%, var(--color-white) 15%);
    z-index: -1;
}

@keyframes glowRotate {
    from { --glow-angle: 0deg; }
    to { --glow-angle: 360deg; }
}

@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Glow shadow effect */
.pricing-card.featured.glow-border {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px hsla(200, 85%, 50%, 0.15),
            0 8px 32px rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 
            0 0 30px hsla(200, 85%, 50%, 0.25),
            0 0 60px hsla(280, 70%, 55%, 0.1),
            0 8px 32px rgba(0, 0, 0, 0.16);
    }
}

/* ========================================
   SKIP TO CONTENT (Accessibility)
   ======================================== */
.skip-to-content {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 998;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 80px;
        right: 16px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   SECONDARY CTA BUTTON (Hero context)
   ======================================== */
.hero-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* ========================================
   PLAN PREVIEW: COMMERCIAL DECISION NEAR THE HERO
   ======================================== */
.plan-preview {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.plan-preview-heading {
    max-width: 680px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-eyebrow {
    margin: 0 0 0.5rem;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plan-preview-heading h2 {
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.plan-preview-heading > p:last-child {
    color: var(--color-gray);
    line-height: 1.6;
}

.plan-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.legacy-pricing-content {
    display: none !important;
}

.legacy-machine-content {
    display: none !important;
}

.seo-local-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.seo-local-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.11), transparent 26rem),
        #ffffff;
    box-shadow: 0 24px 60px rgba(15, 58, 81, 0.08);
}

.seo-local-content h2 {
    margin: 0 0 1rem;
    color: var(--color-dark);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.12;
}

.seo-local-content p {
    color: var(--color-gray-dark);
    font-size: 1.05rem;
    line-height: 1.75;
}

.seo-local-content p + p {
    margin-top: 0.9rem;
}

.seo-local-points {
    display: grid;
    gap: 1rem;
}

.seo-point {
    padding: 1.15rem;
    border: 1px solid #e5eef7;
    border-radius: 1rem;
    background: rgba(248, 252, 255, 0.92);
}

.seo-point span {
    display: inline-flex;
    margin-bottom: 0.55rem;
    font-size: 1.55rem;
}

.seo-point strong {
    display: block;
    color: var(--color-dark);
    font-size: 1rem;
}

.seo-point p {
    margin: 0.35rem 0 0;
    color: var(--color-gray);
    font-size: 0.92rem;
    line-height: 1.5;
}

.bottles-section {
    padding: var(--spacing-xxl) 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(14, 165, 233, 0.08), transparent 28rem),
        linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.bottles-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.bottle-family-card {
    overflow: hidden;
    border: 1px solid #e5eef7;
    border-radius: 1.4rem;
    background: #ffffff;
    box-shadow: 0 22px 54px rgba(15, 58, 81, 0.10);
}

.bottle-family-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 1rem;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.94), rgba(239, 248, 255, 0.86)),
        #f6fbff;
}

.bottle-family-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 430px;
    border-radius: 1rem;
    object-fit: contain;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.bottle-family-content {
    padding: 1.5rem;
}

.bottle-family-tag {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(14, 165, 233, 0.12);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bottle-family-content h3 {
    margin: 0 0 0.75rem;
    color: var(--color-dark);
    font-size: 1.35rem;
    line-height: 1.25;
}

.bottle-family-content p {
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.bottle-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.bottle-option {
    padding: 1rem;
    border: 1px solid #e5eef7;
    border-radius: 0.9rem;
    background: #f8fcff;
}

.bottle-option strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.bottle-option span {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-gray);
    font-size: 0.88rem;
    line-height: 1.35;
}

.bottles-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 58, 81, 0.07);
}

.bottles-cta p {
    margin: 0;
    color: var(--color-gray-dark);
    font-weight: 600;
}

.machines-section {
    padding: var(--spacing-xxl) 0;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.machine-card {
    display: grid;
    grid-template-columns: minmax(170px, 0.75fr) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #e5eaf0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.machine-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    background:
        radial-gradient(circle at center 46%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(241, 245, 249, 0.96) 70%, #e9eef5 100%);
    padding: 1rem;
}

.machine-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 0.85rem;
    filter: saturate(0.86) contrast(1.04) brightness(1.02);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}


.machine-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.machine-code {
    margin: 0 0 0.5rem;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.machine-content h3 {
    margin-bottom: 0.875rem;
    color: var(--color-dark);
    font-size: 1.2rem;
    line-height: 1.25;
}

.machine-features {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    color: var(--color-gray-dark);
    font-size: 0.9rem;
    line-height: 1.35;
    list-style: none;
}

.machine-features li {
    position: relative;
    padding-left: 1.1rem;
}

.machine-features li::before {
    position: absolute;
    left: 0;
    color: var(--color-primary);
    content: '✓';
    font-weight: 800;
}

.machine-cta {
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.machine-cta:hover { text-decoration: underline; }

.compact-pumps-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.18), transparent 22rem),
        linear-gradient(135deg, #071827 0%, #0f2740 52%, #123c60 100%);
    color: var(--color-white);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.compact-pumps-copy .section-eyebrow {
    color: #7dd3fc;
}

.compact-pumps-copy h3 {
    margin: 0 0 1rem;
    color: var(--color-white);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.12;
}

.compact-pumps-copy p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.7;
}

.compact-pumps-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.35rem 0 1.5rem;
    padding: 0;
    list-style: none;
}

.compact-pumps-benefits li {
    position: relative;
    padding: 0.8rem 0.9rem 0.8rem 2.15rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

.compact-pumps-benefits li::before {
    position: absolute;
    left: 0.9rem;
    color: #38bdf8;
    content: '✓';
    font-weight: 900;
}

.compact-pumps-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    align-items: stretch;
}

.compact-pump-image {
    min-height: 320px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.compact-pump-image-wide {
    min-height: 360px;
}

.compact-pump-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.basic-dispenser-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    margin-top: 1.5rem;
    overflow: hidden;
    border: 1px solid #e5eaf0;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 18% 20%, rgba(14, 165, 233, 0.10), transparent 24rem),
        #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.basic-dispenser-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 1rem;
    background: linear-gradient(180deg, #f8fcff 0%, #eef6fc 100%);
}

.basic-dispenser-media img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 420px;
    border-radius: 1rem;
    object-fit: contain;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.basic-dispenser-content {
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.basic-dispenser-content h3 {
    margin: 0 0 0.9rem;
    color: var(--color-dark);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.basic-dispenser-content p {
    color: var(--color-gray-dark);
    font-size: 1.03rem;
    line-height: 1.7;
}

.basic-dispenser-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0 1.35rem;
    padding: 0;
    list-style: none;
}

.basic-dispenser-benefits li {
    position: relative;
    padding: 0.8rem 0.9rem 0.8rem 2.1rem;
    border: 1px solid #e5eef7;
    border-radius: 0.85rem;
    background: #f8fcff;
    color: var(--color-gray-dark);
    font-size: 0.92rem;
    font-weight: 600;
}

.basic-dispenser-benefits li::before {
    position: absolute;
    left: 0.9rem;
    color: var(--color-primary);
    content: '✓';
    font-weight: 900;
}

.updated-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.updated-plan {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem;
    border: 1px solid #dbeafe;
    border-radius: 0.875rem;
    background: #fff;
    text-align: center;
}

.updated-plan span,
.updated-plan small {
    color: var(--color-gray);
    font-size: 0.8125rem;
}

.updated-plan strong {
    color: var(--color-dark);
    font-size: 1.5rem;
}

.updated-plan.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.14);
}

.updated-plan.selected {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, #ffffff 0%, #eff9ff 100%);
    box-shadow: 0 16px 34px rgba(2, 132, 199, 0.18);
    transform: translateY(-3px);
}

.updated-plans-note {
    margin: 1.5rem 0 0;
    color: var(--color-gray);
    text-align: center;
}

.updated-plans-action {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.plan-preview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 1.5rem;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 58, 81, 0.06);
}

.plan-preview-card.is-featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.16);
}

.plan-preview-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 100px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plan-preview-volume {
    margin: 0 0 0.55rem;
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 700;
}

.plan-preview-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    font-size: 1.2rem;
}

.plan-preview-price {
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-size: 1.65rem;
    font-weight: 800;
}

.plan-preview-price span {
    color: var(--color-gray);
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-preview-card > p:not(.plan-preview-volume):not(.plan-preview-price) {
    margin: 0;
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.45;
}

.plan-preview-card a {
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.plan-preview-card a:hover,
.plan-preview-link:hover {
    text-decoration: underline;
}

.plan-preview-link {
    display: block;
    width: fit-content;
    margin: 1.75rem auto 0;
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 900px) {
    .plan-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .updated-plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .bottles-showcase {
        grid-template-columns: 1fr;
    }

    .bottles-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .compact-pumps-showcase {
        grid-template-columns: 1fr;
    }

    .compact-pumps-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .basic-dispenser-showcase {
        grid-template-columns: 1fr;
    }

    .seo-local-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .plan-preview {
        padding: 3.5rem 0;
    }

    .plan-preview-grid {
        grid-template-columns: 1fr;
    }

    .plan-preview-card {
        min-height: 0;
    }

    .machine-card {
        grid-template-columns: 1fr;
    }

    .machine-media {
        min-height: 300px;
    }

    .registration .card {
        padding: 1rem;
        margin: 0;
        border-radius: 1rem;
    }

    .registration .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .form-section {
        padding: 0.75rem;
    }

    .form-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .form-header .form-icon {
        width: 60px;
        height: 60px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-width: 0;
    }

    .bottle-family-image {
        min-height: 280px;
    }

    .bottle-options {
        grid-template-columns: 1fr;
    }

    .bottles-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .compact-pumps-showcase {
        margin-top: 1.5rem;
        padding: 1.25rem;
        border-radius: 1.15rem;
    }

    .compact-pumps-benefits {
        grid-template-columns: 1fr;
    }

    .compact-pumps-gallery {
        grid-template-columns: 1fr;
    }

    .compact-pump-image,
    .compact-pump-image-wide {
        min-height: 260px;
    }

    .compact-pump-image img {
        object-fit: contain;
    }

    .basic-dispenser-showcase {
        margin-top: 1.25rem;
        border-radius: 1.15rem;
    }

    .basic-dispenser-media {
        min-height: 260px;
    }

    .basic-dispenser-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        justify-content: center;
    }
}

/* =============================================
   LEGAL PAGES (Privacidad / Términos)
   ============================================= */
.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text);
}

.legal-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark, hsl(204, 98%, 28%)));
    color: white;
    padding: 3rem 0 2.5rem;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0.5rem 0 0.25rem;
    line-height: 1.2;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.legal-back:hover {
    color: white;
}

.legal-updated {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-content {
    flex: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid hsl(var(--primary-hue, 204) 80% 90%);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 1.25rem 0 0.5rem;
}

.legal-section p {
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary, #555);
}

.legal-section ul,
.legal-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.4rem;
    color: var(--color-text-secondary, #555);
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.legal-section a:hover {
    color: var(--color-primary-dark, hsl(204, 98%, 28%));
}

.legal-contact {
    background: hsl(var(--primary-hue, 204) 80% 96%);
    border-radius: var(--radius-lg, 12px);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    border-left: 4px solid var(--color-primary);
}

.legal-contact p {
    margin-bottom: 0.3rem;
    color: var(--color-text);
}

.legal-footer {
    background: var(--color-text, #1a1a2e);
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: auto;
    font-size: 0.9rem;
}

.legal-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.legal-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.85rem;
}

.legal-footer-links a:hover,
.legal-footer-links a.active {
    color: white;
}

/* Footer legal links in main index page */
.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1rem 3rem;
    }

    .legal-header {
        padding: 2rem 0 1.5rem;
    }
}

/* =============================================
   CHECKOUT / PAYMENT PAGE
   ============================================= */
.checkout-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f5f7fa;
    font-family: var(--font-body);
    color: var(--color-text);
}

.checkout-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark, hsl(204, 98%, 28%)));
    color: white;
    padding: 2.5rem 0 2rem;
}

.checkout-header h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin: 0.5rem 0 0.25rem;
}

.checkout-subtitle {
    opacity: 0.85;
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    padding: 2rem 0 4rem;
    align-items: start;
}

/* Steps */
.checkout-step {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.checkout-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkout-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.checkout-step-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* Plan Cards */
.checkout-plans {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkout-plan-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.checkout-plan-card:hover {
    border-color: hsl(204, 70%, 80%);
    background: hsl(204, 80%, 97%);
}

.checkout-plan-card.selected {
    border-color: var(--color-primary);
    background: hsl(204, 80%, 96%);
    box-shadow: 0 0 0 3px hsl(204, 80%, 92%);
}

.checkout-plan-card input[type="radio"] {
    display: none;
}

.checkout-plan-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.checkout-plan-card.selected .checkout-plan-radio {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.checkout-plan-card.selected .checkout-plan-radio::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.checkout-plan-info {
    flex: 1;
}

.checkout-plan-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.checkout-plan-detail {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

.checkout-plan-price {
    text-align: right;
    flex-shrink: 0;
}

.checkout-plan-price strong {
    font-size: 1.15rem;
    color: var(--color-primary);
    display: block;
}

.checkout-plan-price span {
    font-size: 0.75rem;
    color: #94a3b8;
}

.checkout-popular-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Addon */
.checkout-addon {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
    background: #fefefe;
}

.checkout-addon:hover {
    border-color: hsl(40, 80%, 70%);
    background: hsl(40, 90%, 97%);
}

.checkout-addon input[type="checkbox"] {
    display: none;
}

.checkout-addon-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #cbd5e1;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.checkout-addon input:checked ~ .checkout-addon-check {
    border-color: var(--color-success, #22c55e);
    background: var(--color-success, #22c55e);
}

.checkout-addon input:checked ~ .checkout-addon-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.checkout-addon-info {
    flex: 1;
}

.checkout-addon-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.checkout-addon-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 2px 0 0;
}

.checkout-addon-price {
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
    text-align: right;
}

.checkout-addon-price span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #94a3b8;
}

/* Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.checkout-form-group.full-width {
    grid-column: 1 / -1;
}

.checkout-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.checkout-form-group input,
.checkout-form-group select {
    padding: 0.7rem 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s;
    background: white;
}

.checkout-form-group input:focus,
.checkout-form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px hsl(204, 80%, 92%);
}

.checkout-form-group.error input,
.checkout-form-group.error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px hsl(0, 80%, 95%);
}

.checkout-form-group.error label {
    color: #ef4444;
}

/* Payment Methods */
.checkout-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkout-payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-payment-card:hover {
    border-color: hsl(204, 70%, 80%);
}

.checkout-payment-card.selected {
    border-color: var(--color-primary);
    background: hsl(204, 80%, 96%);
    box-shadow: 0 0 0 3px hsl(204, 80%, 92%);
}

.checkout-payment-card input[type="radio"] {
    display: none;
}

.checkout-payment-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
}

.checkout-payment-card.selected .checkout-payment-radio {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.checkout-payment-card.selected .checkout-payment-radio::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.checkout-payment-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.checkout-payment-info {
    flex: 1;
}

.checkout-payment-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.checkout-payment-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 2px 0 0;
}

.checkout-payment-badges {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.pay-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Transfer Details */
.checkout-transfer-details {
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.transfer-info-card {
    background: hsl(45, 90%, 96%);
    border: 1px solid hsl(45, 80%, 85%);
    border-radius: 10px;
    padding: 1.5rem;
}

.transfer-info-card h4 {
    font-size: 1.05rem;
    margin: 0 0 1rem;
}

.transfer-data {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.transfer-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 6px;
}

.transfer-label {
    font-size: 0.85rem;
    color: #64748b;
    min-width: 120px;
    flex-shrink: 0;
}

.transfer-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    font-variant-numeric: tabular-nums;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: #f1f5f9;
}

.transfer-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-left: 3px solid hsl(45, 80%, 55%);
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem;
    color: #64748b;
}

.transfer-note a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.transfer-note a:hover {
    text-decoration: underline;
}

/* Sidebar - Order Summary */
.checkout-sidebar {
    position: sticky;
    top: 1.5rem;
}

.checkout-summary {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.checkout-summary h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.summary-plan {
    padding: 0.75rem;
    background: hsl(204, 80%, 96%);
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.summary-plan-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
}

.summary-plan-detail {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #475569;
}

.summary-line.discount {
    color: #16a34a;
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.25rem 0;
}

.summary-line.total {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

.summary-line.total span:last-child {
    color: var(--color-primary);
}

.summary-line.recurring {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Pay Button */
.checkout-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-pay-btn:hover {
    background: var(--color-primary-dark, hsl(204, 98%, 28%));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.checkout-pay-btn:active {
    transform: translateY(0);
}

.checkout-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.checkout-guarantee {
    margin-top: 1rem;
    padding: 0.75rem;
    background: hsl(145, 50%, 96%);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #166534;
    text-align: center;
}

.checkout-guarantee p {
    margin: 0;
}

.checkout-help {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.checkout-help p {
    margin: 0 0 0.35rem;
    color: #94a3b8;
}

.checkout-help a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.checkout-help a:hover {
    color: #128c7e;
}

/* Responsive */
@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }

    .checkout-form-row {
        grid-template-columns: 1fr;
    }

    .checkout-payment-badges {
        display: none;
    }

    .checkout-plan-card {
        flex-wrap: wrap;
    }

    .checkout-plan-price {
        text-align: left;
        width: 100%;
        padding-left: 2.25rem;
    }

    .transfer-label {
        min-width: 90px;
    }
}

/* ========================================
   RESPONSIVE STABILIZATION PATCH
   Keeps brand assets, product photos, and CTAs controlled on phones.
   ======================================== */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    width: 100%;
    overflow-x: clip;
}

img,
picture,
video,
canvas {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
}

.nav-container,
.hero .container,
.seo-local-card,
.bottle-family-card,
.machine-card,
.compact-pumps-showcase,
.basic-dispenser-showcase {
    min-width: 0;
}

.nav-brand,
.company-logo,
.hero-title,
.hero-subtitle,
.section-title,
.section-subtitle,
.seo-local-content,
.bottle-family-content,
.machine-content {
    max-width: 100%;
}

.nav-logo-icon {
    flex: 0 0 36px;
}

.nav-logo-icon > img[src*="poseidon-logo-mark"] {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    object-fit: contain;
}

.logo-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
}

.logo-icon > img[src*="poseidon-logo-mark"],
.company-logo img[src*="poseidon-logo-mark"] {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    object-fit: contain;
}

.logo-name {
    max-width: min(100%, calc(100vw - 7rem));
    overflow-wrap: anywhere;
}

.hero-title,
.section-title,
.seo-local-content h2,
.machine-content h3,
.bottle-family-content h3 {
    overflow-wrap: anywhere;
}

.hero-cta .btn {
    min-height: 56px;
}

.hero-cta .btn svg,
.btn svg {
    flex: 0 0 auto;
}

.bottle-family-image,
.machine-media,
.compact-pump-image,
.compact-pump-image-wide,
.basic-dispenser-media {
    min-height: 0;
    overflow: hidden;
}

.bottle-family-image img,
.machine-media img,
.compact-pump-image img,
.basic-dispenser-media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.bottle-family-image img {
    max-height: 380px;
}

.machine-media img {
    max-height: 360px;
}

.compact-pump-image img,
.basic-dispenser-media img {
    max-height: 340px;
}

.urgency-bar-content {
    position: relative;
    min-width: 0;
    padding-right: 2.25rem;
}

.urgency-text {
    min-width: 0;
}

.urgency-text span {
    min-width: 0;
}

.whatsapp-float {
    bottom: max(24px, calc(env(safe-area-inset-bottom) + 18px));
    right: max(24px, calc(env(safe-area-inset-right) + 18px));
}

@supports not (overflow: clip) {
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 900px) {
    .container {
        padding-left: clamp(1rem, 4vw, 1.5rem);
        padding-right: clamp(1rem, 4vw, 1.5rem);
    }

    .seo-local-card,
    .bottles-showcase,
    .machines-grid,
    .compact-pumps-showcase,
    .basic-dispenser-showcase {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .urgency-bar {
        padding: 0.55rem 0;
    }

    .urgency-bar-content {
        justify-content: center;
        gap: 0.5rem;
    }

    .urgency-text {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        width: 100%;
        line-height: 1.25;
    }

    .urgency-kicker {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .hero {
        padding-top: calc(2rem + 48px);
        padding-bottom: 2.25rem;
    }

    .company-logo {
        gap: 0.55rem;
        margin-bottom: 1.15rem;
    }

    .logo-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .logo-icon > img[src*="poseidon-logo-mark"],
    .company-logo img[src*="poseidon-logo-mark"] {
        width: 34px !important;
        height: 34px !important;
        max-width: 34px !important;
        max-height: 34px !important;
    }

    .logo-name {
        font-size: clamp(1.65rem, 8vw, 2.25rem);
        letter-spacing: 0.04em;
        max-width: calc(100vw - 5.5rem);
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: clamp(0.98rem, 4vw, 1.08rem);
        line-height: 1.55;
        max-width: 34rem;
    }

    .hero-offer {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 22rem;
        border-radius: 1rem;
        gap: 0.25rem;
        line-height: 1.35;
    }

    .hero-cta {
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .seo-local-card {
        padding: clamp(1.25rem, 5vw, 2rem);
        border-radius: 1.1rem;
    }

    .seo-local-content h2 {
        font-size: clamp(1.8rem, 7.8vw, 2.45rem);
        line-height: 1.12;
    }

    .seo-local-content p {
        font-size: 1rem;
        line-height: 1.68;
    }

    .bottle-family-image {
        padding: 0.85rem;
    }

    .machine-media {
        padding: 1rem;
    }

    .machine-media img {
        width: min(100%, 280px);
        max-height: min(52vh, 340px);
        margin: 0 auto;
    }

    .bottle-family-image img,
    .compact-pump-image img,
    .basic-dispenser-media img {
        max-height: min(52vh, 330px);
        margin: 0 auto;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 540px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
        line-height: 1.12;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.55;
    }

    .bottle-family-card,
    .machine-card,
    .seo-point,
    .plan-preview-card,
    .updated-plan-card {
        border-radius: 1rem;
    }

    .bottle-family-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .machine-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .compact-pump-image,
    .compact-pump-image-wide,
    .basic-dispenser-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .urgency-bar-content {
        padding-right: 1.75rem;
    }

    .urgency-text {
        column-gap: 0.65rem;
        font-size: 0.78rem;
    }

    .urgency-close {
        right: 0.4rem;
    }

    .nav-brand {
        max-width: calc(100vw - 5.25rem);
        font-size: clamp(0.98rem, 4.5vw, 1.15rem);
        letter-spacing: 0.035em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-logo-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 22rem;
        padding: 1.1rem;
    }

    .stat-item {
        padding: 0.2rem 0;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-number-text {
        font-size: 1.05rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: max(76px, calc(env(safe-area-inset-bottom) + 64px));
        right: max(14px, calc(env(safe-area-inset-right) + 14px));
    }

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

/* ========================================
   EDGE / DESKTOP IMAGE SIZE PATCH
   Forces Edge to keep product images proportional and uncropped on computers.
   ======================================== */
@media (min-width: 769px) {
    body {
        overflow-x: hidden;
    }

    img[src*="assets/brand/poseidon-logo-mark"] {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;
        object-fit: contain !important;
    }

    .nav-logo-icon > img[src*="assets/brand/poseidon-logo-mark"] {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
    }

    .bottles-showcase,
    .machines-grid,
    .compact-pumps-showcase,
    .basic-dispenser-showcase {
        max-width: 1120px;
        margin-left: auto;
        margin-right: auto;
    }

    .bottle-family-image,
    .machine-media,
    .compact-pump-image,
    .compact-pump-image-wide,
    .basic-dispenser-media {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    img[src*="assets/bidones/"],
    img[src*="assets/machines/"],
    img[src*="assets/pumps/"],
    img[src*="assets/dispensers/"] {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .bottle-family-image img,
    img[src*="assets/bidones/"] {
        max-height: 340px !important;
    }

    .machine-media img,
    img[src*="assets/machines/"] {
        max-height: 360px !important;
    }

    .compact-pump-image img,
    img[src*="assets/pumps/"] {
        max-height: 300px !important;
    }

    .basic-dispenser-media img,
    img[src*="assets/dispensers/"] {
        max-height: 320px !important;
    }

    .machine-card {
        align-items: stretch;
    }

    .machine-media {
        align-self: stretch;
    }
}

/* ========================================
   MOBILE POLISH PATCH
   Final phone/tablet layer. Desktop rules above remain unchanged.
   ======================================== */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 16px;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    section,
    header,
    footer,
    .hero,
    .bottles-section,
    .machines-section,
    .pricing,
    .registration,
    .faq-section,
    .final-cta {
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-container {
        min-height: 48px;
        gap: 0.75rem;
    }

    .nav-links {
        left: 1rem !important;
        right: 1rem !important;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
    }

    .nav-links li,
    .nav-links li a {
        width: 100%;
    }

    .nav-links li a {
        display: flex;
        justify-content: center;
        min-height: 44px;
    }

    .urgency-bar-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.5rem;
        padding-right: 2rem !important;
    }

    .urgency-text {
        display: block !important;
        width: 100%;
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .urgency-kicker {
        display: block;
        margin-bottom: 0.1rem;
    }

    .urgency-cta {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding-top: calc(2.25rem + 52px) !important;
        padding-bottom: 2.5rem !important;
    }

    .company-logo {
        justify-content: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.95rem, 9vw, 2.65rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 1rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.55 !important;
    }

    .hero-offer,
    .hero-cta,
    .hero-stats {
        width: 100%;
        max-width: 24rem !important;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .btn,
    .btn-large,
    .bottles-cta .btn,
    .machine-cta,
    .flexible-cta,
    .updated-plans-action .btn,
    .final-cta .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 48px;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .section-title,
    .plan-preview-heading h2,
    .seo-local-content h2,
    .flexible-title,
    .final-cta h2,
    .form-header h2 {
        font-size: clamp(1.65rem, 7.6vw, 2.25rem) !important;
        line-height: 1.12 !important;
    }

    .section-subtitle,
    .plan-preview-heading p,
    .seo-local-content p,
    .flexible-subtitle,
    .cta-content p {
        font-size: 1rem !important;
        line-height: 1.58 !important;
    }

    .seo-local-card,
    .plan-preview-grid,
    .updated-plans-grid,
    .bottles-showcase,
    .machines-grid,
    .compact-pumps-showcase,
    .basic-dispenser-showcase,
    .premium-grid,
    .testimonials-grid,
    .faq-grid,
    .footer-content,
    .checkout-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .plan-preview-card,
    .updated-plan,
    .bottle-family-card,
    .machine-card,
    .compact-pumps-showcase,
    .basic-dispenser-showcase,
    .testimonial-card,
    .premium-card,
    .registration .card,
    .payment-options-bar,
    .flexible-purchase,
    .checkout-step,
    .checkout-summary {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        border-radius: 1rem;
    }

    .bottle-family-card,
    .machine-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .bottle-family-image,
    .machine-media,
    .compact-pump-image,
    .compact-pump-image-wide,
    .basic-dispenser-media {
        width: 100%;
        min-height: 0 !important;
        aspect-ratio: 4 / 3;
        padding: 0.85rem !important;
        overflow: hidden !important;
    }

    .bottle-family-image img,
    .machine-media img,
    .compact-pump-image img,
    .basic-dispenser-media img,
    img[src*="assets/bidones/"],
    img[src*="assets/machines/"],
    img[src*="assets/pumps/"],
    img[src*="assets/dispensers/"] {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto !important;
    }

    .bottle-family-content,
    .machine-content,
    .compact-pumps-copy,
    .basic-dispenser-content {
        padding: 1.15rem !important;
        min-width: 0;
    }

    .bottle-options,
    .compact-pumps-benefits,
    .basic-dispenser-benefits,
    .seo-local-points,
    .payment-tabs,
    .flexible-body,
    .footer-whatsapp-list,
    .final-whatsapp-links {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .payment-tab,
    .payment-panel-content,
    .flexible-calculator,
    .flexible-pricing {
        width: 100%;
        min-width: 0;
    }

    .flexible-qty-control {
        max-width: 190px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .flex-comuna-select,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .checkout-form-group input,
    .checkout-form-group select {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 16px !important;
    }

    .flex-line,
    .summary-line,
    .transfer-row {
        gap: 0.75rem;
        min-width: 0;
    }

    .flex-line span:last-child,
    .summary-line span:last-child,
    .transfer-value {
        text-align: right;
        overflow-wrap: anywhere;
    }

    .table-responsive {
        width: calc(100% + 2rem);
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .footer,
    .final-cta {
        padding-bottom: calc(5rem + env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.875rem !important;
        padding-right: 0.875rem !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9.5vw, 2.35rem) !important;
    }

    .logo-name {
        font-size: clamp(1.35rem, 7.5vw, 1.9rem) !important;
        letter-spacing: 0.025em !important;
    }

    .section-title,
    .plan-preview-heading h2,
    .seo-local-content h2,
    .flexible-title,
    .final-cta h2,
    .form-header h2 {
        font-size: clamp(1.45rem, 8vw, 2rem) !important;
    }

    .plan-preview-card,
    .updated-plan,
    .bottle-family-content,
    .machine-content,
    .payment-options-bar,
    .flexible-purchase,
    .registration .card,
    .form-section,
    .checkout-step,
    .checkout-summary {
        padding: 1rem !important;
    }

    .bottle-family-image,
    .machine-media,
    .compact-pump-image,
    .compact-pump-image-wide,
    .basic-dispenser-media {
        aspect-ratio: 1 / 1;
    }

    .machine-content h3,
    .bottle-family-content h3,
    .plan-preview-card h3 {
        font-size: 1.15rem !important;
    }

    .updated-plan strong,
    .plan-preview-price {
        font-size: 1.35rem !important;
    }

    .checkout-plan-card,
    .checkout-payment-card,
    .checkout-addon {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
    }

    .checkout-plan-price,
    .checkout-addon-price {
        grid-column: 2;
        width: auto !important;
        padding-left: 0 !important;
        text-align: left !important;
    }
}

