/* ===================================
   AlumnusCare Landing Page Styles
   Modern, Professional, Conversion-Oriented
   =================================== */

/* === CSS Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* AlumnusCare Brand Color Palette */
    --bg-main: #F9F7F7;
    --bg-secondary: #DBE2EF;
    --brand-primary: #00bfd6;
    --accent: #00bfd6;
    --text-strong: #112D4E;

    /* CTA Accent (Coral - only for conversion elements) */
    --accent-orange: #FF6B6B;
    --accent-orange-dark: #FF5252;
    --accent-orange-light: #FF8A80;

    /* Derived colors for consistency */
    --white: #ffffff;
    --text-body: #112D4E;
    --text-light: rgba(17, 45, 78, 0.7);
    --text-muted: rgba(17, 45, 78, 0.5);
    --border-color: rgba(0, 191, 214, 0.15);
    --card-bg: #DBE2EF;
    --card-hover: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00bfd6 0%, #33d1e5 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FF8A80 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 191, 214, 0.95) 0%, rgba(51, 209, 229, 0.9) 100%);

    /* Typography */
    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: #D9F7FB;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === Scroll Progress Indicator === */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, #5A8FD6 50%, var(--accent) 100%);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 4px rgba(0, 191, 214, 0.3);
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-strong);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-strong);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}


/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 191, 214, 0.08);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: -0.02em;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.header-logo-link:hover {
    opacity: 0.8;
}

.header-logo-img {
    height: 75px;
    width: auto;
    display: block;
    background: transparent;
    mix-blend-mode: multiply;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.header-nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

.header-nav-link:hover {
    color: var(--brand-primary);
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width var(--transition-base);
}

.header-nav-link:hover::after {
    width: 100%;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--brand-primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}

.header-btn:hover {
    background: #2E5A8F;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 191, 214, 0.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all var(--transition-base);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.15);
    padding: var(--spacing-lg) 0;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-menu.active {
    max-height: 400px;
    opacity: 1;
}

.mobile-menu-link {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: all var(--transition-base);
    border-left: 4px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(0, 191, 214, 0.08);
    border-left-color: var(--brand-primary);
    color: var(--brand-primary);
}

@media (max-width: 640px) {
    .header {
        height: 56px;
    }

    .header-logo {
        font-size: 1.125rem;
    }

    .header-logo-img {
        height: 65px;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        top: 56px;
    }

    .header-btn {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }
}

/* === Sticky WhatsApp Button === */
.whatsapp-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 30px 60px -15px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* === Hero Section === */
.hero {
    background: #D9F7FB;
    padding: calc(60px + var(--spacing-3xl)) 0 var(--spacing-3xl) 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 3px 12px rgba(0, 191, 214, 0.08);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 580px;
    text-align: left;
}

.hero-globe-container {
    flex: 1;
    max-width: 500px;
    height: 500px;
    position: relative;
}

.hero-globe-container canvas {
    border-radius: var(--radius-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-strong);
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-social-proof {
    margin-top: var(--spacing-xl);
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-social-proof::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: calc(56px + var(--spacing-3xl)) 0 var(--spacing-2xl) 0;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-globe-container {
        display: none;
        /* Hide globe completely on mobile for better UX and performance */
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === Decorative Transition Arrow === */
.transition-arrow {
    position: absolute;
    left: 15%;
    width: 200px;
    height: 150px;
    color: rgba(0, 191, 214, 0.7);
    pointer-events: none;
    z-index: 10;
    margin-top: -80px;
    animation: arrowFloat 3s ease-in-out infinite;
}

@keyframes arrowFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.9;
    }
}

@media (max-width: 968px) {
    .transition-arrow {
        display: none;
    }
}

/* === Products Section === */
.products-section {
    padding: var(--spacing-lg) 0 var(--spacing-3xl) 0;
    background: #D9F7FB;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.product-card {
    background: #FFFFFF;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.08);
    transition: all var(--transition-base);
    border: 2px solid rgba(0, 191, 214, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 191, 214, 0.2);
    border-color: var(--brand-primary);
}

.product-icon-wrapper {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 191, 214, 0.25);
}

.product-card:hover .product-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0, 191, 214, 0.4);
}

.product-icon {
    width: 36px;
    height: 36px;
    color: white;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9375rem;
    color: var(--text-body);
    font-weight: 500;
}

.product-features li svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-warm);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Featured Product Card */

.product-featured {
    background: #FFFFFF;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 191, 214, 0.15);
    border: 3px solid var(--brand-primary);
    position: relative;
    margin-top: var(--spacing-xl);
    transition: all var(--transition-base);
}

.product-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 191, 214, 0.2);
}

.product-badge-featured {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--gradient-warm);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}


.product-featured-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.product-featured-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.product-icon-wrapper-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.25);
}

.product-icon-large {
    width: 40px;
    height: 40px;
    color: white;
}

.product-title-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0 0 var(--spacing-sm) 0;
}

.product-description-large {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.product-features-large {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

.product-features-large li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 500;
}

.product-features-large li svg {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
}

/* Products Separator */
.products-separator {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin: var(--spacing-3xl) 0 var(--spacing-xl) 0;
    position: relative;
}

.products-separator::before,
.products-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 214, 0.2), transparent);
}

.products-separator::before {
    left: 0;
}

.products-separator::after {
    right: 0;
}

/* Optional Products Grid */
.products-grid-optional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

/* Equal Products Grid - 2 Cards centered */
.products-grid-equal {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.product-card-equal {
    flex: 0 1 420px;
    background: #FFFFFF;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.08);
    transition: all var(--transition-base);
    border: 2px solid rgba(0, 191, 214, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    min-height: 450px;
}

.product-card-equal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.product-card-equal:hover::before {
    transform: scaleX(1);
}

.product-card-equal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 191, 214, 0.2);
    border-color: var(--brand-primary);
}

.product-card-equal:hover .product-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 191, 214, 0.35);
}

.product-subtitle-optional {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

/* Responsive for Featured Product */
@media (max-width: 768px) {
    .product-featured-header {
        flex-direction: column;
    }

    .product-icon-wrapper-large {
        width: 64px;
        height: 64px;
    }

    .product-icon-large {
        width: 32px;
        height: 32px;
    }

    .product-title-large {
        font-size: 1.5rem;
    }

    .product-description-large {
        font-size: 1rem;
    }

    .product-features-large {
        grid-template-columns: 1fr;
    }

    .products-separator {
        font-size: 1.25rem;
    }

    .products-separator::before,
    .products-separator::after {
        width: 20%;
    }

    .products-grid-optional {
        grid-template-columns: 1fr;
    }

    .products-grid-equal {
        flex-direction: column;
        align-items: center;
    }

    .product-card-equal {
        flex: 0 1 100%;
        min-height: auto;
    }

    .product-badge-featured {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .product-card {
        padding: var(--spacing-lg);
    }

    .product-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .product-icon {
        width: 32px;
        height: 32px;
    }

    .product-title {
        font-size: 1.375rem;
    }
}

/* === Problem Section === */
.problem-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.problem-card {
    background: #FFFFFF;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 191, 214, 0.08);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 191, 214, 0.1);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 191, 214, 0.15);
    border-color: var(--brand-primary);
}

.problem-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.problem-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #5A8FD6 100%);
    border-radius: var(--radius-md);
    color: white;
    flex-shrink: 0;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.2);
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 191, 214, 0.4);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-strong);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Mobile: Hide problem card descriptions, show only titles */
@media (max-width: 640px) {
    .problem-card p {
        display: none;
    }

    /* Hide the entire problem section title and cards on mobile, but keep flags */
    .problem-section .section-title,
    .problem-grid {
        display: none;
    }
}

/* Flag Ticker Strip */
.countries-tagline {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.7;
    max-width: 680px;
    margin: var(--spacing-xl) auto var(--spacing-lg);
}

.flag-strip {
    margin-top: 48px;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 191, 214, 0.06);
}

.flag-track {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    height: 100%;
    animation: scrollFlags 24s linear infinite;
    will-change: transform;
}

.flag-item {
    height: 30px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    opacity: 0.85;
    flex-shrink: 0;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.flag-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollFlags {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .flag-strip {
        height: 56px;
        margin-top: 40px;
    }

    .flag-item {
        height: 26px;
    }

    .flag-track {
        gap: 20px;
        padding: 0 20px;
        animation: scrollFlags 12s linear infinite;
        /* Faster animation on mobile */
    }
}

/* === Visa Requirements Section === */
.requirements-section {
    padding: var(--spacing-3xl) 0;
    background: #D9F7FB;
    position: relative;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.requirement-card {
    background: #FFFFFF;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 191, 214, 0.08);
    transition: all var(--transition-base);
    border: 2px solid rgba(0, 191, 214, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.requirement-card:hover::before {
    transform: scaleX(1);
}

.requirement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 191, 214, 0.15);
    border-color: var(--brand-primary);
}

.requirement-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.2);
}

.requirement-card:hover .requirement-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 191, 214, 0.35);
}

.requirement-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.requirement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0 0 var(--spacing-sm) 0;
}

.requirement-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.requirements-note {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(0, 191, 214, 0.08);
    border-left: 4px solid var(--brand-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.requirements-note svg {
    width: 24px;
    height: 24px;
    color: var(--brand-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.requirements-note p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* Responsive */
@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .requirement-card {
        padding: var(--spacing-lg);
    }

    .requirement-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .requirement-icon {
        width: 28px;
        height: 28px;
    }

    .requirements-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* === Insurance Companies Carousel === */
.insurance-carousel-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.insurance-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-strong);
    margin-bottom: var(--spacing-xs);
}

.insurance-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.insurance-carousel {
    width: 100%;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.insurance-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 20s linear infinite;
    width: fit-content;
}

.insurance-logo-item {
    flex-shrink: 0;
    width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.insurance-logo-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 191, 214, 0.2);
}

.insurance-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.insurance-logo-item:hover img {
    transform: scale(1.05);
}

/* Specific sizing for Nuevamutua logo */
.insurance-logo-item img.nuevamutua-logo {
    transform: scale(1.3);
}

.insurance-logo-item:hover img.nuevamutua-logo {
    transform: scale(1.35);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .insurance-title {
        font-size: 1.5rem;
    }

    .insurance-subtitle {
        font-size: 0.9rem;
    }

    .insurance-logo-item {
        width: 160px;
        height: 80px;
        padding: var(--spacing-sm);
    }

    .insurance-track {
        gap: 40px;
    }
}

/* === Pages Seguros Guarantee Section === */
.pages-guarantee-section {
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    background: #D9F7FB;
    position: relative;
}

.pages-guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: visible;
}

.pages-guarantee-content::before {
    display: none;
}

.pages-guarantee-badge {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 6px 20px rgba(0, 191, 214, 0.3);
}

.pages-guarantee-badge svg {
    width: 36px;
    height: 36px;
    color: white;
}

.pages-guarantee-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0 0 var(--spacing-sm) 0;
}

.pages-guarantee-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 var(--spacing-sm) 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pages-guarantee-dgsfp {
    font-size: 0.8125rem;
    color: var(--brand-primary);
    font-weight: 600;
    margin: 0 0 var(--spacing-xl) 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pages-guarantee-dgsfp::before {
    content: '🛡';
    font-size: 0.875rem;
}

/* Experience Highlights - Badge Style */
.pages-experience-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pages-experience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(0, 191, 214, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 191, 214, 0.15);
    transition: all var(--transition-base);
    min-width: 140px;
}

.pages-experience-item:hover {
    background: rgba(0, 191, 214, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.15);
}

.pages-experience-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: transform var(--transition-base);
}

.pages-experience-item:hover .pages-experience-number {
    transform: scale(1.1);
}

.pages-experience-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-body);
    text-align: center;
    text-transform: lowercase;
}

.pages-experience-divider {
    display: none;
}

.pages-guarantee-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -16px;
}

.pages-guarantee-logo img {
    max-width: 420px;
    height: auto;
    opacity: 0.85;
    transition: opacity var(--transition-base);
}

.pages-guarantee-logo img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .pages-guarantee-content {
        padding: 0 var(--spacing-md);
    }

    .pages-guarantee-badge {
        width: 64px;
        height: 64px;
    }

    .pages-guarantee-badge svg {
        width: 32px;
        height: 32px;
    }

    .pages-guarantee-title {
        font-size: 1.375rem;
    }

    .pages-guarantee-text {
        font-size: 0.9375rem;
    }

    .pages-experience-highlights {
        gap: var(--spacing-sm);
    }

    .pages-experience-item {
        min-width: 110px;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .pages-experience-number {
        font-size: 1.75rem;
    }

    .pages-experience-label {
        font-size: 0.75rem;
    }

    .pages-guarantee-logo img {
        max-width: 280px;
    }
}

/* === Solution Section === */
.solution-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.solution-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-orange);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange-dark);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.25);
}

.solution-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.solution-card:hover .solution-number {
    opacity: 0.9;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-strong);
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === Why Section === */
.why-section {
    padding: var(--spacing-3xl) 0;
    background: var(--text-strong);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    color: var(--white);
    position: relative;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-section .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: rgba(0, 191, 214, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 191, 214, 0.3);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(0, 191, 214, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.why-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.why-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.why-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* === How It Works Section === */
.how-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.steps-container {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
}

.step {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + var(--spacing-lg));
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
    opacity: 0.3;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-strong);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.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(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-primary);
}

.testimonial-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.testimonial-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: var(--spacing-lg);
}

/* Testimonial Stars */
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-stars .star {
    color: #FFB800;
    font-size: 1.25rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: var(--spacing-xs);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* === FAQ Section === */
.faq-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-strong);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-light);
    line-height: 1.7;
}

/* === Final CTA Section === */
.final-cta-section {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.final-cta-content {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-body);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-strong);
    line-height: 1.3;
}

.final-cta-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative curved line */
.final-cta-decoration {
    width: 200px;
    height: 20px;
    margin: 0 auto var(--spacing-xl);
    color: var(--brand-primary);
    display: block;
}

.final-cta-btn {
    margin-bottom: var(--spacing-md);
}

.final-cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--spacing-md);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-text {
        font-size: 1rem;
    }
}

/* === Team Section === */
.team-section {
    padding: var(--spacing-3xl) 0;
    background: #D9F7FB;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.team-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid rgba(0, 191, 214, 0.1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 191, 214, 0.15);
    border-color: var(--brand-primary);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 191, 214, 0.2);
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Individual positioning for each team member */
.team-card:nth-child(1) .team-image img {
    object-position: center 20%;
    transform: scale(1.0);
}

.team-card:nth-child(2) .team-image img {
    object-position: center 30%;
    transform: scale(1.1);
}

.team-card:nth-child(3) .team-image img {
    object-position: center 15%;
    transform: scale(1.1);
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-strong);
    margin: 0;
}

.team-role {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .team-card {
        padding: var(--spacing-lg);
    }

    .team-image {
        width: 100px;
        height: 100px;
    }
}

/* === Footer === */
.footer {
    padding: var(--spacing-xl) 0;
    background: #0a2540;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer-main {
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-legal {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.footer-address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}

.footer-contact {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-contact a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--brand-primary);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8125rem;
}

.footer p {
    margin-bottom: var(--spacing-sm);
}

.footer-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-ctas {
        justify-content: center;
    }


    .section-title {
        font-size: 2rem;
    }

    .problem-grid,
    .solution-grid,
    .why-grid,
    .testimonials-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .whatsapp-sticky {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .final-cta-title {
        font-size: 2rem;
    }


}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}


/* === Print Styles === */
@media print {

    .whatsapp-sticky,
    .hero-ctas,
    .final-cta-section {
        display: none;
    }
}

/* === Section CTA Blocks === */
.section-cta {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl) var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: rgba(0, 191, 214, 0.07);
    border: 1px solid rgba(0, 191, 214, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.section-cta--light {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 191, 214, 0.15);
}

.section-cta--accent {
    background: var(--gradient-primary);
    border: none;
}

.section-cta--accent .section-cta-text {
    color: #fff;
}

.section-cta-text {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-strong);
    margin: 0;
    line-height: 1.5;
    flex: 1 1 300px;
}

.section-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    align-items: center;
}

.btn-white {
    background: #fff;
    color: var(--brand-primary);
    border: 2px solid transparent;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-white:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

@media (max-width: 640px) {
    .section-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-md) var(--spacing-lg);
        margin-top: var(--spacing-xl);
        gap: var(--spacing-md);
    }

    .section-cta-text {
        font-size: 0.9375rem;
        flex: none;
    }

    .section-cta-buttons {
        width: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .section-cta-buttons .btn,
    .section-cta>.btn {
        width: auto !important;
        min-width: 0;
        padding: 0.6rem 1.25rem;
        font-size: 0.875rem;
        justify-content: center;
    }
}

/* === Final CTA Section === */
.final-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #006475 0%, #00919e 100%);
    text-align: center;
}

.final-cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* === Contact Form (Final CTA Section) === */
.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-wrapper .final-cta-title,
.contact-form-wrapper .final-cta-text {
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(0, 191, 214, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: #0d1f3c;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.form-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 340px;
    line-height: 1.5;
}

.form-privacy a {
    color: rgba(0, 191, 214, 0.8);
    text-decoration: underline;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e7a);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 107, 107, 0.45);
}

.form-submit-btn svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-submit-row {
        flex-direction: column;
        text-align: center;
    }

    .form-privacy {
        max-width: 100%;
    }

    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* === Form Success State === */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-success {
    text-align: center;
    padding: 3rem 1.5rem;
    animation: fadeInUp 0.5s ease-out;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #00bfd6, #33d1e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 191, 214, 0.35);
}

.form-success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 440px;
    margin: 0 auto 0.75rem;
}

.form-success-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.form-success-subtext a {
    color: #00bfd6;
    font-weight: 600;
    text-decoration: underline;
}

.form-error-msg {
    grid-column: 1 / -1;
    font-size: 0.875rem;
    color: #ff8a80;
    text-align: center;
    margin: 0.5rem 0 0;
    font-weight: 500;
}
