/* ============================================
   DESIGN 25: GRADIENT TIMELINE
   Main Styles
   ============================================ */

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    background: var(--color-surface-warm);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===================
   UTILITIES
   =================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

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

/* Gradient text utility */
.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================
   BUTTONS
   =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary-reverse);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary span {
    position: relative;
    z-index: var(--z-base);
}

.btn--secondary {
    background: var(--color-surface-light);
    color: var(--gradient-primary-start);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--color-surface-light), var(--color-surface-light)), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

/* ===================
   WAVE DIVIDERS
   =================== */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.wave-divider--bottom {
    bottom: 0;
}

.wave-divider--top {
    top: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: var(--wave-height);
}

.wave-divider--lg svg {
    height: var(--wave-height-lg);
}

.wave-divider .wave-fill {
    fill: var(--color-surface-warm);
}

.wave-divider--white .wave-fill {
    fill: var(--color-surface-light);
}

.wave-divider--gradient .wave-fill {
    fill: url(#gradient-wave);
}

/* ===================
   NAVIGATION
   =================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav.scrolled::before {
    opacity: 1;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: var(--z-base);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
}

.nav__logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-inverse);
    font-size: var(--text-lg);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--gradient-primary-start);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav__lang-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-surface-muted);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.nav__lang-toggle:hover {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
}

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav__links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-surface-light);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
    }

    .nav__links.active {
        transform: translateX(0);
    }

    .nav__link {
        font-size: var(--text-xl);
    }

    .nav__mobile-toggle {
        display: flex;
    }

    .nav__actions .btn {
        display: none;
    }
}

/* ===================
   HERO SECTION
   =================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    background: var(--gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
}

.hero__shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -100px;
    animation-delay: -5s;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.05);
    }
    50% {
        transform: translate(-10px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-20px, -10px) scale(1.02);
    }
}

.hero__content {
    position: relative;
    z-index: var(--z-base);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero__text {
    color: var(--color-text-inverse);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-xl);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-mint);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-lg);
}

.hero__subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-2xl);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero__buttons .btn--primary {
    background: var(--color-surface-light);
    color: var(--gradient-primary-start);
    box-shadow: var(--shadow-lg);
}

.hero__buttons .btn--primary:hover {
    box-shadow: var(--shadow-xl);
}

.hero__buttons .btn--secondary {
    background: transparent;
    color: var(--color-text-inverse);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero__buttons .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-inverse);
}

.hero__visual {
    position: relative;
}

.hero__card {
    background: var(--color-surface-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.hero__card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero__card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero__card-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-inverse);
    font-size: var(--text-2xl);
}

.hero__card-info h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-xs);
}

.hero__card-info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.hero__card-slots {
    display: grid;
    gap: var(--space-sm);
}

.hero__card-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--color-surface-soft);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.hero__card-slot:hover {
    background: var(--color-mint-light);
}

.hero__card-slot-time {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.hero__card-slot-status {
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-mint);
    color: var(--color-text-primary);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
}

.hero__card-slot--booked .hero__card-slot-status {
    background: var(--color-peach);
}

/* Hero responsive */
@media (max-width: 992px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: var(--text-5xl);
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__card {
        transform: none;
    }
}

/* ===================
   TIMELINE STRUCTURE
   =================== */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: var(--timeline-width);
    background: var(--gradient-primary-vertical);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr var(--timeline-node-size) 1fr;
    gap: var(--space-xl);
    align-items: start;
    padding: var(--space-3xl) 0;
}

.timeline__content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all var(--transition-slower);
}

.timeline__item:nth-child(odd) .timeline__content {
    grid-column: 1;
    text-align: right;
}

.timeline__item:nth-child(even) .timeline__content {
    grid-column: 3;
    transform: translateX(30px);
}

.timeline__item.visible .timeline__content {
    opacity: 1;
    transform: translateX(0);
}

.timeline__node {
    grid-column: 2;
    width: var(--timeline-node-size);
    height: var(--timeline-node-size);
    background: var(--color-surface-light);
    border: 3px solid var(--gradient-primary-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--gradient-primary-start);
    position: relative;
    z-index: var(--z-base);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.timeline__item.visible .timeline__node {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.timeline__card {
    background: var(--color-surface-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

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

.timeline__card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
}

.timeline__item:nth-child(odd) .timeline__card-icon {
    margin-left: auto;
}

.timeline__card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
}

.timeline__card p {
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: var(--space-lg);
    }

    .timeline__item {
        grid-template-columns: var(--timeline-node-size) 1fr;
        gap: var(--space-lg);
    }

    .timeline__node {
        grid-column: 1;
    }

    .timeline__content,
    .timeline__item:nth-child(odd) .timeline__content,
    .timeline__item:nth-child(even) .timeline__content {
        grid-column: 2;
        text-align: left;
        transform: translateX(30px);
    }

    .timeline__item:nth-child(odd) .timeline__card-icon {
        margin-left: 0;
    }
}

/* ===================
   TURNOSMEDICOS SECTION (Featured Timeline)
   =================== */
.turnos {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-surface-warm);
}

.turnos__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.turnos__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-mint-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--gradient-primary-start);
    margin-bottom: var(--space-lg);
}

.turnos__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-lg);
}

.turnos__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
}

.turnos__showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.turnos__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.turnos__feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-surface-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-30px);
}

.turnos__feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.turnos__feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.turnos__feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
}

.turnos__feature h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
}

.turnos__feature p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.turnos__demo {
    position: relative;
}

.turnos__demo-card {
    background: var(--color-surface-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.turnos__demo-header {
    background: var(--gradient-primary);
    padding: var(--space-xl);
    color: var(--color-text-inverse);
}

.turnos__demo-header h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
}

.turnos__demo-header p {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.turnos__demo-calendar {
    padding: var(--space-xl);
}

.turnos__demo-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.turnos__demo-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.turnos__demo-day--header {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.turnos__demo-day--available {
    cursor: pointer;
    background: var(--color-mint-light);
    color: var(--gradient-primary-start);
}

.turnos__demo-day--available:hover {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    transform: scale(1.1);
}

.turnos__demo-day--selected {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
}

.turnos__demo-day--disabled {
    color: var(--color-text-light);
}

.turnos__demo-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.turnos__demo-time {
    padding: var(--space-md);
    background: var(--color-surface-soft);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-base);
}

.turnos__demo-time:hover {
    background: var(--color-mint-light);
}

.turnos__demo-time--selected {
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
}

.turnos__floating {
    position: absolute;
    background: var(--color-surface-light);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

.turnos__floating--1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.turnos__floating--2 {
    bottom: 40px;
    left: -30px;
    animation-delay: -1.5s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.turnos__floating-icon {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
}

.turnos__floating-icon span:first-child {
    font-size: var(--text-xl);
}

/* Turnos responsive */
@media (max-width: 992px) {
    .turnos__showcase {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .turnos__demo {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================
   SERVICES SECTION (Timeline)
   =================== */
.services {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-surface-light);
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.services__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-lavender-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-lavender-dark);
    margin-bottom: var(--space-lg);
}

.services__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-lg);
}

.services__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
}

/* ===================
   PRICING SECTION
   =================== */
.pricing {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.pricing__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pricing__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.pricing__shape--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
}

.pricing__shape--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
}

.pricing__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
    color: var(--color-text-inverse);
    position: relative;
    z-index: var(--z-base);
}

.pricing__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
}

.pricing__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-lg);
}

.pricing__subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: var(--z-base);
}

.pricing__card {
    background: var(--color-surface-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing__card:hover {
    transform: translateY(-10px);
}

.pricing__card--featured {
    background: var(--color-surface-light);
    transform: scale(1.05);
    z-index: 2;
}

.pricing__card--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing__card-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.pricing__card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    margin: 0 auto var(--space-lg);
}

.pricing__card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
}

.pricing__card-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.pricing__card-price {
    margin-bottom: var(--space-xl);
}

.pricing__card-price .amount {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-extrabold);
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing__card-price .period {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.pricing__card-features {
    margin-bottom: var(--space-xl);
    text-align: left;
}

.pricing__card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.pricing__card-features li::before {
    content: '✓';
    color: var(--gradient-primary-start);
    font-weight: var(--font-weight-bold);
}

/* Pricing responsive */
@media (max-width: 992px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing__card--featured {
        transform: none;
        order: -1;
    }

    .pricing__card--featured:hover {
        transform: translateY(-10px);
    }
}

/* ===================
   ABOUT SECTION
   =================== */
.about {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-surface-warm);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
}

.about__image-placeholder {
    aspect-ratio: 4/3;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__image-placeholder span {
    font-size: 100px;
    opacity: 0.3;
}

.about__stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.about__stat {
    background: var(--color-surface-light);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-extrabold);
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about__stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about__text {
    padding-left: var(--space-2xl);
}

.about__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-peach-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-peach-dark);
    margin-bottom: var(--space-lg);
}

.about__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-tight);
}

.about__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-xl);
}

.about__values {
    display: grid;
    gap: var(--space-md);
}

.about__value {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-surface-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.about__value:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about__value-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.about__value span {
    font-weight: var(--font-weight-medium);
}

/* About responsive */
@media (max-width: 992px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: var(--space-4xl);
    }

    .about__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about__stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-xl);
    }

    .about__text {
        padding-left: 0;
        text-align: center;
    }

    .about__values {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===================
   CONTACT SECTION
   =================== */
.contact {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-surface-light);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact__info {
    padding-right: var(--space-2xl);
}

.contact__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-mint-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--gradient-primary-start);
    margin-bottom: var(--space-lg);
}

.contact__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-tight);
}

.contact__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-2xl);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__method {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-surface-soft);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.contact__method:hover {
    background: var(--color-surface-light);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.contact__method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact__method h4 {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-xs);
}

.contact__method p {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.contact__form-wrapper {
    background: var(--color-surface-warm);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.contact__form {
    display: grid;
    gap: var(--space-lg);
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact__form-group label {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
}

.contact__form-group input,
.contact__form-group textarea {
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--color-surface-muted);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    background: var(--color-surface-light);
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
    outline: none;
    border-color: var(--gradient-primary-start);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.contact__form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* Contact responsive */
@media (max-width: 992px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .contact__info {
        padding-right: 0;
        text-align: center;
    }

    .contact__methods {
        max-width: 400px;
        margin: 0 auto;
    }

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

/* ===================
   FOOTER
   =================== */
.footer {
    position: relative;
    background: var(--color-text-primary);
    color: var(--color-text-inverse);
    padding-top: var(--wave-height-lg);
}

.footer__content {
    padding: var(--space-4xl) 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
}

.footer__logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
}

.footer__brand p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer__column h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    color: var(--color-text-inverse);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.footer__link:hover {
    color: var(--color-text-inverse);
    transform: translateX(5px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) 0;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.footer__legal {
    display: flex;
    gap: var(--space-xl);
}

/* Footer responsive */
@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__brand {
        grid-column: span 2;
        max-width: none;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        grid-column: 1;
    }

    .footer__bottom-content {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ===================
   TRUST BADGES
   =================== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    background: var(--color-surface-soft);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-surface-light);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
}

.trust-badge-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
}

/* ===================
   ANIMATIONS
   =================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slower);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all var(--transition-slower);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all var(--transition-slower);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.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; }

/* ===================
   SCROLLBAR
   =================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-surface-muted);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary-start);
}
