:root {
    --primary: #0369a1;
    --primary-dark: #0c4a6e;
    --primary-light: #0ea5e9;
    --accent: #06b6d4;
    --accent-hover: #0891b2;
    --call: #22c55e;
    --call-hover: #16a34a;
    --dark: #0f172a;
    --bg: #f0f9ff;
    --white: #ffffff;
    --text: #1e293b;
    --border: #e2e8f0;
    --shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(3, 105, 161, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: 999px; font-weight: 700; text-decoration: none;
    transition: all 0.25s; border: none; cursor: pointer; font-size: 16px;
}
.btn-primary { background: linear-gradient(135deg, var(--primary-light), var(--primary)); color: #fff; box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14, 165, 233, 0.45); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); width: 100%; margin-top: 10px; text-align: center; }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-call { background: linear-gradient(135deg, var(--call), var(--call-hover)); color: #fff; }
.btn-call:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-call--lg { font-size: 18px; padding: 18px 32px; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { filter: brightness(1.08); }
.btn-sm { padding: 10px 20px; font-size: 14px; width: 100%; margin-top: 12px; }
.btn-pulse { animation: pulse-call 2s ease-in-out infinite; }
@keyframes pulse-call {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
    50% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
}

.text-gradient { background: linear-gradient(90deg, #67e8f9, #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.disclaimer-bar {
    background: linear-gradient(90deg, #0c4a6e, #075985);
    color: #e0f2fe; text-align: center; padding: 10px 16px; font-size: 11px; line-height: 1.5;
    border-bottom: 2px solid var(--accent);
}

header { background: var(--white); padding: 12px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary-dark); font-weight: 800; font-size: 18px; }
.logo-icon { color: var(--primary-light); display: flex; }
.nav-links { display: flex; gap: 22px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
    background: linear-gradient(135deg, var(--call), var(--call-hover));
    color: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 800;
    text-decoration: none; font-size: 13px; display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35); white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); }
.hamburger { display: none; font-size: 26px; cursor: pointer; color: var(--primary); background: none; border: none; }

.hero--isp {
    position: relative; color: #fff; padding: 72px 0 88px; overflow: hidden;
    background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 45%, #0284c7 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(34, 197, 94, 0.2) 0%, transparent 40%),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px);
    pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-badge {
    display: inline-block; background: rgba(34, 197, 94, 0.25); border: 1px solid rgba(34, 197, 94, 0.5);
    padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-sub { font-size: 17px; color: #bae6fd; margin-bottom: 20px; max-width: 560px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.hero-trust-item { font-size: 13px; background: rgba(255,255,255,0.1); padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.hero-legal-note { font-size: 11px; color: #7dd3fc; max-width: 600px; line-height: 1.5; }

.hero-cta-box {
    position: relative; background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25); border-radius: 24px; padding: 32px; text-align: center;
}
.hero-cta-box__glow {
    position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(6,182,212,0.5), transparent 70%); border-radius: 50%;
}
.hero-cta-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: #67e8f9; font-weight: 700; }
.hero-cta-box h2 { font-size: 22px; margin: 8px 0 12px; }
.hero-cta-box p { color: #e0f2fe; font-size: 14px; margin-bottom: 20px; }
.hero-cta-box .btn-primary { width: 100%; margin-bottom: 0; }

.isp-features { padding: 56px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card { padding: 28px; border-radius: 16px; border: 1px solid var(--border); background: var(--bg); transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #64748b; }

.section-title { text-align: center; font-size: 32px; color: var(--dark); margin-bottom: 12px; font-weight: 800; }
.section-subtitle { text-align: center; color: #64748b; margin-bottom: 40px; max-width: 680px; margin-left: auto; margin-right: auto; font-size: 15px; }

.packages-strip { background: var(--white); padding: 70px 0; }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
.package-card {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9); border-radius: 20px; padding: 28px 24px;
    text-align: center; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.package-card.featured {
    background: linear-gradient(180deg, #ecfeff, #cffafe); border-color: var(--accent);
    box-shadow: var(--shadow-lg); transform: scale(1.02);
}
.package-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--primary); letter-spacing: 0.06em; }
.package-card h3 { font-size: 32px; color: var(--dark); margin: 8px 0 4px; }
.package-card .speed { font-size: 14px; color: #64748b; margin-bottom: 8px; }
.package-card .note { font-size: 12px; color: #94a3b8; margin-bottom: 4px; }
.price-disclaimer {
    text-align: center; font-size: 13px; color: #64748b; margin-top: 28px; max-width: 800px;
    margin-left: auto; margin-right: auto; padding: 16px; background: #f8fafc; border-radius: 12px;
}
.price-disclaimer a { color: var(--primary); font-weight: 700; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card {
    background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 200px; object-fit: contain; padding: 24px; background: #fefefe; border-bottom: 1px solid var(--border); }
.card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.card-desc { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.card-specs { list-style: none; margin-bottom: 20px; }
.card-specs li { font-size: 13px; margin-bottom: 6px; padding-left: 18px; position: relative; }
.card-specs li::before { content: '✓'; position: absolute; left: 0; color: var(--call); font-weight: 700; }
.card-price { margin-top: auto; background: var(--bg); padding: 16px; border-radius: 14px; text-align: center; }
.card-price strong { display: block; font-size: 20px; color: var(--primary); }
.card .btn { width: 100%; margin-top: 16px; text-align: center; }

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff; padding: 72px 0; text-align: center;
}
.cta-section h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cta-section p { color: #bae6fd; margin-bottom: 28px; font-size: 18px; }

footer { background: var(--dark); color: #94a3b8; padding: 60px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-phone { display: block; font-size: 22px; font-weight: 800; color: var(--call); text-decoration: none; margin-bottom: 8px; }
.footer-wa { display: block; color: #25d366; font-weight: 700; margin-bottom: 8px; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 12px; line-height: 1.7; }
.footer-disclaimer-box {
    background: rgba(0,0,0,0.2); border-radius: 12px; padding: 16px; margin-bottom: 20px;
    text-align: left; max-width: 900px; margin-left: auto; margin-right: auto;
}
.footer-disclaimer-box p { margin-bottom: 8px; font-size: 12px; }
.footer-disclaimer-box p:last-child { margin-bottom: 0; }
.footer-company { margin-bottom: 16px; }
.footer-company a { color: #7dd3fc; }

.fixed-call-widget { position: fixed; bottom: 24px; right: 24px; z-index: 99990; }
.call-widget-btn {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, var(--call), var(--call-hover));
    color: #fff; padding: 16px 22px; border-radius: 999px; text-decoration: none; font-weight: 800;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.45); transition: transform 0.2s;
}
.call-widget-btn:hover { transform: scale(1.05); }
.call-widget-text { font-size: 12px; line-height: 1.3; }
.call-widget-text strong { font-size: 15px; display: block; }

.cookie-banner {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: #1e293b; color: #fff; padding: 16px 20px; z-index: 100001;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.cookie-banner .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.cookie-banner a { color: #7dd3fc; }
.cookie-banner__actions { display: flex; gap: 8px; }
.cookie-btn { padding: 10px 20px; border-radius: 8px; font-weight: 700; cursor: pointer; border: none; font-size: 14px; }
.cookie-btn--primary { background: var(--call); color: #fff; }
.cookie-btn--ghost { background: transparent; color: #94a3b8; border: 1px solid #475569; }

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff; padding: 90px 0 56px; text-align: center;
}
.page-hero h1 { font-size: 36px; margin-bottom: 8px; }
.page-hero p { color: #bae6fd; }
.anchor-section { scroll-margin-top: 100px; }

/* Call modal – desktop + mobile */
body.call-enter-modal-is-open .fixed-call-widget,
body.call-enter-modal-is-open .cookie-banner,
body.call-enter-modal-is-open header,
body.call-enter-modal-is-open .disclaimer-bar {
    visibility: hidden !important;
    pointer-events: none !important;
}

#call-enter-modal[hidden] { display: none !important; }
#call-enter-modal {
    position: fixed; inset: 0; z-index: 2147483646;
    display: flex; align-items: center; justify-content: center;
    padding: 16px; font-family: inherit;
}
.call-enter-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
}
.call-enter-modal__sheet {
    position: relative; z-index: 1; width: 100%; max-width: 440px;
    max-height: min(92vh, 720px); background: #fff; border-radius: 24px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    animation: modal-in 0.35s ease;
}
@keyframes modal-in {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.call-enter-modal__hero-visual {
    position: relative; height: 108px;
    background: linear-gradient(135deg, #0c4a6e, #0284c7);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.call-enter-modal__fiber {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(103, 232, 249, 0.4) 8px, rgba(103, 232, 249, 0.4) 10px);
    animation: fiber-move 3s linear infinite;
}
@keyframes fiber-move { from { transform: translateX(0); } to { transform: translateX(20px); } }

.call-enter-modal__stat--hero {
    position: relative; z-index: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 8px 16px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 140px;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-wait-counter {
    margin-bottom: 2px;
    gap: 4px;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-wait-num {
    font-size: 1.5rem;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-wait-unit {
    font-size: 0.75rem;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-title {
    font-size: 11px;
    margin: 0 0 1px;
    line-height: 1.2;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-sub {
    font-size: 9px;
    line-height: 1.2;
}
.call-enter-modal__hook {
    display: flex; gap: 12px; align-items: flex-start; text-align: left;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 2px solid #fdba74; border-radius: 14px; padding: 14px 16px;
    margin-bottom: 16px; animation: hook-pulse 2.5s ease-in-out infinite;
}
@keyframes hook-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}
.call-enter-modal__hook-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.call-enter-modal__hook strong { display: block; color: #9a3412; font-size: 15px; margin-bottom: 4px; }
.call-enter-modal__hook p { margin: 0; font-size: 13px; color: #c2410c; line-height: 1.45; }
.call-enter-modal__hook p strong { display: inline; color: #9a3412; }

.call-enter-modal__inner {
    flex: 1; overflow-y: auto; padding: 24px 24px 80px; text-align: center;
}
.call-enter-modal__h1 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.25; }
.call-enter-modal__lead { font-size: 0.95rem; color: #64748b; margin-bottom: 1.25rem; line-height: 1.5; }
.call-enter-modal__lead strong { color: var(--primary); }

.call-enter-modal__tel {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    width: 100%; padding: 16px 20px;
    background: linear-gradient(135deg, var(--call), var(--call-hover));
    color: #fff !important; text-decoration: none; border-radius: 16px;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4); margin-bottom: 16px;
}
.call-enter-modal__tel-label { font-size: 12px; font-weight: 600; opacity: 0.9; }
.call-enter-modal__tel-num { font-size: 1.35rem; font-weight: 800; letter-spacing: 0.02em; }
.call-enter-modal__tel-svg { margin-bottom: 4px; }

.call-enter-modal__benefits {
    list-style: none; text-align: left; margin: 0 0 14px; padding: 14px 16px;
    background: #f0f9ff; border-radius: 12px; border: 1px solid #bae6fd;
}
.call-enter-modal__benefits li {
    font-size: 13px; color: var(--primary-dark); margin-bottom: 6px; padding-left: 22px; position: relative;
}
.call-enter-modal__benefits li::before {
    content: '✓'; position: absolute; left: 0; color: var(--call); font-weight: 800;
}
.call-enter-modal__benefits li:last-child { margin-bottom: 0; }

.call-enter-modal__stat {
    background: #f8fafc; border-radius: 14px; padding: 14px; border: 1px solid var(--border);
}
.call-enter-modal__hint--legal { font-size: 10px; color: #94a3b8; line-height: 1.45; margin-bottom: 12px; }
.call-enter-modal__stat-wait-counter {
    display: flex; align-items: baseline; justify-content: center; gap: 6px;
    margin-bottom: 8px;
}
.call-enter-modal__stat-wait-num { font-size: 2.25rem; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; line-height: 1; }
.call-enter-modal__stat-wait-unit { font-size: 1rem; font-weight: 700; color: var(--dark); }
.call-enter-modal__stat-title { font-weight: 800; font-size: 14px; color: var(--dark); margin: 0 0 2px; }
.call-enter-modal__stat-sub { font-size: 12px; color: #94a3b8; margin: 0; }

.call-enter-modal__x {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    width: 36px; height: 36px; border: 0; background: rgba(255,255,255,0.9);
    color: #64748b; cursor: pointer; border-radius: 50%; font-size: 1.25rem;
    display: flex; align-items: center; justify-content: center;
}
.call-enter-modal__x:hover { background: #fff; color: var(--dark); }

.call-enter-modal__dock {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; background: linear-gradient(135deg, var(--call), var(--call-hover));
    color: #fff !important; text-decoration: none; font-weight: 800; font-size: 15px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-sub, .hero-legal-note { margin-left: auto; margin-right: auto; }
    .hero-trust, .hero-actions { justify-content: center; }
    .hero-cta-box { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        flex-direction: column; gap: 16px;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .nav-cta { display: none; }
    .section-title { font-size: 26px; }
    .package-card.featured { transform: none; }
    #call-enter-modal { padding: 0; align-items: stretch; }
    .call-enter-modal__sheet {
        max-width: none; max-height: none; height: 100%; border-radius: 0;
    }
    .call-enter-modal__inner { padding-bottom: 72px; }
}
