:root {
    --bg: #f8faff;
    --surface: rgba(10, 40, 100, 0.06);
    --text: #1a2e4a;
    --muted: #4a6080;
    --heading: #0d1f3c;
    --card-text: #1a2e4a;
    --card-muted: #5a7090;
    --brand: #1a4fcc;
    --brand-dark: #0f3399;
    --accent: #00c896;
    --accent-light: #e6faf5;
    --paper: #ffffff;
    --paper-soft: #f0f5ff;
    --ink: #0d1f3c;
    --line: rgba(26, 79, 204, 0.18);
    --shadow: 0 20px 60px rgba(10, 30, 80, 0.12);
    --shadow-sm: 0 8px 24px rgba(10, 30, 80, 0.08);
    --radius-card: 20px;
    --radius-btn: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    color: var(--heading);
    letter-spacing: -0.01em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.navbar-brand {
    font-family: 'Lato', sans-serif;
    color: var(--heading);
}
a { color: inherit; text-decoration: none; }

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.orb-1 { width: 360px; height: 360px; background: #5cbcff; top: -120px; right: -80px; }
.orb-2 { width: 280px; height: 280px; background: #8fd0ff; bottom: 8%; left: -100px; }

.site-header, main, .site-footer, .chat-toggle, .chat-widget { position: relative; z-index: 2; }
.site-header {
    background: linear-gradient(160deg, #0a1a3d 0%, #0f2d6b 100%);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(8, 52, 103, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 250ms ease;
}
.site-footer {
    background: #050d1e;
}
.navbar { padding: 0.85rem 0; }
.navbar-brand { font-size: 1.45rem; font-weight: 900; letter-spacing: 0.04em; }
.brand-lockup { display: inline-flex; align-items: center; gap: 0.85rem; }
.brand-lockup img { width: 288px; max-width: 100%; height: auto; }
.brand-lockup span { display: none; }
.navbar-nav { gap: 0.25rem; }
.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.86rem;
    border-radius: 999px;
    padding: 0.52rem 0.88rem !important;
    position: relative;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.88rem;
    right: 0.88rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}
.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.nav-link.active::after {
    transform: scaleX(1);
}

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

.social-links-header {
    margin-left: 0.4rem;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-links-header .social-link {
    background: rgba(255, 255, 255, 0.14);
    color: #e7f2ff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.social-links-header .social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.social-links-header.desktop {
    flex-shrink: 0;
}

.social-links-header.mobile {
    margin-left: 0;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(143, 203, 255, 0.35);
}

.btn-brand {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #1a4fcc, #2563eb);
    border-radius: var(--radius-btn);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.85rem 2rem;
    box-shadow: 0 8px 24px rgba(26, 79, 204, 0.35);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(26, 79, 204, 0.45);
    color: #ffffff;
    background: linear-gradient(135deg, #0f3399, #1a4fcc);
}

.btn-accent {
    background: #00c896;
    color: #0a1a2e;
    border: 0;
    border-radius: var(--radius-btn);
    font-weight: 800;
    padding: 0.85rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 200, 150, 0.3);
    transition: transform 200ms ease, background 200ms ease;
}

.btn-accent:hover { transform: translateY(-2px); background: #00b588; color: #0a1a2e; }

.btn-accent-nav {
    background: var(--accent);
    color: #0a1a2e !important;
    border-radius: var(--radius-btn);
    font-weight: 800;
    font-size: 0.86rem;
    padding: 0.5rem 1.1rem !important;
    letter-spacing: 0;
    text-transform: none !important;
    transition: background 180ms ease, transform 180ms ease;
    margin-left: 0.5rem;
}

.btn-accent-nav:hover {
    background: #00b588;
    transform: translateY(-1px);
}

.hero-actions .btn-outline-light {
    color: #0d4f95;
    border: 2px solid rgba(26, 79, 204, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    border-radius: var(--radius-btn);
    box-shadow: 0 10px 24px rgba(10, 64, 126, 0.15);
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus {
    color: #ffffff;
    border-color: #1a4fcc;
    background: #1a4fcc;
}
.hero-section {
    padding: 4rem 0 5rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 110, 210, 0.12);
}
.hero-light { padding-top: 3rem; }
.hero-intro { max-width: 920px; margin-top: 0; }
.hero-layout { position: relative; z-index: 1; }

.hero-banner-panel {
    position: relative;
    min-height: clamp(360px, 46vw, 540px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-banner-panel::before {
    content: "";
    position: absolute;
    inset: 10% 2% -4% -8%;
    border-radius: 56% 44% 52% 48% / 52% 42% 58% 48%;
    background: rgba(177, 204, 238, 0.46);
    z-index: 1;
}

.hero-banner-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 52% 48% 50% 50% / 50% 44% 56% 50%;
    background: linear-gradient(120deg, #1d57cf 0%, #0f72db 55%, #16c7e8 100%);
    box-shadow: 0 24px 48px rgba(8, 63, 126, 0.22);
    z-index: 2;
}

.hero-banner-panel img {
    width: min(88%, 560px);
    height: auto;
    max-height: clamp(280px, 36vw, 430px);
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 16px 28px rgba(6, 52, 109, 0.18));
}

.hero-banner-art {
    mix-blend-mode: normal;
}

.hero-badge, .section-heading span, .plan-name {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(16, 110, 210, 0.08);
    border: 1px solid rgba(16, 110, 210, 0.2);
    font-size: 0.9rem;
    color: #0f5ba8;
    font-weight: 800;
}

.step-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 36px;
    margin-bottom: 1rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: rgba(16, 110, 210, 0.1);
    border: 1px solid rgba(16, 110, 210, 0.18);
    color: #0f5ba8;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-section h1 {
    margin-top: 1.25rem;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.08;
    max-width: 14ch;
    font-weight: 500;
}

.hero-copy, .logo-strip p, .seo-copy, .benefit-list p, .service-card p, .plan-card li, .contact-section p, .accordion-body {
    color: var(--muted);
    font-size: 1.04rem;
    font-family: 'Lato', sans-serif;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

.hero-metrics div, .service-card, .plan-card, .seo-grid article, .lead-form, .media-video, .accordion-item, .showcase-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
    border: 1px solid rgba(16, 110, 210, 0.22);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-metrics div {
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.hero-metrics div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #42a8ff, #0f72db);
}
.hero-metrics strong, .benefit-list strong, .seo-grid strong { display: block; margin-bottom: 0.35rem; font-size: 1.15rem; color: var(--heading); }
.hero-metrics span { color: var(--card-muted); }

.hero-carousel,
.hero-media {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-media {
    position: relative;
    min-height: 760px;
    border: 1px solid rgba(16, 110, 210, 0.16);
    background: #ffffff;
}

.hero-video-frame iframe,
.hero-media img,
.hero-media video {
    width: 100%;
    height: 760px;
    border: 0;
    object-fit: cover;
    object-position: center top;
}

.hero-media-wide {
    width: 100%;
    min-height: clamp(480px, 78vh, 860px);
}

.hero-media-wide video {
    height: clamp(480px, 78vh, 860px);
}

.hero-embed-frame {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-embed-frame iframe {
    width: 100%;
    height: clamp(680px, 92vh, 1220px);
    border: 0;
    background: #ffffff;
    display: block;
}

.hero-video-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 28, 52, 0.16) 0%, rgba(7, 28, 52, 0.58) 100%);
    pointer-events: none;
}

.hero-overlay-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 420px;
    padding: 1.4rem 1.5rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.94), rgba(20, 20, 20, 0.92));
    border: 1px solid rgba(92, 188, 255, 0.32);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(4, 20, 33, 0.34);
}

.hero-overlay-card p,
.hero-overlay-card span {
    color: #f2f9ff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-overlay-card p {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7dccff;
    margin-bottom: 0.45rem;
}

.hero-overlay-card strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
}
.hero-overlay-card.right { left: auto; right: 24px; }
.hero-overlay-card.small { max-width: 340px; }

.image-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    transform: translateY(-24px);
}

.quick-links a,
.text-link {
    color: #ffffff;
    font-weight: 700;
}

.quick-links a {
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 110, 210, 0.2);
    color: #0e4f96;
    box-shadow: 0 12px 28px rgba(13, 58, 112, 0.16);
}

.service-card-light,
.lead-form-light,
.consult-card {
    background: rgba(255, 255, 255, 0.98);
}

.section-soft {
    background: #ffffff;
    border-top: 1px solid rgba(16, 110, 210, 0.1);
    border-bottom: 1px solid rgba(16, 110, 210, 0.1);
}

.stacked-media {
    display: grid;
    gap: 1rem;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mini-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.interactive-showcase {
    display: grid;
    gap: 1rem;
}

.showcase-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.showcase-tile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
    border: 1px solid rgba(16, 110, 210, 0.23);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.showcase-tile.large img {
    height: 340px;
}

.showcase-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.showcase-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 110, 210, 0.36);
    box-shadow: 0 18px 34px rgba(10, 64, 126, 0.2);
}

.payment-brand-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
    border: 1px solid rgba(16, 110, 210, 0.2);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1.2rem;
    text-align: center;
}

.payment-brand-panel img {
    width: min(100%, 440px);
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.payment-copy-large {
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    line-height: 1.45;
    color: var(--heading);
    font-weight: 500;
}

.icon-highlight-section {
    padding-top: 1.25rem;
}

.icon-highlight-card {
    height: 100%;
    padding: 1.5rem 1.3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.98));
    border: 1px solid rgba(16, 110, 210, 0.2);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(10, 64, 126, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.icon-highlight-card img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 0.8rem;
}

.icon-highlight-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    color: var(--heading);
}

.icon-highlight-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.icon-highlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 110, 210, 0.3);
    box-shadow: 0 22px 44px rgba(10, 64, 126, 0.2);
}

.home-page .icon-highlight-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 220ms ease, color 220ms ease;
}

.home-page .icon-highlight-card:hover {
    border-color: rgba(26, 79, 204, 0.3);
    box-shadow: 0 22px 44px rgba(10, 64, 126, 0.18);
}

.ecommerce-cluster {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    max-width: 980px;
    margin: 0 auto;
    padding: 1.2rem 0.4rem;
}

.ecommerce-cluster::before {
    content: "";
    position: absolute;
    inset: 3% 5%;
    border-radius: 40% 60% 52% 48% / 42% 38% 62% 58%;
    background: linear-gradient(135deg, rgba(16, 110, 210, 0.12), rgba(143, 203, 255, 0.18));
    z-index: 0;
}

.ecom-focus-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 110, 210, 0.2);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(10, 64, 126, 0.14);
    padding: 1.4rem 1.3rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ecom-focus-card:nth-child(1),
.ecom-focus-card:nth-child(3) {
    transform: translateY(12px);
}

.ecom-focus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 110, 210, 0.32);
    box-shadow: 0 22px 42px rgba(10, 64, 126, 0.2);
}

.ecom-icon-wrap {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(16, 110, 210, 0.08), rgba(143, 203, 255, 0.2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.ecom-icon-wrap img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.ecom-focus-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.5rem;
    color: var(--heading);
}

.ecom-focus-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.consult-card p {
    color: var(--card-muted);
    min-height: 72px;
}

.page-hero {
    padding: 4rem 0 1rem;
}

.page-hero h1 {
    margin: 1rem 0;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244,249,255,0.96));
    border: 1px solid rgba(16,110,210,0.16);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin: 1rem 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.footer-grid strong {
    display: block;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-grid a,
.footer-grid p,
.footer-grid li,
.footer-grid ul {
    display: block;
    color: rgba(215, 227, 238, 0.85);
    margin-bottom: 0.7rem;
}

.footer-grid li {
    margin-bottom: 0.5rem;
}

.social-links-footer {
    margin-top: 0.7rem;
}

.social-links-footer .social-link {
    background: rgba(255, 255, 255, 0.14);
    color: #e7f2ff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.social-links-footer .social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.site-footer .navbar-brand {
    color: #ffffff;
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer span {
    color: rgba(215, 227, 238, 0.85);
}

.site-footer strong,
.site-footer .navbar-brand {
    color: #ffffff;
}

.hero-showcase { position: relative; min-height: 520px; }
.showcase-card { position: absolute; overflow: hidden; }
.card-primary { top: 0; left: 0; width: 70%; padding: 2rem; }
.card-primary p, .card-primary span { color: var(--muted); }
.card-primary strong { display: block; margin: 0.6rem 0; font-size: 1.7rem; }
.card-secondary { right: 0; top: 3.5rem; width: 56%; height: 320px; }
.card-secondary img, .media-main { width: 100%; height: 100%; object-fit: cover; }
.card-floating { left: 12%; bottom: 2rem; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; }
.card-floating i, .service-card i { color: var(--brand); font-size: 1.7rem; }

.logo-strip {
    padding: 0 0 1.25rem;
    border-top: 0;
    border-bottom: 0;
    background: transparent;
}

.section-space { padding: 5.75rem 0; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2 { margin-top: 1rem; font-size: clamp(2rem, 5vw, 3.35rem); }

.service-card, .plan-card, .seo-grid article { height: 100%; padding: 1.75rem; }
.service-card h3, .plan-card h3 { margin: 1rem 0 0.75rem; }
.service-card h3, .plan-card h3, .section-heading h2, .page-hero h1, .cta-panel h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.service-icon-asset {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: inline-block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.98));
    border: 1px solid rgba(16, 110, 210, 0.18);
    border-radius: 14px;
    padding: 0.55rem;
    box-shadow: 0 10px 22px rgba(10, 64, 126, 0.13);
}
.service-card,
.plan-card,
.seo-grid article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.plan-card:hover,
.seo-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 110, 210, 0.34);
    box-shadow: 0 22px 44px rgba(10, 64, 126, 0.22);
}

.home-page .service-card,
.home-page .plan-card,
.home-page .seo-grid article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 220ms ease, color 220ms ease;
}

.home-page .service-card:hover,
.home-page .plan-card:hover,
.home-page .seo-grid article:hover {
    border-color: rgba(26, 79, 204, 0.35);
}

.service-card::after,
.plan-card::after,
.seo-grid article::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 250ms ease;
    transform-origin: left;
}

.service-card:hover::after,
.plan-card:hover::after,
.seo-grid article:hover::after {
    transform: scaleX(1);
}
.service-card h3,
.plan-card h3,
.seo-grid article h3,
.accordion-button,
.cta-panel h2,
.page-hero h1,
.section-heading h2 {
    color: var(--heading);
    font-family: 'Inter', sans-serif;
}

.service-card p,
.plan-card p,
.seo-grid article p,
.benefit-list p,
.accordion-body,
.lead-form,
.lead-form label {
    color: var(--card-text);
}

.service-card,
.plan-card,
.seo-grid article,
.lead-form,
.accordion-item {
    backdrop-filter: blur(6px);
}

.text-link {
    color: #0f72db;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.plan-card .btn-outline-dark,
.consult-card .btn-outline-dark {
    color: #0f5ba8;
    border-color: rgba(16, 110, 210, 0.35);
    font-weight: 700;
}

.plan-card .btn-outline-dark:hover,
.consult-card .btn-outline-dark:hover {
    color: #ffffff;
    background: #0f72db;
    border-color: #0f72db;
}
.section-dark { background: #ffffff; }

.media-grid { display: grid; gap: 1.5rem; }
.media-main { min-height: 380px; border-radius: 28px; box-shadow: var(--shadow); }
.media-video { padding: 0.75rem; }
.media-video iframe { width: 100%; min-height: 280px; border: 0; border-radius: 20px; }

.benefit-list { display: grid; gap: 1.25rem; }
.benefit-list div { padding-bottom: 1rem; border-bottom: 1px solid rgba(16, 110, 210, 0.12); }
.plan-card ul { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 0.85rem; }
.plan-card li { display: flex; align-items: center; gap: 0.65rem; }
.plan-card i { color: var(--accent); }

.section-seo { background: #ffffff; }
.seo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.accordion-item { overflow: hidden; margin-bottom: 1rem; }
.accordion-button, .accordion-body { background: transparent; color: var(--heading); }
.accordion-button:not(.collapsed) { color: var(--heading); background: rgba(16, 110, 210, 0.06); box-shadow: none; }

.contact-data { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-data a, .contact-data span { display: inline-flex; align-items: center; gap: 0.75rem; color: #0f5ba8; }
.lead-form { padding: 2rem; }
.lead-form label { display: block; margin-bottom: 0.45rem; font-weight: 700; }
.contact-conversion .container,
.contact-conversion .row,
.contact-panel-copy,
.contact-points,
.process-grid {
    position: relative;
    z-index: 1;
}

.contact-panel-copy,
.contact-points div {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
    border: 1px solid rgba(16, 110, 210, 0.15);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-panel-copy {
    padding: 2rem;
}

.contact-panel-copy h2 {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--heading);
}

.contact-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-points div {
    padding: 1.15rem 1.2rem;
}

.contact-points p {
    margin: 0.35rem 0 0;
    color: var(--card-muted);
}

.form-control, .form-select {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(16, 110, 210, 0.2);
    background: rgba(255, 255, 255, 0.98);
    color: #113a65;
}

.form-control:focus, .form-select:focus {
    border-color: rgba(16, 110, 210, 0.65);
    box-shadow: 0 0 0 0.25rem rgba(16, 110, 210, 0.18);
    background: #ffffff;
    color: #113a65;
}

.form-select option { color: #111; }
.form-status { margin-top: 1rem; min-height: 1.5rem; }
.lead-form.is-success {
    border-color: rgba(84, 214, 126, 0.45);
}

.lead-form.is-error {
    border-color: rgba(255, 128, 128, 0.42);
}

.lead-form.is-success .form-status {
    color: #93f5a6;
}

.lead-form.is-error .form-status {
    color: #ff9b9b;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.site-footer { padding: 1.5rem 0 3rem; border-top: 1px solid var(--line); }

.container {
    position: relative;
}

main > section {
    position: relative;
}

main > section:not(.hero-section):not(.logo-strip)::before {
    content: "";
    position: absolute;
    inset: 1.4rem 1rem;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(16, 110, 210, 0.1);
    z-index: 0;
}

main > section .container {
    z-index: 1;
}

.chat-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 18px 44px rgba(30, 202, 211, 0.32);
}

.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: min(380px, calc(100vw - 24px));
    border-radius: 24px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #ffffff;
    color: #123f6e;
    box-shadow: var(--shadow);
    display: none;
}

.chat-widget.is-open { display: block; }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.2rem; background: linear-gradient(135deg, var(--brand), #3ea7ff); color: #ffffff; }
.chat-header span { display: block; font-size: 0.85rem; opacity: 0.92; }
.chat-header button, .chat-form button { border: 0; background: transparent; color: inherit; }
.chat-messages { max-height: 320px; overflow-y: auto; padding: 1rem; display: grid; gap: 0.75rem; }
.chat-message { max-width: 85%; padding: 0.8rem 0.95rem; border-radius: 16px; font-size: 0.95rem; }
.chat-message.bot { background: #f3f8ff; color: #123f6e; border: 1px solid rgba(16,110,210,0.12); }
.chat-message.user { margin-left: auto; background: #0f72db; color: #ffffff; }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 0.75rem; padding: 1rem; border-top: 1px solid rgba(23, 32, 51, 0.08); }
.chat-form input { border: 1px solid rgba(23, 32, 51, 0.12); border-radius: 12px; min-height: 48px; padding: 0.75rem 0.9rem; }
.chat-form button { width: 48px; border-radius: 12px; background: var(--brand); color: #ffffff; }

@media (max-width: 991px) {
    .hero-showcase { min-height: 460px; }
    .card-primary { width: 82%; }
    .card-secondary { width: 62%; }
    .cta-panel,
    .footer-grid { grid-template-columns: 1fr; }
    .brand-lockup img { width: 252px; }
    .quick-links { transform: none; }
    .navbar-nav { gap: 0.15rem; }
    #mainNav {
        margin-top: 0.8rem;
        padding: 0.7rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(5, 45, 96, 0.48);
    }
    .nav-link {
        padding: 0.62rem 0.9rem !important;
    }
    .social-links-header {
        margin: 0.65rem 0 0.35rem;
    }
}

@media (max-width: 767px) {
    .hero-section { padding-top: 2rem; }
    .hero-banner-panel { min-height: 280px; }
    .hero-banner-panel::before { inset: 8% 0 -5% -3%; }
    .hero-banner-panel::after { border-radius: 26px; }
    .hero-banner-panel img {
        width: min(92%, 420px);
        max-height: 220px;
    }
    .hero-metrics, .seo-grid { grid-template-columns: 1fr; }
    .hero-showcase { min-height: 420px; }
    .card-primary, .card-secondary, .card-floating { position: static; width: 100%; margin-bottom: 1rem; }
    .card-secondary { height: 260px; }
    .hero-media,
    .hero-video-frame iframe,
    .hero-media iframe,
    .hero-media img,
    .hero-media video { min-height: 340px; height: 340px; }
    .hero-overlay-card { left: 14px; right: 14px; bottom: 14px; max-width: none; }
    .quick-links { justify-content: stretch; }
    .quick-links a { width: 100%; text-align: center; }
    .ecommerce-cluster { grid-template-columns: 1fr; gap: 1rem; }
    .ecommerce-cluster::before { inset: 1% 0; border-radius: 26px; }
    .ecom-focus-card:nth-child(1),
    .ecom-focus-card:nth-child(3) { transform: none; }
    .showcase-row { grid-template-columns: 1fr; }
    .showcase-tile.large img,
    .showcase-tile img { height: 200px; }
    .brand-lockup img { width: 226px; }
    main > section:not(.hero-section):not(.logo-strip)::before { inset: 0.8rem 0.4rem; border-radius: 24px; }
    .chat-widget { right: 12px; bottom: 88px; width: calc(100vw - 24px); }
    .chat-toggle { right: 12px; bottom: 18px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .biz-type-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-floating-badges { display: none; }
}

/* ============================================================
   TRUST STRIP — logos medios de pago
   ============================================================ */
.trust-strip {
    background: var(--paper-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 300ms, opacity 300ms;
}

.trust-logos:hover { filter: grayscale(0%); opacity: 1; }

.trust-logos img { height: 32px; object-fit: contain; }

.trust-logo-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.04em;
    padding: 0.4rem 0.9rem;
    border: 2px solid currentColor;
    border-radius: 8px;
    white-space: nowrap;
}

/* ============================================================
   BIZ-TYPE CARDS — sección "¿Para quién es WebCommerce?"
   ============================================================ */
.biz-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.biz-type-card {
    padding: 2rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--line);
    background: var(--paper);
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.biz-type-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.15);
}

.biz-type-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0a1a2e;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.biz-type-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.text-link-accent { color: var(--accent); font-weight: 800; }
.text-link-accent:hover { text-decoration: underline; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 2rem;
    margin: 0;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-card footer strong { display: block; font-weight: 800; color: var(--heading); }
.testimonial-card footer span { font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: linear-gradient(135deg, #0a1a3d 0%, #0f2d6b 100%);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ============================================================
   HERO — image panel con floating badges
   ============================================================ */
.hero-img-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-panel img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(10, 30, 80, 0.2);
    display: block;
}

.hero-img-panel::before {
    content: "";
    position: absolute;
    inset: -12px -12px -12px -12px;
    border-radius: 30px;
    border: 3px solid var(--accent);
    opacity: 0.35;
    pointer-events: none;
}

.hero-floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--heading);
    box-shadow: 0 8px 24px rgba(10, 30, 80, 0.12);
    white-space: nowrap;
}

.floating-badge.top-right { top: 16px; right: -10px; }
.floating-badge.bottom-left { bottom: 48px; left: -10px; }
.floating-badge.center { top: 46%; right: -20px; transform: translateY(-50%); }

/* ============================================================
   STICKY HEADER + ANIMACIONES SCROLL
   ============================================================ */
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(5, 13, 30, 0.4);
    backdrop-filter: blur(20px);
}

.anim-hidden { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease, transform 500ms ease; }
.anim-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   FOOTER — separador y copyright
   ============================================================ */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2rem;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55) !important;
    display: block;
}

.footer-why strong { display: block; color: #ffffff !important; margin-bottom: 0.75rem; }
.footer-why li { color: rgba(215, 227, 238, 0.85) !important; font-size: 0.93rem; margin-bottom: 0.5rem; display: list-item !important; }

/* ============================================================
   MEDIOS DE PAGO — estilos específicos
   ============================================================ */
.payment-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
    background: var(--paper-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
}

.payment-trust-badges span i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Tags de plataforma */
.payment-platform-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.webpay-tag { background: #e8f0fe; color: #1a4fcc; }
.flow-tag   { background: #fff3e0; color: #e65100; }
.khipu-tag  { background: #e8f5e9; color: #2e7d32; }
.mp-tag     { background: #e3f2fd; color: #0277bd; }

/* Imagen de plataforma principal */
.payment-platform-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.payment-platform-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow);
}

.payment-platform-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 26, 61, 0.92);
    color: #ffffff;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-platform-badge i { color: var(--accent); }
.flow-badge i { color: #ffb300; }

.payment-platform-info h3 {
    margin-bottom: 0.75rem;
}

/* Lista de features de cada pasarela */
.payment-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
    display: grid;
    gap: 0.65rem;
}

.payment-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.97rem;
    color: var(--card-text);
}

.payment-feature-list li i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.payment-feature-list.small li { font-size: 0.9rem; }

/* Cards alternativas (Khipu / MercadoPago) */
.payment-alt-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--paper);
    padding: 1.75rem;
    height: 100%;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.payment-alt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.payment-alt-img {
    width: 100px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Checkout steps */
.checkout-steps {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.checkout-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkout-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #2563eb);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(26, 79, 204, 0.3);
}

.checkout-step strong { display: block; color: var(--heading); margin-bottom: 0.25rem; }
.checkout-step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Stats de beneficios */
.payment-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   ECOMMERCE ADMINISTRABLE — estilos específicos
   ============================================================ */

/* Cards de señales "¿es para ti?" */
.admin-signal-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--paper);
    padding: 1.75rem;
    height: 100%;
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.admin-signal-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.12);
}

.admin-signal-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0a1a2e;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-signal-icon {
    font-size: 2.25rem;
    margin-bottom: 0.85rem;
    line-height: 1;
}

.admin-signal-card h3 { margin-bottom: 0.5rem; }
.admin-signal-card p  { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Lista de features administrables */
.admin-features-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.admin-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}

.admin-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admin-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26,79,204,0.1), rgba(37,99,235,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    color: var(--brand);
}

.admin-feature-item strong {
    display: block;
    color: var(--heading);
    margin-bottom: 0.2rem;
    font-size: 0.97rem;
}

.admin-feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Stack de imágenes admin */
.admin-img-stack {
    position: relative;
    padding-bottom: 60px;
}

.admin-img-main {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: block;
}

.admin-img-card {
    position: absolute;
    bottom: 0;
    right: -16px;
    width: 220px;
    border-radius: 14px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: var(--shadow);
}

.admin-img-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .admin-img-card  { display: none; }
    .admin-img-main  { height: 240px; }
    .admin-img-stack { padding-bottom: 0; }
}

/* ============================================================
   PÁGINAS WEB — estilos específicos
   ============================================================ */

/* Cards de tipo de sitio */
.webtype-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--paper);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, box-shadow 200ms ease;
    position: relative;
}

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

.webtype-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.12);
}

.webtype-badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: var(--accent);
    color: #0a1a2e;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.webtype-img-wrap {
    position: relative;
    overflow: hidden;
}

.webtype-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 350ms ease;
}

.webtype-card:hover .webtype-img-wrap img {
    transform: scale(1.04);
}

.webtype-tag {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(10, 26, 61, 0.85);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.webtype-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.webtype-body h3 { margin: 0 0 0.5rem; }
.webtype-body p { color: var(--muted); font-size: 0.96rem; flex: 1; }

/* Lo que incluye — grid de ítems */
.webincludes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

@media (max-width: 576px) {
    .webincludes-grid { grid-template-columns: 1fr; }
}

.webinclude-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.webinclude-item > i {
    font-size: 1.35rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.webinclude-item strong {
    display: block;
    color: var(--heading);
    font-size: 0.97rem;
    margin-bottom: 0.2rem;
}

.webinclude-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Stack de imágenes */
.webinclude-img-stack {
    position: relative;
}

.webinclude-img-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: block;
}

.webinclude-img-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.webinclude-img-small {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 4px solid #ffffff;
    display: block;
}

@media (max-width: 767px) {
    .webinclude-img-overlay { display: none; }
    .webinclude-img-main { height: 260px; }
}

/* ============================================================
   ECOMMERCE — hero visual con imagen
   ============================================================ */
.page-hero-visual {
    padding: 4rem 0 2rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.page-hero-visual h1 {
    margin: 1rem 0;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.page-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: block;
}

/* Comparativa tienda estándar vs administrable */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 767px) {
    .compare-grid { grid-template-columns: 1fr; }
}

.compare-col {
    border-radius: var(--radius-card);
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 1.75rem;
}

.compare-col.featured-col {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.12);
}

.compare-col-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.compare-col-label.std { background: var(--paper-soft); color: var(--muted); }
.compare-col-label.adm { background: var(--accent-light); color: #00856a; }

.compare-col ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.65rem; }
.compare-col li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.96rem; color: var(--card-text); }
.compare-col li .ci { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.compare-col.featured-col li .ci { color: var(--accent); }
.compare-col:not(.featured-col) li .ci { color: var(--brand); }

/* Proceso 4 pasos ecommerce */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--line);
    background: var(--paper);
    position: relative;
}

.process-step-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--brand), #2563eb);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(26, 79, 204, 0.3);
}
