:root {
    /* Colors - Paleta de la app (Warmer & Safer) */
    --color-primary: #3AAFA9;
    /* Teal principal */
    --color-primary-dark: #2B7A78;
    /* Teal oscuro */
    --color-primary-light: #5DC0BB;
    /* Teal claro */
    --color-secondary: #F4A261;
    /* Naranja cálido */
    --color-secondary-dark: #E08C4A;
    --color-accent: #E85A5A;
    /* Coral para acentos */

    --color-success: #4CAF50;
    --color-warning: #FFB347;
    --color-error: #E57373;

    /* Grises cálidos & Cremas (Organic Base) */
    --color-gray-50: #FDFBF7;
    /* Creamy White - Much warmer */
    --color-gray-100: #F5F0EB;
    /* Beige tint */
    --color-gray-200: #E8E2DD;
    /* Warm Divider */
    --color-gray-300: #D5CEC8;
    --color-gray-400: #A8A29E;
    --color-gray-500: #78716C;
    /* Warm Gray Text */
    --color-gray-600: #57534E;
    --color-gray-700: #44403C;
    --color-gray-800: #292524;
    /* Soft Black */
    --color-gray-900: #1C1917;

    /* Colores para padres en calendario */
    --color-parent-a: #3AAFA9;
    /* Teal */
    --color-parent-b: #F4A261;
    /* Naranja cálido */

    /* Gradients - Coherentes con la app */
    --gradient-primary: linear-gradient(135deg, #3AAFA9 0%, #5DC0BB 50%, #7DD1CC 100%);
    --gradient-warm: linear-gradient(135deg, #F4A261 0%, #F6B67A 50%, #F8CA93 100%);
    --gradient-hero: linear-gradient(180deg, #FDFBF7 0%, #E8F6F5 100%);
    --gradient-accent: linear-gradient(135deg, #E85A5A 0%, #F07070 100%);

    /* Typography - Fuentes de la app */
    --font-family-heading: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Border Radius - Slightly more organic */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    /* Shadows - Softer and warmer */
    --shadow-sm: 0 2px 8px 0 rgb(92 74 66 / 0.06);
    --shadow-md: 0 4px 16px -2px rgb(92 74 66 / 0.08), 0 2px 8px -2px rgb(92 74 66 / 0.04);
    --shadow-lg: 0 12px 32px -8px rgb(92 74 66 / 0.10), 0 6px 16px -6px rgb(92 74 66 / 0.05);
    --shadow-xl: 0 20px 48px -12px rgb(92 74 66 / 0.14);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-800);
    background-color: var(--color-gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(92, 74, 66, 0.008) 2px,
            rgba(92, 74, 66, 0.008) 4px
        );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

h4 {
    font-size: 1.0625rem;
}

.gradient-text {
    background: linear-gradient(135deg, #2B7A78 0%, #3AAFA9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

/* Subtle hand-drawn highlight instead of skewed box */
.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -2px;
    right: -2px;
    height: 10px;
    background: rgba(244, 162, 97, 0.25);
    z-index: -1;
    border-radius: 2px;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(58, 175, 169, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(58, 175, 169, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--color-gray-800);
    border: 2px solid var(--color-gray-200);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1.0625rem;
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    border-bottom-color: var(--color-gray-200);
    box-shadow: var(--shadow-sm);
    background: rgba(253, 251, 247, 0.96);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.logo-icon {
    display: none;
}

.logo-box {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-sm);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.0625rem;
    color: var(--color-gray-900);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-600);
    transition: color var(--transition-fast);
    position: relative;
}

/* Subtle underline animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 10px 22px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-800);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Removed: Overly perfect gradient blobs */
/* Keep subtle organic shapes instead */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 175, 169, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    border: 1px solid rgba(58, 175, 169, 0.1);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(232, 226, 221, 0.6);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    max-width: 150px;
    margin-top: 4px;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: var(--color-gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--color-gray-900);
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 60px 16px 16px;
}

.app-header {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-gray-900);
}

.calendar-preview {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.calendar-preview .day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.calendar-preview .day.parent-a {
    background: rgba(58, 175, 169, 0.15);
    color: var(--color-parent-a);
}

.calendar-preview .day.parent-b {
    background: rgba(244, 162, 97, 0.15);
    color: var(--color-parent-b);
}

.calendar-preview .day.weekend {
    font-weight: 600;
}

.day-name {
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.day-num {
    font-weight: 600;
    font-size: 0.875rem;
}

.app-notification {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-parent-b);
}

.notif-icon {
    font-size: 1.5rem;
}

.notif-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-text strong {
    font-size: 0.8125rem;
    color: var(--color-gray-900);
}

.notif-text span {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

/* ===== Pain Points Section ===== */
.pain-points {
    padding: var(--section-padding) 0;
    background: white;
}

.pain-points .section-title {
    margin-bottom: 48px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Softer glassmorphism */
.pain-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.pain-card:hover {
    background: white;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    font-weight: 500;
    line-height: 1.6;
}

.pain-conclusion {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

.pain-conclusion strong {
    color: var(--color-gray-900);
}

/* ===== Features Section ===== */
.features {
    padding: var(--section-padding) 0;
    background: var(--color-gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid var(--color-gray-200);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.feature-card.feature-large {
    grid-column: span 1;
}

.feature-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon-wrap.gradient-1 {
    background: linear-gradient(135deg, #3AAFA9 0%, #5DC0BB 100%);
}

.feature-icon-wrap.gradient-2 {
    background: linear-gradient(135deg, #5DC0BB 0%, #7DD1CC 100%);
}

.feature-icon-wrap.gradient-3 {
    background: linear-gradient(135deg, #F4A261 0%, #F6B67A 100%);
}

.feature-icon-wrap.gradient-4 {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.feature-icon-wrap.gradient-5 {
    background: linear-gradient(135deg, #E85A5A 0%, #F07070 100%);
}

.feature-icon-wrap.gradient-6 {
    background: linear-gradient(135deg, #2B7A78 0%, #3AAFA9 100%);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card>p {
    color: var(--color-gray-600);
    margin-bottom: 20px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.feature-list li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 600;
}

/* ===== Exclusive Features ===== */
.exclusive-features {
    padding: var(--section-padding) 0;
    background: var(--color-gray-900);
    color: white;
}

.exclusive-features .section-title {
    color: white;
}

.exclusive-features .section-header {
    text-align: center;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.exclusive-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.exclusive-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(58, 175, 169, 0.3);
}

.exclusive-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.exclusive-card h4 {
    color: white;
    margin-bottom: 8px;
}

.exclusive-card p {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===== How it Works ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: white;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 50px);
    width: calc(100% - 60px);
    height: 2px;
    background: var(--color-gray-200);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===== Difference Section ===== */
.difference {
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--color-gray-100);
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-header .comparison-col {
    padding: 16px 24px;
}

.comparison-header .us {
    background: var(--gradient-primary);
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--color-gray-100);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: 16px 24px;
    font-weight: 500;
    color: var(--color-gray-700);
}

.comparison-col {
    padding: 16px 24px;
    font-size: 0.9375rem;
}

.comparison-col.competitor {
    color: var(--color-gray-500);
}

.comparison-col.us {
    color: var(--color-primary);
    font-weight: 500;
    background: rgba(58, 175, 169, 0.06);
}

/* ===== Innovations Section ===== */
.innovations {
    padding: var(--section-padding) 0;
    background: var(--color-gray-900);
    color: white;
    position: relative;
}

.innovations h2 {
    color: white !important;
}

.innovations p.section-subtitle {
    color: var(--color-gray-400);
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    height: 100%;
}

.innovation-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(58, 175, 169, 0.3);
}

.innovation-card h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.innovation-card p {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.innovation-card:nth-child(1),
.innovation-card:nth-child(2) {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(58, 175, 169, 0.08) 0%, rgba(58, 175, 169, 0.04) 100%);
    border: 1px solid rgba(58, 175, 169, 0.2);
}

.innovation-card:nth-child(1) h3,
.innovation-card:nth-child(2) h3 {
    font-size: 1.375rem;
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .innovation-card:nth-child(1),
    .innovation-card:nth-child(2) {
        grid-column: span 1;
    }
}

/* ===== Spain Section ===== */
.spain-section {
    padding: 100px 0;
    background-image: url('/images/spain-map.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.spain-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.spain-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.spain-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.spain-content p {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
}

.spain-features {
    display: grid;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.spain-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--color-gray-800);
    transition: all 0.3s ease;
    text-align: left;
}

.spain-features li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.spain-features li::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233AAFA9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .spain-section {
        background-size: cover;
        padding: 60px 0;
    }

    .spain-features li {
        padding: 16px;
        border-radius: var(--radius-lg);
    }
}

/* ===== Pricing Section ===== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-100);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: #1C1917;
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: none;
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-card.featured h3,
.pricing-card.featured .price-amount {
    color: white;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(58, 175, 169, 0.3);
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-gray-100);
    margin-bottom: 32px;
}

.pricing-header h3 {
    margin-bottom: 16px;
    color: var(--color-gray-900);
    font-size: 1.375rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -1px;
}

.price-period {
    color: var(--color-gray-500);
    font-size: 1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.pricing-features .check {
    color: var(--color-success);
    font-weight: 900;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

/* ===== Testimonials ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.testimonial-stars {
    color: #FFB400;
    margin-bottom: 24px;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-800);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-gray-100);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary-light);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    color: var(--color-gray-900);
    font-size: 1.0625rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

/* ===== FAQ Section ===== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-gray-900);
    text-align: left;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-gray-50);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.cta-content>p {
    font-size: 1.0625rem;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    color: white;
    transition: all var(--transition-base);
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.store-icon {
    width: 32px;
    height: 32px;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label {
    font-size: 0.75rem;
    opacity: 0.85;
}

.store-name {
    font-weight: 600;
    font-size: 1.0625rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.85;
}

.cta-note a {
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--color-gray-900);
    color: var(--color-gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-tagline {
    color: var(--color-primary-light);
    font-weight: 600;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-800);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-gray-800);
    border-radius: 50%;
    color: var(--color-gray-400);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-primary);
    color: white;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, white 100%);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.trust-badge {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--color-gray-200);
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(58, 175, 169, 0.1) 0%, rgba(93, 192, 187, 0.1) 100%);
    border-radius: 50%;
}

.trust-icon svg {
    stroke: var(--color-primary);
}

.trust-badge h4 {
    font-family: var(--font-family-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

.trust-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding: 48px 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
}

.trust-stat {
    text-align: center;
    color: white;
}

.trust-number {
    display: block;
    font-family: var(--font-family-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.9375rem;
    opacity: 0.95;
}

.trust-certifications {
    text-align: center;
}

.certification-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.cert-item svg {
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exclusive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .comparison-feature,
    .comparison-col {
        padding: 12px 16px;
    }

    .spain-features {
        grid-template-columns: 1fr;
    }

    .exclusive-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .trust-numbers {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }

    .certification-logos {
        gap: 24px;
    }

    .cert-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== Animations ===== */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.phone-mockup {
    animation: float 8s ease-in-out infinite;
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for children */
.stagger-1 {
    transition-delay: 100ms;
}

.stagger-2 {
    transition-delay: 200ms;
}

.stagger-3 {
    transition-delay: 300ms;
}

.stagger-4 {
    transition-delay: 400ms;
}

.stagger-5 {
    transition-delay: 500ms;
}

/* NEW MOMENTS SECTION */
.moments-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    background: white;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.moment-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.moment-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.moment-card:hover .moment-bg {
    transform: scale(1.08);
}

.moment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: white;
    transform: translateY(10px);
    opacity: 0.95;
    transition: all 0.4s ease;
}

.moment-card:hover .moment-overlay {
    transform: translateY(0);
    opacity: 1;
}

.moment-overlay h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.moment-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .moments-grid {
        grid-template-columns: 1fr;
    }

    .moment-card {
        height: 350px;
    }
}
