@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=General+Sans:wght@400;500;600;700&display=swap');

:root {
    --brand-navy-dark: #031a2f;
    --brand-navy: #072f4f;
    --brand-navy-soft: #0c456e;
    --brand-orange: #ff8812;
    --brand-orange-light: #ffb464;
    --bg: #f7f8fc;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --text: var(--brand-navy-dark);
    --muted: #556079;
    --accent: var(--brand-orange);
    --accent-strong: var(--brand-orange-light);
    --border: #dde3ef;
    --radius-lg: 32px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 25px 70px rgba(7, 47, 79, 0.12);
    --max-width: 1320px;
    --footer-bg: #0b1016;
    --footer-card: #1f232c;
    --footer-border: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: 'General Sans', 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(7, 47, 79, 0.14), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(255, 136, 18, 0.14), transparent 50%),
                var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

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

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

.wrapper {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 1.25rem;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 27, 56, 0.04);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

nav {
    display: flex;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand img {
    width: 42px;
    height: 42px;
}

.brand span {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--text);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.25rem;
}

nav a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(3, 26, 47, 0.72);
    transition: color 0.2s ease;
}

nav a.active,
nav a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
}

.hero-intro {
    padding: 4rem 0 2rem;
    display: grid;
    gap: 2rem;
}

.hero-medium {
    padding: 3.5rem 0 2.5rem;
    gap: 2.5rem;
}

.hero-spotlight {
    padding: 0;
}

.hero-splash {
    background: radial-gradient(circle at 15% 20%, rgba(7, 47, 79, 0.4), transparent 45%),
                linear-gradient(120deg, #031a2f, #073a60 55%, #ff8812);
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 720px;
    padding: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-splash {
        height: auto;
        min-height: 540px;
        padding: 3rem 0;
        align-items: flex-start;
    }
}

.hero-splash::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.25), transparent 55%);
    pointer-events: none;
}

.hero-splash-inner {
    position: relative;
    display: grid;
    gap: 2.5rem;
    z-index: 1;
}

.hero-splash-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-slider h3 {
    font-size: clamp(1.05rem, 2vw, 1.6rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: #fff;
}

.hero-super {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-slider-shell {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-slider {
    position: relative;
    min-height: 240px;
}

.hero-slide {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: absolute;
    inset: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero-slider-dots {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.hero-slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-slider-dots button[aria-selected="true"] {
    background: #fff;
}

.hero-slider-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hero-slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    outline: none;
}

.hero-cta-row {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cta {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    box-shadow: 0 20px 40px rgba(255, 136, 18, 0.35);
}

.ghost-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.hero-splash-tags {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-splash-tags span {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-splash-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-stage {
    position: relative;
    width: min(360px, 90%);
    min-height: 340px;
    display: grid;
    align-items: stretch;
    justify-items: stretch;
}

.hero-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
    filter: blur(10px);
}

.hero-visual-card {
    position: relative;
    grid-area: 1 / 1;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: rgba(5, 9, 25, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    color: #fff;
    box-shadow: 0 35px 80px rgba(5, 9, 25, 0.45);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hero-visual-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-visual-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-visual-card ul li {
    padding-left: 1.3rem;
    position: relative;
}

.hero-visual-card ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.visual-price {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.hero-service-strip {
    background: var(--brand-navy);
    color: #fff;
    padding: 1.25rem 0;
    text-align: center;
}

.hero-service-strip p {
    margin: 0;
    font-size: 1.05rem;
}

.hero-service-strip strong {
    color: var(--brand-orange-light);
}

.hero-page-title {
    padding: 2.75rem 0 1.5rem;
    text-align: center;
}

.hero-page-title h1 {
    margin: 0;
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-navy-dark);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-page-title h1 {
        white-space: normal;
    }
}

.intro-video {
    padding: 2.5rem 0 0;
}

.video-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.video-copy h2 {
    margin: 0.35rem 0 0.5rem;
}

.video-copy p {
    margin: 0;
    color: var(--muted);
}

.video-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 0 25px 60px rgba(3, 26, 47, 0.15);
}

.video-frame video {
    width: 100%;
    display: block;
    border: none;
}

.service-card-section {
    padding: 2.5rem 0;
}

.service-card-section .section-heading {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.95rem;
    color: var(--muted);
}

.service-card-lead {
    margin: 0.45rem 0 1.75rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-content .lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 136, 18, 0.15);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.75rem;
}

.hero-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text);
}

.hero-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    border-radius: var(--radius-sm);
    padding: 0.95rem 1.5rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: var(--radius-sm);
    padding: 0.95rem 1.5rem;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
}

.ghost-btn.ghost-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.site-footer {
    margin-top: 4rem;
    background: var(--footer-bg);
    color: #fff;
}

.footer-top-bar {
    height: 14px;
    background: linear-gradient(120deg, #1e64ff, #329cff);
}

.site-footer .wrapper {
    padding: 3.5rem 1.25rem 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 260px)) minmax(280px, 1fr);
        gap: 2.5rem;
    }
}

.footer-column h3,
.footer-cta-card p:first-child {
    margin: 0 0 0.75rem;
    font-size: 1.4rem;
}

.footer-column p,
.footer-column a,
.footer-column li,
.footer-column dd {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-strong);
}

.footer-social {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--footer-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: #fff;
    color: var(--brand-navy-dark);
}

.footer-column dl {
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.footer-column dl div {
    display: grid;
    gap: 0.25rem;
}

.footer-column dt {
    font-weight: 600;
    color: #fff;
}

.footer-column dd {
    margin: 0;
}

.footer-column dd a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta-card {
    background: var(--footer-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--footer-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-cta-card {
        align-self: stretch;
        padding: 2.5rem;
    }
}

.footer-cta-card .ghost-btn {
    border-color: rgba(255, 255, 255, 0.8);
    align-self: center;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--footer-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-legal-links {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.9);
}

.hero-media {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-service-promo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-service-card {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(7, 47, 79, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 100%;
}

.hero-service-card[data-service="landing"] {
    background: linear-gradient(150deg, rgba(7, 47, 79, 0.2), rgba(3, 26, 47, 0.08));
}

.hero-service-card[data-service="sitio"] {
    background: linear-gradient(150deg, rgba(7, 47, 79, 0.14), rgba(255, 136, 18, 0.12));
}

.hero-service-card[data-service="tienda"] {
    background: linear-gradient(150deg, rgba(255, 136, 18, 0.22), rgba(255, 136, 18, 0.08));
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
    font-weight: 600;
}

.service-card-title {
    margin: 0;
    font-size: 1.35rem;
    color: var(--text);
}

.hero-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.hero-service-card ul li {
    padding-left: 1.3rem;
    position: relative;
    color: var(--muted);
}

.hero-service-card ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.hero-checklist {
    gap: 0.4rem;
}

.hero-meta {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.summary-stack {
    display: grid;
    gap: 1rem;
}

.summary-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(7, 47, 79, 0.07);
}

.summary-card.highlight {
    background: rgba(255, 136, 18, 0.15);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--accent-strong);
}

.link-arrow::after {
    content: '→';
    font-size: 1.1rem;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--muted);
}


.single-section {
    padding: 4rem 1.25rem;
}

.single-section .section {
    margin: 0;
}

.section {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    background: var(--surface-strong);
    box-shadow: var(--shadow-soft);
}

.section h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.section .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--accent);
}

.section .section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.16em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section .section-label {
    font-size: clamp(1.25rem, 2.6vw, 1.9rem);
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.section .lead {
    max-width: 680px;
    color: var(--muted);
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: rgba(7, 47, 79, 0.04);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    border: 1px solid rgba(7, 47, 79, 0.12);
    min-height: 220px;
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-detail-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.service-detail {
    display: grid;
    gap: 2rem;
    padding: 2.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.service-visual {
    min-height: 260px;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
}

.service-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.service-visual[data-theme="landing"] {
    background: linear-gradient(160deg, var(--brand-navy), var(--brand-navy-soft));
}

.service-visual[data-theme="sitio"] {
    background: linear-gradient(160deg, var(--brand-navy-soft), #031a2f);
}

.service-visual[data-theme="tienda"] {
    background: linear-gradient(160deg, #ff9a32, #c45300);
}

.visual-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.35rem 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.visual-screen,
.visual-layers,
.visual-grid {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    flex: 1;
    display: grid;
    place-items: center;
}

.visual-screen span {
    display: block;
    width: 70%;
}

.visual-screen .visual-top {
    height: 16px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.visual-screen .visual-cta {
    width: 55%;
    height: 38px;
    background: #25d366;
    border-radius: 999px;
    text-align: center;
    line-height: 38px;
    font-weight: 600;
}

.visual-screen .visual-form {
    height: 52px;
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    border: 2px dashed rgba(255, 255, 255, 0.4);
}

.visual-layers span {
    display: block;
    width: 80%;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 999px;
}

.visual-layers span + span {
    margin-top: 0.75rem;
}

.visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.visual-grid span {
    display: block;
    width: 100%;
    padding-top: 100%;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.35);
}

.service-content h3 {
    margin: 0.35rem 0 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.service-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: clamp(1.1rem, 2.4vw, 1.75rem);
    color: var(--brand-navy);
    margin: 0;
}

.service-features,
.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.service-features li,
.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted);
}

.service-features li::before,
.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.service-list {
    display: grid;
    gap: 1.5rem;
}

.service-list article {
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 15px 35px rgba(15, 27, 56, 0.08);
}

.plan-stack {
    display: grid;
    gap: 1.25rem;
}

.plan-tier {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 20px 45px rgba(15, 27, 56, 0.08);
}

.plan-tier.highlighted {
    border-color: rgba(255, 136, 18, 0.45);
    background: rgba(255, 136, 18, 0.1);
}

.plan-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.plan-tier ul li {
    padding-left: 1.4rem;
    position: relative;
    color: var(--muted);
}

.plan-tier ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.45rem;
    background: var(--accent);
}

.plan-grid {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.plan-layout {
    margin-top: 3rem;
}

.plan-list {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .plan-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.plan-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 30px 80px rgba(15, 27, 56, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card--compact {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 40px rgba(15, 27, 56, 0.08);
    gap: 1rem;
}

.plan-card--compact .plan-body,
.plan-card--compact .plan-price {
    padding: 0;
}

.plan-card--compact .plan-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.plan-card--compact .plan-body p {
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.plan-card--compact .plan-features {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.35rem;
}

.plan-card--compact .plan-price {
    margin-top: auto;
    padding-top: 1rem;
}

.plan-illustration {
    min-height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-illustration span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.45rem 1rem;
    border-radius: 999px;
}

.plan-card--compact .plan-illustration {
    margin: -1.75rem -1.75rem 1rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    min-height: 120px;
    padding: 1.25rem 1.5rem;
}

.plan-landing {
    background: linear-gradient(160deg, #0d3d63, #031a2f);
}

.plan-sitio {
    background: linear-gradient(160deg, #072f4f, #0c456e);
}

.plan-tienda {
    background: linear-gradient(160deg, #ff8812, #c45300);
}

.plan-body,
.plan-price {
    padding: 2rem;
}

.plan-body h3 {
    margin: 0.25rem 0 0.75rem;
}

.plan-price {
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.price-tag {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    margin: 0 0 0.5rem;
}

.price-tag span {
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.renew-note {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
}

 .plan-card.plan-highlight {
     background: linear-gradient(145deg, #f3f7ff, #cfdfff 70%, #b9d1ff);
     color: var(--brand-navy-dark);
     border: 1px solid rgba(11, 92, 241, 0.25);
     box-shadow: 0 40px 90px rgba(11, 35, 88, 0.2);
     grid-column: 1 / -1;
 }

 .plan-card.plan-highlight .plan-illustration {
     background: linear-gradient(145deg, #0b50d0, #00a3ff);
     margin: -1.75rem -1.75rem 1rem;
     border-radius: var(--radius-md) var(--radius-md) 0 0;
     min-height: 140px;
     width: auto;
     justify-content: flex-start;
     padding-left: 2.25rem;
     color: #fff;
 }

 .plan-card.plan-highlight .plan-illustration span {
     color: #fff;
     margin: 0 0 0.75rem;
 }

 .plan-card.plan-highlight .plan-illustration,
 .plan-card.plan-highlight .plan-body,
 .plan-card.plan-highlight .plan-price {
     color: inherit;
 }

 .plan-card.plan-highlight .plan-body p,
 .plan-card.plan-highlight .plan-body h3,
 .plan-card.plan-highlight .plan-price,
 .plan-card.plan-highlight .renew-note {
     color: rgba(3, 26, 47, 0.9);
 }

 .plan-card.plan-highlight .plan-price {
     border-top-color: rgba(11, 92, 241, 0.2);
 }

.plan-highlight .plan-features {
    gap: 0.75rem;
}

 .plan-card.plan-highlight .plan-features li {
     color: rgba(3, 26, 47, 0.8);
 }

 .plan-highlight .plan-features li::before {
     background: var(--brand-orange);
 }

 .plan-card.plan-highlight .cta {
     background: linear-gradient(120deg, #0b5cf1, #07b4ff);
     color: #fff;
     box-shadow: 0 20px 40px rgba(11, 92, 241, 0.35);
 }

 .plan-card.plan-highlight .cta:hover {
     transform: translateY(-3px);
 }

.card h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.card img {
    width: 56px;
    height: 56px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: #fdfefe;
}

.feature strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

.plan {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.plan h3 {
    margin: 0;
}

.plan .plan-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    color: var(--accent);
}

.price {
    font-size: 2.2rem;
    margin: 0.25rem 0 0;
    color: var(--text);
}

.price span {
    font-size: 1rem;
    color: var(--muted);
    margin-right: 0.35rem;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.plan ul li {
    padding-left: 1.4rem;
    position: relative;
    color: var(--muted);
}

.plan ul li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: 0;
    top: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

.tienda-virtual-highlight {
    margin-top: 2.5rem;
    background: radial-gradient(circle at 10% 20%, rgba(7, 47, 79, 0.3), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(255, 136, 18, 0.35), transparent 50%),
                #031121;
    color: #f4f8ff;
    border: none;
}

.tienda-virtual-highlight h2 {
    color: #fff;
}

.tienda-virtual-highlight .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.tienda-virtual-highlight .lead {
    color: rgba(255, 255, 255, 0.8);
}

.tienda-virtual-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tienda-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 1rem;
}

.tienda-feature-list li {
    padding-left: 1.4rem;
    position: relative;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.tienda-feature-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-strong);
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.tienda-feature-list span {
    font-weight: 600;
    color: #fff;
}

.tienda-virtual-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tienda-virtual-tags span {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tienda-plan-cta {
    align-self: flex-start;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(120deg, var(--brand-orange), var(--brand-orange-light));
    color: #031121;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(255, 136, 18, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tienda-plan-cta:hover,
.tienda-plan-cta:focus-visible {
    filter: brightness(1.05);
}

@media (max-width: 640px) {
    .tienda-plan-cta {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: center;
    }
}

.section h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section ul {
    padding-left: 1.25rem;
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.tienda-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.tienda-plan-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
}

.tienda-plan-card.featured {
    background: rgba(255, 136, 18, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 25px 60px rgba(255, 136, 18, 0.3);
}

.tienda-plan-card.owner {
    border-style: dashed;
}

.plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.tienda-plan-card h3 {
    margin: 0;
}

.tienda-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.85);
}

.tienda-plan-card ul li {
    padding-left: 1.3rem;
    position: relative;
}

.tienda-plan-card ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 0;
    top: 0.45rem;
}

.plan-price-tag {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.plan-price-tag span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.plan-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.thanks-body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 15% 20%, rgba(7, 47, 79, 0.35), transparent 55%),
                radial-gradient(circle at 85% 0%, rgba(255, 136, 18, 0.35), transparent 60%),
                #030b18;
    color: #f4f8ff;
    font-family: 'General Sans', 'Space Grotesk', system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.thanks-main {
    width: min(640px, 100%);
    text-align: center;
}

.thanks-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 80px rgba(3, 11, 24, 0.45);
    backdrop-filter: blur(14px);
}

.thanks-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.thanks-icon .checkmark {
    width: 32px;
    height: 16px;
    border-left: 4px solid #30d158;
    border-bottom: 4px solid #30d158;
    transform: rotate(-45deg);
    display: inline-block;
}

.thanks-card h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #fff;
}

.thanks-lead {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 2rem;
    max-width: 460px;
}

.thanks-btn {
    width: 100%;
    justify-content: center;
}

.thanks-note {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .thanks-card {
        padding: 2.25rem 1.5rem;
    }
}

.tienda-plan-card .cta,
.tienda-plan-card .ghost-btn {
    align-self: flex-start;
}

.tienda-plan-card .ghost-btn {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.pricing-note {
    margin-top: 1.5rem;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-grid form {
    display: grid;
    gap: 1rem;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(15, 27, 56, 0.08);
}

.contact-methods {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.contact-method {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 27, 56, 0.08);
}

.contact-method h3 {
    margin: 0.2rem 0 0.5rem;
}
.whatsapp-floating {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #0b2b14;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(6, 76, 34, 0.35);
    z-index: 20;
}

.whatsapp-floating i {
    font-size: 1.15rem;
}

input,
textarea,
button,
select {
    font: inherit;
}

input,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #f8fbff;
    color: var(--text);
}

.contact-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    background: rgba(7, 47, 79, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    background: #25d366;
    color: #fff;
    font-weight: 600;
}

#contacto .badge {
    border-color: rgba(255, 136, 18, 0.4);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (min-width: 768px) {
    .hero-intro {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
    }
}

@media (min-width: 768px) {
    .service-detail {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        align-items: center;
    }

    .service-detail:nth-child(even) .service-visual {
        order: 2;
    }

    .service-detail:nth-child(even) .service-content {
        order: 1;
    }

    .hero-splash-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        align-items: stretch;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        align-content: flex-start;
    }

    .plan-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-cta-card {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .hero-splash {
        padding: 3rem 0;
    }

    .hero-service-promo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 1.25rem;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 1rem 1.25rem;
        width: min(260px, 85vw);
        flex-direction: column;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-row .cta,
    .hero-cta-row .ghost-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-splash-tags {
        flex-direction: column;
        align-items: flex-start;
    }
}
