/* ===========================
   AXEN - Sitio Web
   Estilo Apple-inspired
   Colores institucionales:
   Negro:  #1D1D1B
   Dorado: #B17F4A
   Teal:   #00A19A
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1D1D1B;
    --gold: #B17F4A;
    --gold-light: #c9994f;
    --gold-dark: #956a3d;
    --teal: #00A19A;
    --teal-light: #00c4bc;
    --teal-dark: #008a84;
    --white: #ffffff;
    --gray-50: #fbfbfd;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-300: #d2d2d7;
    --gray-400: #86868b;
    --gray-500: #6e6e73;
    --gray-600: #424245;
    --gray-700: #333336;
    --gray-800: #1d1d1f;
    --gray-900: #111111;
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.03);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.05);
    --shadow-xl: 0 8px 20px rgba(0,0,0,0.08), 0 24px 64px rgba(0,0,0,0.06);
    --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Section Common --- */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* --- Buttons (Apple pill style) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    letter-spacing: -0.01em;
}

.btn--primary {
    background: var(--teal);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--teal-dark);
    transform: scale(1.02);
}

.btn--outline {
    background: transparent;
    color: var(--teal);
    box-shadow: inset 0 0 0 1.5px var(--teal);
}
.btn--outline:hover {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.02);
}

.btn--white {
    background: var(--white);
    color: var(--gray-800);
    font-weight: 600;
}
.btn--white:hover {
    background: var(--gray-100);
    transform: scale(1.02);
}

.btn--full {
    width: 100%;
}

/* --- Header / Nav (Apple frosted glass) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251,251,253,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(251,251,253,0.92);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 26px;
    width: auto;
    display: block;
}

.logo-img--footer {
    height: 36px;
    margin-bottom: 8px;
}

.logo-inline {
    display: inline-block;
    height: 0.85em;
    width: auto;
    vertical-align: baseline;
    margin: 0 3px;
}

.logo-inline--btn {
    height: 0.85em;
}

.logo-inline--footer-bottom {
    height: 0.75em;
    vertical-align: baseline;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gray-600);
    border-radius: 980px;
    transition: var(--transition-fast);
    letter-spacing: -0.01em;
}

.nav__link:hover {
    color: var(--gray-800);
}

.nav__link--cta {
    background: var(--teal);
    color: var(--white) !important;
    margin-left: 8px;
    font-weight: 500;
    padding: 8px 20px;
}
.nav__link--cta:hover {
    background: var(--teal-dark) !important;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav__toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero (Apple centered, spacious) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gray-50);
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(40px);
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    33% { transform: translateY(-40px) translateX(20px) scale(1.05); }
    66% { transform: translateY(-20px) translateX(-15px) scale(0.95); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
    max-width: 800px;
}

.hero__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--gray-800);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.5;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__stats {
    display: flex;
    gap: 64px;
    justify-content: center;
    padding-top: 48px;
    border-top: 0.5px solid var(--gray-200);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.03em;
}

.hero__stat-suffix {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--teal);
}

.hero__stat-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 500;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2.5s infinite;
}

.hero__scroll a {
    color: var(--gray-300);
    transition: var(--transition);
}
.hero__scroll a:hover {
    color: var(--teal);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-6px); }
    60% { transform: translateX(-50%) translateY(-3px); }
}

/* --- Plans (tarjetas iguales, Apple card style) --- */
.plans {
    padding: 120px 0;
    background: var(--white);
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: var(--gray-50);
    border: 0.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 44px 32px 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-card--featured {
    background: var(--gray-800);
    border-color: var(--gray-800);
    color: var(--white);
}
.plan-card--featured:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.plan-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 980px;
    white-space: nowrap;
}

.plan-card__header {
    margin-bottom: 28px;
}

.plan-card__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: inherit;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.plan-card__desc {
    font-size: 0.85rem;
    color: var(--gray-400);
}
.plan-card--featured .plan-card__desc {
    color: rgba(255,255,255,0.5);
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.plan-card__currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.plan-card__amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.plan-card__period {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-left: 4px;
    font-weight: 400;
}
.plan-card--featured .plan-card__period {
    color: rgba(255,255,255,0.4);
}

.plan-card__speed {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(0, 161, 154, 0.06);
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
}
.plan-card--featured .plan-card__speed {
    background: rgba(0, 161, 154, 0.15);
}

.plan-card__speed svg {
    stroke: var(--teal);
}

.plan-card__features {
    margin-bottom: 36px;
    flex-grow: 1;
}

.plan-card__features li {
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 0.5px solid var(--gray-200);
}
.plan-card__features li:last-child {
    border-bottom: none;
}
.plan-card--featured .plan-card__features li {
    color: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.08);
}

.plan-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300A19A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.plan-card--featured .btn--primary {
    background: var(--white);
    color: var(--gray-800);
}
.plan-card--featured .btn--primary:hover {
    background: var(--gray-100);
}

.plan-card--featured .btn--outline {
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.3);
    color: var(--white);
}

/* --- Features (Apple minimal cards) --- */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 24px;
    color: var(--teal);
    box-shadow: var(--shadow);
}

.feature-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card__desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.55;
    font-weight: 400;
}

/* --- About (Apple editorial layout) --- */
.about {
    padding: 120px 0;
    background: var(--gray-50);
}

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about__content .section-tag,
.about__content .section-title {
    text-align: left;
}

.about__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.about__values {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-item__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--teal);
    box-shadow: var(--shadow);
}

.value-item h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.value-item p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.45;
}

.about__visual {
    position: relative;
}

.about__image-block {
    position: relative;
    background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: var(--radius-xl);
    min-height: 500px;
    overflow: hidden;
}

.about__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 75%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.about__pattern::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 48px;
    right: 48px;
    bottom: 48px;
    border: 0.5px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
}

.about__pattern::after {
    content: '';
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 80px;
    background: url('logo-white.png') no-repeat center / contain;
    opacity: 0.08;
}

.about__mission-card {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: var(--radius);
    padding: 28px;
    border: 0.5px solid rgba(255,255,255,0.12);
}

.about__mission-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about__mission-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
    font-weight: 400;
}

/* --- Coverage --- */
.coverage {
    padding: 120px 0;
    background: var(--white);
}

.coverage__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.coverage__map {
    background: var(--gray-50);
    border: 0.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.coverage__map-iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: none;
    display: block;
}

.coverage__check {
    padding: 44px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--gray-200);
}

.coverage__check h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.coverage__check > p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 28px;
    line-height: 1.5;
}

.input-group {
    display: flex;
    gap: 8px;
}

.input-group .input {
    flex: 1;
}

.input {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 0.9rem;
    border: 0.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition-fast);
    outline: none;
}

.input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 161, 154, 0.08);
}

.input::placeholder {
    color: var(--gray-300);
}

select.input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

textarea.input {
    resize: vertical;
}

.coverage__benefits {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.coverage__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 400;
}

.coverage__benefit svg {
    stroke: var(--teal);
    min-width: 20px;
}

/* --- CTA (Apple dark gradient) --- */
.cta {
    padding: 120px 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 161, 154, 0.12) 0%, transparent 65%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(177, 127, 74, 0.08) 0%, transparent 65%);
    border-radius: 50%;
}

.cta__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cta__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.45);
    max-width: 480px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.5;
}

/* --- Contact (Apple clean forms) --- */
.contact {
    padding: 120px 0;
    background: var(--gray-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.contact__form {
    padding: 44px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.contact__info-card {
    padding: 44px;
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 161, 154, 0.1);
    border-radius: var(--radius-sm);
    color: var(--teal);
}

.contact__info-item h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.contact__info-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* --- Footer (Apple minimal) --- */
.footer {
    padding: 56px 0 28px;
    background: var(--gray-900);
    color: rgba(255,255,255,0.45);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.footer__quality {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-top: 12px;
}

.footer__links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.8rem;
    transition: var(--transition-fast);
    font-weight: 400;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* --- Hero Phone --- */
.hero__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.hero__phone svg {
    color: var(--teal);
    min-width: 18px;
}

.hero__phone-number {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

.hero__phone-number:hover {
    color: var(--teal);
}

.hero__phone-sep {
    color: var(--gray-300);
}

.hero__phone-label {
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* --- ¿Por qué axen? Comparativa --- */
.why {
    padding: 120px 0;
    background: var(--gray-50);
}

.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why__col {
    border-radius: var(--radius-lg);
    padding: 44px 36px;
}

.why__col--other {
    background: var(--white);
    border: 0.5px solid var(--gray-200);
}

.why__col--axen {
    background: var(--gray-800);
    color: var(--white);
}

.why__col-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    min-height: 28px;
}

.why__col--other .why__col-header {
    color: var(--gray-400);
}

.logo-inline--why {
    height: 22px;
}

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

.why__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.why__list li svg {
    min-width: 18px;
    margin-top: 2px;
}

.why__list--other li {
    color: var(--gray-500);
}

.why__list--other li svg {
    stroke: #e5484d;
    opacity: 0.6;
}

.why__list--axen li {
    color: rgba(255,255,255,0.7);
}

.why__list--axen li svg {
    stroke: var(--teal);
}

.logo-inline--nav {
    height: 0.7em;
    vertical-align: baseline;
}

.logo-inline--title {
    height: 0.85em;
    vertical-align: baseline;
}

/* --- Testimonios --- */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--gray-50);
    border: 0.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

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

.testimonial-card__stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.01em;
}

.testimonial-card__location {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* --- Leaflet Map --- */
.coverage__map-leaflet {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border-radius: var(--radius-lg);
}

.coverage__map-leaflet .leaflet-control-zoom {
    border: none !important;
    box-shadow: var(--shadow) !important;
}

.coverage__map-leaflet .leaflet-control-zoom a {
    border: none !important;
    border-radius: var(--radius-sm) !important;
}

/* --- FAQ Accordion --- */
.faq {
    padding: 120px 0;
    background: var(--gray-50);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 0.5px solid var(--gray-200);
}

.faq__item:first-child {
    border-top: 0.5px solid var(--gray-200);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    text-align: left;
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
}

.faq__question:hover {
    color: var(--teal);
}

.faq__question svg {
    min-width: 20px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding-bottom: 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* --- CTA Actions --- */
.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--outline-white {
    background: transparent;
    color: rgba(255,255,255,0.7);
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.2);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.3);
}

/* --- WhatsApp FAB (mejorado con label) --- */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    height: 56px;
    padding: 0 24px 0 16px;
    background: #25d366;
    border-radius: 980px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.fab-whatsapp:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp__label {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* --- Animations (Apple smooth reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .features__grid {
        grid-template-columns: 1fr 1fr;
    }
    .about__grid {
        grid-template-columns: 1fr;
    }
    .about__image-block {
        min-height: 380px;
    }
    .coverage__content {
        grid-template-columns: 1fr;
    }
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .why__grid {
        grid-template-columns: 1fr;
    }
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(251,251,253,0.95);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
        z-index: 999;
    }
    .nav__menu.active {
        right: 0;
    }
    .nav__link {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
    }
    .nav__link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }
    .nav__toggle {
        display: flex;
        z-index: 1000;
    }
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hero__content {
        padding-top: 80px;
    }
    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    .hero__stat {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }
    .features__grid {
        grid-template-columns: 1fr;
    }
    .about__values {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .input-group {
        flex-direction: column;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
    }
    .hero__phone {
        flex-direction: column;
        gap: 4px;
    }
    .hero__phone-sep {
        display: none;
    }
    .fab-whatsapp__label {
        display: none;
    }
    .fab-whatsapp {
        width: 56px;
        padding: 0;
        border-radius: 50%;
    }
    .why__col {
        padding: 32px 24px;
    }
}
