/* ============================================================
   AKCEM CA — Design System
   Fibra óptica premium: azul profundo, gradientes, glassmorphism
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Color primitives */
    --ak-blue-900: #051733;
    --ak-blue-800: #082a55;
    --ak-blue-700: #0a3a78;
    --ak-blue-600: #0b5ed7;
    --ak-blue-500: #1d6ff2;
    --ak-blue-400: #4d8ef7;
    --ak-blue-300: #8ab6fb;
    --ak-cyan-400: #22d3ee;
    --ak-ink: #0b1220;
    --ak-gray-700: #3d4a5c;
    --ak-gray-500: #64748b;
    --ak-gray-300: #cbd5e1;
    --ak-gray-100: #f1f5f9;
    --ak-white: #ffffff;
    --ak-whatsapp: #25d366;

    /* Semantic tokens */
    --ak-bg: var(--ak-white);
    --ak-bg-soft: #f6f9fd;
    --ak-text: var(--ak-ink);
    --ak-text-muted: var(--ak-gray-500);
    --ak-primary: var(--ak-blue-600);
    --ak-primary-hover: var(--ak-blue-700);
    --ak-gradient-hero: linear-gradient(135deg, var(--ak-blue-900) 0%, var(--ak-blue-800) 45%, var(--ak-blue-600) 100%);
    --ak-gradient-accent: linear-gradient(90deg, var(--ak-blue-500), var(--ak-cyan-400));
    --ak-gradient-cta: linear-gradient(135deg, var(--ak-blue-700), var(--ak-blue-500));

    /* Elevation */
    --ak-shadow-sm: 0 2px 8px rgba(5, 23, 51, .06);
    --ak-shadow-md: 0 8px 30px rgba(5, 23, 51, .10);
    --ak-shadow-lg: 0 20px 60px rgba(5, 23, 51, .16);
    --ak-shadow-primary: 0 10px 30px rgba(11, 94, 215, .35);

    /* Shape & spacing */
    --ak-radius: 1rem;
    --ak-radius-lg: 1.5rem;
    --ak-section-pad: clamp(4rem, 8vw, 7rem);

    /* Typography */
    --ak-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--ak-font);
    color: var(--ak-text);
    background: var(--ak-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -.02em; }

a { color: var(--ak-primary); text-decoration: none; }
a:hover { color: var(--ak-primary-hover); }

.skip-link {
    position: absolute; top: 0; left: 0; z-index: 2000;
    background: var(--ak-primary); color: #fff; padding: .75rem 1.25rem;
    border-radius: 0 0 .5rem 0;
}

section { padding-block: var(--ak-section-pad); }

/* ---------- Botones ---------- */
.ak-btn-primary {
    background: var(--ak-gradient-cta);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: .8rem 1.75rem;
    font-weight: 600;
    box-shadow: var(--ak-shadow-primary);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.ak-btn-primary:hover, .ak-btn-primary:focus {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 14px 38px rgba(11, 94, 215, .45);
}

.ak-btn-outline {
    border: 2px solid var(--ak-primary);
    color: var(--ak-primary);
    border-radius: 999px;
    padding: .7rem 1.6rem;
    font-weight: 600;
    background: transparent;
    transition: all .25s ease;
}
.ak-btn-outline:hover, .ak-btn-outline:focus {
    background: var(--ak-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--ak-shadow-primary);
}

.ak-btn-light {
    background: #fff;
    color: var(--ak-blue-700);
    border-radius: 999px;
    padding: .8rem 1.75rem;
    font-weight: 700;
    border: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}
.ak-btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.25); color: var(--ak-blue-800); }

.ak-btn-ghost {
    border: 2px solid rgba(255,255,255,.55);
    color: #fff;
    border-radius: 999px;
    padding: .7rem 1.6rem;
    font-weight: 600;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(6px);
    transition: all .25s ease;
}
.ak-btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; border-color: #fff; transform: translateY(-2px); }

.ak-btn-whatsapp {
    background: var(--ak-whatsapp);
    color: #fff;
    border-radius: 999px;
    padding: .8rem 1.75rem;
    font-weight: 600;
    border: 0;
    transition: all .25s ease;
}
.ak-btn-whatsapp:hover { background: #1fb959; color: #fff; transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.ak-navbar {
    padding-block: .9rem;
    background: rgba(5, 23, 51, .55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.ak-navbar.scrolled {
    background: rgba(5, 23, 51, .92);
    padding-block: .5rem;
    box-shadow: var(--ak-shadow-md);
}

.ak-brand { display: inline-flex; align-items: center; gap: .65rem; }
.ak-brand-logo { display: block; }
.ak-brand-text {
    display: flex; flex-direction: column; line-height: 1.05;
    color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: .01em;
}
.ak-brand-text small {
    font-size: .62rem; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: var(--ak-cyan-400);
}

.ak-nav-link {
    color: rgba(255,255,255,.82) !important;
    font-weight: 500;
    padding-inline: .9rem !important;
    position: relative;
    transition: color .2s ease;
}
.ak-nav-link::after {
    content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem;
    height: 2px; background: var(--ak-gradient-accent);
    transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
    border-radius: 2px;
}
.ak-nav-link:hover, .ak-nav-link.active { color: #fff !important; }
.ak-nav-link:hover::after, .ak-nav-link.active::after { transform: scaleX(1); }

.ak-btn-nav { padding: .55rem 1.3rem; font-size: .92rem; }

.ak-toggler { border-color: rgba(255,255,255,.35); }
.ak-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ak-offcanvas { background: var(--ak-blue-900); color: #fff; }
.ak-offcanvas .btn-close { filter: invert(1); }
.ak-offcanvas .ak-nav-link { padding-block: .65rem !important; font-size: 1.05rem; }

/* ---------- Hero home ---------- */
.ak-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--ak-gradient-hero);
    color: #fff;
    padding-top: 7rem;
    overflow: hidden;
}
.ak-hero-glow {
    position: absolute; inset: auto -20% -40% auto;
    width: 60vw; height: 60vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,.22), transparent 60%);
    pointer-events: none;
}
.ak-hero::before {
    content: ""; position: absolute; inset: 0;
    background: url("/assets/img/grid.svg") center/cover no-repeat;
    opacity: .35; pointer-events: none;
}

.ak-hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    color: var(--ak-cyan-400);
    padding: .45rem 1.1rem; border-radius: 999px;
    font-size: .85rem; font-weight: 600; letter-spacing: .06em;
}

.ak-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    margin-block: 1.25rem;
}
.ak-hero-title .ak-grad {
    background: var(--ak-gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ak-hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: rgba(255,255,255,.78);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.ak-hero-visual { position: relative; }
.ak-hero-visual img { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.35)); }

.ak-hero-chip {
    position: absolute;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: .8rem 1.1rem;
    display: flex; align-items: center; gap: .7rem;
    color: #fff; font-weight: 600; font-size: .9rem;
    box-shadow: var(--ak-shadow-lg);
    animation: ak-float 5s ease-in-out infinite;
}
.ak-hero-chip i { color: var(--ak-cyan-400); font-size: 1.3rem; }
.ak-chip-1 { top: 8%; left: -4%; }
.ak-chip-2 { bottom: 14%; right: -2%; animation-delay: 2.2s; }

@keyframes ak-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* ---------- Stats ---------- */
.ak-stats-band {
    background: var(--ak-bg-soft);
    border-block: 1px solid #e6eef8;
    padding-block: 3.5rem;
}
.ak-stat { text-align: center; }
.ak-stat-icon {
    width: 58px; height: 58px; margin: 0 auto .8rem;
    display: grid; place-items: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(34,211,238,.12));
    color: var(--ak-primary); font-size: 1.4rem;
}
.ak-stat-num { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--ak-blue-800); }
.ak-stat-label { color: var(--ak-text-muted); font-weight: 500; }

/* ---------- Section headings ---------- */
.ak-section-heading { max-width: 46rem; margin-bottom: 3.25rem; }
.ak-eyebrow {
    display: inline-block;
    background: linear-gradient(90deg, rgba(11,94,215,.10), rgba(34,211,238,.14));
    color: var(--ak-primary);
    font-size: .8rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1rem;
}
.ak-section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
.ak-section-desc { color: var(--ak-text-muted); font-size: 1.08rem; margin-top: .75rem; }

/* ---------- Cards de servicio ---------- */
.ak-service-card {
    background: #fff;
    border: 1px solid #e8eef7;
    border-radius: var(--ak-radius-lg);
    padding: 2rem 1.6rem;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ak-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ak-shadow-lg);
    border-color: rgba(11,94,215,.35);
}
.ak-service-icon {
    width: 60px; height: 60px;
    display: grid; place-items: center;
    border-radius: 1.1rem;
    background: var(--ak-gradient-cta);
    color: #fff; font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--ak-shadow-primary);
}
.ak-service-title { font-size: 1.15rem; margin-bottom: .6rem; }
.ak-service-text { color: var(--ak-text-muted); font-size: .95rem; flex-grow: 1; }
.ak-service-link {
    font-weight: 600; font-size: .95rem;
    display: inline-flex; align-items: center; gap: .45rem;
}
.ak-service-link i { transition: transform .25s ease; }
.ak-service-link:hover i { transform: translateX(5px); }

/* ---------- Beneficios ---------- */
.ak-benefit {
    display: flex; gap: 1.1rem; align-items: flex-start;
    padding: 1.4rem;
    border-radius: var(--ak-radius);
    transition: background .25s ease;
}
.ak-benefit:hover { background: var(--ak-bg-soft); }
.ak-benefit-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: .9rem;
    background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(34,211,238,.14));
    color: var(--ak-primary); font-size: 1.25rem;
}
.ak-benefit h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.ak-benefit p { color: var(--ak-text-muted); font-size: .95rem; margin: 0; }

/* ---------- Cards de plan ---------- */
.ak-plan-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8eef7;
    border-radius: var(--ak-radius-lg);
    padding: 2.2rem 1.8rem;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ak-plan-card:hover { transform: translateY(-8px); box-shadow: var(--ak-shadow-lg); }

.ak-plan-featured {
    background: var(--ak-gradient-hero);
    color: #fff;
    border: 0;
    box-shadow: var(--ak-shadow-lg);
}
.ak-plan-featured .ak-plan-ideal,
.ak-plan-featured .ak-plan-benefits li { color: rgba(255,255,255,.85); }
.ak-plan-featured .ak-plan-speed-num { color: #fff; }

.ak-plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--ak-gradient-accent);
    color: var(--ak-blue-900);
    font-size: .78rem; font-weight: 700;
    padding: .35rem 1rem; border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(34,211,238,.4);
}

.ak-plan-name { font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; opacity: .85; }
.ak-plan-speed { display: flex; align-items: baseline; gap: .4rem; margin-block: .4rem; }
.ak-plan-speed-num {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800; line-height: 1;
    background: var(--ak-gradient-accent);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ak-plan-speed-unit { font-size: 1.1rem; font-weight: 700; color: var(--ak-text-muted); }
.ak-plan-featured .ak-plan-speed-unit { color: rgba(255,255,255,.8); }

.ak-plan-ideal { color: var(--ak-text-muted); font-size: .92rem; min-height: 2.6em; }

.ak-plan-price { margin-block: .6rem 1.2rem; }
.ak-plan-currency { font-size: 1rem; font-weight: 700; vertical-align: top; }
.ak-plan-amount { font-size: 2rem; font-weight: 800; }
.ak-plan-period { color: var(--ak-text-muted); font-size: .95rem; }
.ak-plan-featured .ak-plan-period { color: rgba(255,255,255,.75); }
.ak-plan-quote { font-size: 1.5rem; }

.ak-plan-benefits { list-style: none; padding: 0; margin: 0 0 1.6rem; flex-grow: 1; }
.ak-plan-benefits li {
    display: flex; gap: .6rem; align-items: flex-start;
    font-size: .92rem; color: var(--ak-gray-700);
    padding-block: .38rem;
}
.ak-plan-benefits i { color: var(--ak-cyan-400); margin-top: .2rem; }

/* ---------- Proceso de instalación ---------- */
.ak-step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.ak-step-num {
    width: 64px; height: 64px;
    margin: 0 auto 1.1rem;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--ak-gradient-cta);
    color: #fff; font-size: 1.5rem; font-weight: 800;
    box-shadow: var(--ak-shadow-primary);
}
.ak-step h3 { font-size: 1.1rem; }
.ak-step p { color: var(--ak-text-muted); font-size: .95rem; }
.ak-step-connector { position: relative; }
@media (min-width: 992px) {
    .ak-step-connector::after {
        content: ""; position: absolute; top: 32px; left: calc(50% + 48px); right: calc(-50% + 48px);
        border-top: 2px dashed var(--ak-gray-300);
    }
    .ak-step-connector:last-child::after { display: none; }
}

/* ---------- Testimonios ---------- */
.ak-testimonial {
    background: #fff;
    border: 1px solid #e8eef7;
    border-radius: var(--ak-radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex; flex-direction: column;
    box-shadow: var(--ak-shadow-sm);
}
.ak-testimonial-stars { color: #fbbf24; margin-bottom: .9rem; }
.ak-testimonial-text { color: var(--ak-gray-700); flex-grow: 1; font-size: .98rem; }
.ak-testimonial-author { display: flex; align-items: center; gap: .85rem; margin-top: 1.25rem; }
.ak-testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--ak-gradient-cta); color: #fff; font-weight: 700;
}
.ak-testimonial-name { font-weight: 700; font-size: .98rem; }
.ak-testimonial-role { color: var(--ak-text-muted); font-size: .85rem; }

.ak-swiper { padding-bottom: 3.2rem !important; }
.ak-swiper .swiper-pagination-bullet { background: var(--ak-gray-300); opacity: 1; }
.ak-swiper .swiper-pagination-bullet-active { background: var(--ak-primary); width: 26px; border-radius: 6px; }

/* ---------- Acordeón FAQ ---------- */
.ak-accordion-item {
    border: 1px solid #e8eef7 !important;
    border-radius: var(--ak-radius) !important;
    margin-bottom: .9rem;
    overflow: hidden;
    box-shadow: var(--ak-shadow-sm);
}
.ak-accordion .accordion-button {
    font-weight: 600;
    padding: 1.15rem 1.4rem;
    background: #fff;
    color: var(--ak-text);
}
.ak-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(11,94,215,.06), rgba(34,211,238,.06));
    color: var(--ak-primary);
    box-shadow: none;
}
.ak-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(11,94,215,.25); }
.ak-accordion .accordion-body { color: var(--ak-gray-700); }

/* ---------- Cobertura ---------- */
.ak-zone {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff;
    border: 1px solid #e8eef7;
    border-radius: var(--ak-radius);
    padding: 1rem 1.3rem;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease;
}
.ak-zone:hover { transform: translateY(-4px); box-shadow: var(--ak-shadow-md); }
.ak-zone-badge { font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 999px; }
.ak-zone-activa      { background: rgba(34,197,94,.12); color: #16a34a; }
.ak-zone-expansion   { background: rgba(251,191,36,.15); color: #b45309; }
.ak-zone-planificada { background: rgba(100,116,139,.12); color: var(--ak-gray-500); }

/* ---------- Formularios ---------- */
.ak-form-card {
    background: #fff;
    border: 1px solid #e8eef7;
    border-radius: var(--ak-radius-lg);
    padding: clamp(1.5rem, 3vw, 2.75rem);
    box-shadow: var(--ak-shadow-md);
}
.ak-form-card .form-label { font-weight: 600; font-size: .92rem; }
.ak-form-card .form-control, .ak-form-card .form-select {
    border-radius: .75rem;
    padding: .75rem 1rem;
    border-color: #dbe4f0;
    font-size: .97rem;
}
.ak-form-card .form-control:focus, .ak-form-card .form-select:focus {
    border-color: var(--ak-primary);
    box-shadow: 0 0 0 3px rgba(11,94,215,.15);
}
/* Honeypot invisible para humanos, presente para bots */
.ak-hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

.ak-contact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid #eef2f8;
}
.ak-contact-item:last-child { border-bottom: 0; }
.ak-contact-item i {
    width: 44px; height: 44px; flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: .8rem;
    background: linear-gradient(135deg, rgba(11,94,215,.10), rgba(34,211,238,.14));
    color: var(--ak-primary);
}
.ak-contact-item strong { display: block; font-size: .95rem; }
.ak-contact-item a, .ak-contact-item span { color: var(--ak-text-muted); font-size: .93rem; }

.ak-map-frame {
    border: 0; width: 100%; height: 100%; min-height: 380px;
    border-radius: var(--ak-radius-lg);
    box-shadow: var(--ak-shadow-md);
}

/* ---------- Page hero (páginas internas) ---------- */
.ak-page-hero {
    position: relative;
    background: var(--ak-gradient-hero);
    color: #fff;
    padding: 9.5rem 0 4.5rem;
    overflow: hidden;
}
.ak-page-hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
.ak-page-hero-subtitle { color: rgba(255,255,255,.78); font-size: 1.12rem; max-width: 42rem; margin: 0; }

.ak-breadcrumb-wrap { margin-bottom: 1rem; }
.ak-breadcrumb { background: transparent; margin: 0; padding: 0; font-size: .88rem; }
.ak-breadcrumb .breadcrumb-item a { color: var(--ak-cyan-400); }
.ak-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.75); }
.ak-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }

/* ---------- CTA banner ---------- */
.ak-cta-banner { padding-block: 0 var(--ak-section-pad); }
.ak-cta-inner {
    background: var(--ak-gradient-hero);
    border-radius: var(--ak-radius-lg);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ak-shadow-lg);
}
.ak-cta-inner::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(34,211,238,.25), transparent 55%);
    pointer-events: none;
}
.ak-cta-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; position: relative; }
.ak-cta-text { color: rgba(255,255,255,.8); max-width: 36rem; margin: .75rem auto 1.75rem; position: relative; }
.ak-cta-inner > * { position: relative; }

/* ---------- Footer ---------- */
.ak-footer {
    background: var(--ak-blue-900);
    color: rgba(255,255,255,.75);
    padding: 4.5rem 0 1.75rem;
}
.ak-footer-about { font-size: .95rem; margin-block: 1rem 1.25rem; max-width: 22rem; }
.ak-footer-heading { color: #fff; font-weight: 700; margin-bottom: 1.1rem; letter-spacing: .04em; }
.ak-footer-links { list-style: none; padding: 0; margin: 0; }
.ak-footer-links li { margin-bottom: .55rem; }
.ak-footer-links a { color: rgba(255,255,255,.7); font-size: .94rem; transition: color .2s, padding-left .2s; }
.ak-footer-links a:hover { color: var(--ak-cyan-400); padding-left: 4px; }

.ak-footer-contact { list-style: none; padding: 0; margin: 0; }
.ak-footer-contact li { display: flex; gap: .8rem; margin-bottom: .9rem; font-size: .93rem; align-items: flex-start; }
.ak-footer-contact i { color: var(--ak-cyan-400); margin-top: .25rem; }
.ak-footer-contact a { color: rgba(255,255,255,.75); }
.ak-footer-contact a:hover { color: var(--ak-cyan-400); }

.ak-footer-social { display: flex; gap: .7rem; }
.ak-footer-social a {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: .8rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff; font-size: 1.05rem;
    transition: all .25s ease;
}
.ak-footer-social a:hover { background: var(--ak-gradient-accent); color: var(--ak-blue-900); transform: translateY(-3px); }

.ak-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    display: flex; flex-wrap: wrap; gap: .5rem;
    justify-content: space-between;
    font-size: .85rem;
}
.ak-footer-bottom a { color: var(--ak-cyan-400); }

/* ---------- WhatsApp flotante ---------- */
.ak-whatsapp-float {
    position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 1040;
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--ak-whatsapp);
    color: #fff; font-size: 1.8rem;
    box-shadow: 0 10px 28px rgba(37,211,102,.45);
    transition: transform .25s ease;
}
.ak-whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ---------- Banner de cookies ---------- */
.ak-cookie-banner {
    position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1050;
    max-width: 720px; margin-inline: auto;
}
.ak-cookie-inner {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #e2e9f4;
    border-radius: var(--ak-radius-lg);
    box-shadow: var(--ak-shadow-lg);
    padding: 1.4rem 1.6rem;
    display: flex; flex-wrap: wrap; gap: 1rem;
    align-items: center; justify-content: space-between;
}
.ak-cookie-text { flex: 1 1 22rem; font-size: .9rem; color: var(--ak-gray-700); }
.ak-cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.ak-cookie-config-btn { color: var(--ak-text-muted); text-decoration: underline; }
.ak-cookie-prefs { padding-top: 1rem; border-top: 1px solid #e8eef7; margin-top: .5rem; font-size: .9rem; }
.ak-cookie-prefs .form-check { margin-bottom: .5rem; }

/* ---------- Página legal / prosa ---------- */
.ak-prose { max-width: 52rem; }
.ak-prose h2 { font-size: 1.45rem; margin-top: 2.5rem; margin-bottom: .9rem; }
.ak-prose h3 { font-size: 1.15rem; margin-top: 1.75rem; }
.ak-prose p, .ak-prose li { color: var(--ak-gray-700); line-height: 1.75; }
.ak-prose ul { padding-left: 1.2rem; }
.ak-prose-meta { color: var(--ak-text-muted); font-size: .9rem; }

/* ---------- Blog ---------- */
.ak-post-card {
    background: #fff;
    border: 1px solid #e8eef7;
    border-radius: var(--ak-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ak-post-card:hover { transform: translateY(-6px); box-shadow: var(--ak-shadow-lg); }
.ak-post-cover {
    aspect-ratio: 16 / 9;
    background: var(--ak-gradient-hero);
    display: grid; place-items: center;
    color: var(--ak-cyan-400); font-size: 2.4rem;
}
.ak-post-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.ak-post-tag { font-size: .75rem; font-weight: 700; color: var(--ak-primary); text-transform: uppercase; letter-spacing: .08em; }
.ak-post-title { font-size: 1.15rem; margin-block: .5rem; }
.ak-post-excerpt { color: var(--ak-text-muted); font-size: .93rem; flex-grow: 1; }
.ak-post-date { color: var(--ak-text-muted); font-size: .83rem; }

/* ---------- Página 404 ---------- */
.ak-404 {
    min-height: 100vh;
    display: flex; align-items: center;
    background: var(--ak-gradient-hero);
    color: #fff; text-align: center;
    padding-top: 6rem;
}
.ak-404-code {
    font-size: clamp(6rem, 18vw, 11rem);
    font-weight: 800; line-height: 1;
    background: var(--ak-gradient-accent);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Utilidades ---------- */
.ak-soft { background: var(--ak-bg-soft); }
.ak-check-list { list-style: none; padding: 0; }
.ak-check-list li { display: flex; gap: .6rem; padding-block: .35rem; color: var(--ak-gray-700); }
.ak-check-list i { color: var(--ak-cyan-400); margin-top: .25rem; }

/* ---------- Accesibilidad: reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- Responsive fino ---------- */
@media (max-width: 991.98px) {
    .ak-hero { min-height: auto; padding-block: 8rem 4rem; }
    .ak-hero-chip { display: none; }
}
@media (max-width: 575.98px) {
    .ak-cookie-inner { padding: 1.1rem 1.2rem; }
    .ak-whatsapp-float { width: 52px; height: 52px; font-size: 1.6rem; }
}
