
:root {
    --lime: #8BE000;
    --lime-2: #B8FF2F;
    --lime-dark: #6BB500;
    --black: #050A0F;
    --ink: #101820;
    --muted: #667085;
    --line: #E6EAF0;
    --soft: #F5F7FA;
    --white: #FFFFFF;
    --shadow: 0 24px 70px rgba(5, 10, 15, 0.12);
    --shadow-soft: 0 18px 45px rgba(5, 10, 15, 0.08);
    --radius: 26px;
    --radius-lg: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(139,224,0,.12), transparent 24rem),
        radial-gradient(circle at 90% 0%, rgba(139,224,0,.08), transparent 22rem),
        linear-gradient(rgba(5,10,15,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5,10,15,.025) 1px, transparent 1px);
    background-size: auto, auto, 58px 58px, 58px 58px;
    z-index: -1;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, 92%); margin: 0 auto; }
.narrow { max-width: 820px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.74);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(230,234,240,.88);
}
.navbar {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 950; letter-spacing: -.04em; }
.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(5,10,15,.1);
    overflow: hidden;
}
.brand-mark img { width: 70px; max-width: none; }
.brand-text { font-size: 23px; color: var(--black); }
.brand-text strong, .footer-brand strong { color: var(--lime-dark); }
nav ul { display: flex; align-items: center; gap: 22px; list-style: none; }
nav a:not(.btn) {
    color: #27313b;
    font-weight: 780;
    font-size: 15px;
    position: relative;
}
nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--lime);
    transition: width .25s ease;
}
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--black); }
.menu-btn { display: none; background: none; border: 0; font-size: 32px; cursor: pointer; color: var(--black); }

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px 23px;
    border-radius: 999px;
    border: 0;
    font-weight: 900;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: var(--black);
    background: linear-gradient(135deg, var(--lime), var(--lime-2));
    box-shadow: 0 16px 35px rgba(139,224,0,.27);
}
.btn-primary:hover { box-shadow: 0 20px 48px rgba(139,224,0,.38); }
.btn-secondary {
    color: var(--black);
    background: var(--white);
    border: 1px solid rgba(16,24,32,.18);
    box-shadow: 0 12px 28px rgba(5,10,15,.06);
}
.btn-glass {
    color: var(--white);
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
}
.btn-big { padding: 16px 28px; font-size: 16px; }
.btn-full { width: 100%; }

.section { padding: 94px 0; position: relative; }
.section-light { background: linear-gradient(180deg, #F7F9FC, #F2F5F9); }
.section-dark {
    background:
        radial-gradient(circle at 15% 10%, rgba(139,224,0,.18), transparent 30rem),
        radial-gradient(circle at 90% 80%, rgba(139,224,0,.12), transparent 24rem),
        var(--black);
    color: var(--white);
    overflow: hidden;
}
.section-title, .page-hero h1, .hero h1 {
    color: var(--black);
    line-height: .98;
    letter-spacing: -0.065em;
}
.section-title { font-size: clamp(34px, 4.8vw, 58px); margin-bottom: 18px; }
.section-description { font-size: 18px; color: var(--muted); max-width: 780px; margin-bottom: 38px; }
.section-dark .section-title, .section-dark h2, .section-dark h1 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.74); }
.section-head { margin-bottom: 44px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(139,224,0,.34);
    background: rgba(139,224,0,.12);
    color: var(--lime-dark);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .02em;
    margin-bottom: 22px;
}
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(139,224,0,.18); }
.eyebrow.light { color: var(--lime-2); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.highlight, .hero h1 em { color: var(--lime-dark); font-style: normal; }

.hero-premium {
    min-height: calc(100vh - 84px);
    padding: 92px 0 84px;
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(139,224,0,.26), transparent 26rem),
        linear-gradient(135deg, #050A0F 0%, #0A1118 44%, #101820 100%);
    overflow: hidden;
}
.hero h1 { color: var(--white); font-size: clamp(44px, 7vw, 82px); max-width: 780px; }
.hero p { color: rgba(255,255,255,.74); font-size: clamp(18px, 2vw, 21px); max-width: 710px; margin: 0 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin: 30px 0 26px; }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; color: rgba(255,255,255,.75); font-weight: 750; font-size: 14px; }
.trust-row span { padding: 10px 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); border-radius: 999px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); opacity: .55; }
.hero-glow-1 { width: 330px; height: 330px; background: rgba(139,224,0,.24); right: -120px; top: 80px; }
.hero-glow-2 { width: 220px; height: 220px; background: rgba(139,224,0,.16); left: -80px; bottom: -70px; }
.hero-visual { position: relative; min-height: 520px; }
.floating-card { animation: float 5.4s ease-in-out infinite; }
.delay { animation-delay: -2s; }
.soft { animation-delay: -3.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.browser-mockup {
    background: rgba(255,255,255,.94);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 28px;
    box-shadow: 0 38px 100px rgba(0,0,0,.32);
    overflow: hidden;
}
.browser-mockup.big { box-shadow: var(--shadow); }
.browser-top { height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 18px; border-bottom: 1px solid var(--line); background: rgba(245,247,250,.9); }
.browser-top span { width: 11px; height: 11px; border-radius: 50%; background: #D0D5DD; }
.browser-top span:first-child { background: #FF6259; }
.browser-top span:nth-child(2) { background: #FFBD2E; }
.browser-top span:nth-child(3) { background: #29C840; }
.browser-top small { margin-left: 10px; color: #8B95A1; font-weight: 800; }
.mock-hero { padding: 30px; margin: 22px; border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: linear-gradient(135deg, #0A1118, #182430); color: #fff; }
.mock-hero strong { font-size: 28px; letter-spacing: -.04em; }
.mock-hero p { font-size: 13px; margin: 6px 0 0; color: rgba(255,255,255,.7); }
.mock-hero button { border: 0; border-radius: 999px; padding: 12px 18px; background: var(--lime); font-weight: 900; }
.mock-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 22px 22px; }
.mock-services div { height: 96px; border-radius: 18px; background: linear-gradient(135deg, #F0F4F8, #E7ECF3); position: relative; overflow: hidden; }
.mock-services div::after { content:""; position:absolute; left:16px; bottom:16px; width:56%; height:10px; border-radius:999px; background:#D2D9E3; }
.mock-list { display: grid; gap: 10px; padding: 0 22px 26px; }
.mock-list span { height: 12px; border-radius: 999px; background: #E3E8EF; }
.mock-list span:nth-child(2) { width: 78%; }
.mock-list span:nth-child(3) { width: 55%; }
.phone-mockup {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 210px;
    height: 350px;
    border-radius: 38px;
    background: #0B1118;
    padding: 16px;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.16);
}
.phone-notch { width: 76px; height: 18px; border-radius: 0 0 14px 14px; background: #0B1118; margin: 0 auto -4px; position: relative; z-index: 2; }
.phone-screen { height: 100%; border-radius: 28px; padding: 78px 18px 20px; background: linear-gradient(180deg, #F7FAFC, #E9EEF5); color: var(--ink); }
.phone-chip { display: inline-block; padding: 7px 10px; border-radius: 999px; background: rgba(139,224,0,.18); color: var(--lime-dark); font-weight: 900; font-size: 12px; }
.phone-screen h4 { font-size: 23px; margin: 18px 0 6px; letter-spacing: -.05em; }
.phone-screen p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.phone-btn { padding: 13px; border-radius: 16px; text-align: center; background: #25D366; color: #fff; font-weight: 900; }
.metric-card {
    position: absolute;
    left: 24px;
    bottom: 38px;
    width: 180px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(18px);
    color: var(--white);
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.metric-card strong { display: block; font-size: 42px; line-height: 1; color: var(--lime-2); }
.metric-card span { font-size: 13px; color: rgba(255,255,255,.74); font-weight: 750; }

.strip-section { padding: 0; background: var(--black); color: var(--white); }
.strip-grid {
    transform: translateY(50%);
    margin-top: -48px;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    border: 1px solid rgba(230,234,240,.9);
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.strip-grid div { padding: 26px 22px; border-right: 1px solid var(--line); }
.strip-grid div:last-child { border-right: 0; }
.strip-grid strong { display: block; color: var(--black); font-size: clamp(26px, 4vw, 42px); letter-spacing: -.06em; line-height: 1; }
.strip-grid span { color: var(--muted); font-weight: 800; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.compact { gap: 16px; }
.feature-card, .page-card, .price-card, form {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(230,234,240,.9);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}
.feature-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(139,224,0,.55); }
.feature-card h3 { color: var(--black); font-size: 22px; margin: 0 0 10px; letter-spacing: -.03em; }
.feature-card p { color: var(--muted); }
.elevated { background: var(--white); }
.offset { transform: translateX(42px); }
.offset:hover { transform: translate(42px, -7px); }
.icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(139,224,0,.16);
    color: var(--black);
    font-weight: 950;
    margin-bottom: 18px;
}
.icon.neon { background: linear-gradient(135deg, var(--lime), var(--lime-2)); box-shadow: 0 14px 30px rgba(139,224,0,.28); }
.cards-stack { display: grid; gap: 18px; }

.angled { padding: 116px 0; }
.reveal-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 60px; align-items: center; }
.dark-copy h2, .cta-panel h2, .section-dark h2 { font-size: clamp(34px, 5vw, 62px); line-height: 1; letter-spacing: -.06em; margin-bottom: 18px; }
.dark-copy p, .cta-panel p { font-size: 18px; margin-bottom: 28px; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-site { min-height: 290px; border-radius: 30px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.13); }
.mini-site span { font-size: 13px; font-weight: 950; color: var(--lime-2); margin-bottom: 12px; }
.mini-site h3 { font-size: 30px; letter-spacing: -.05em; color: #fff; margin-bottom: 8px; }
.mini-site p { color: rgba(255,255,255,.72); }
.mini-site.muted { background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); }
.mini-site.active-card { background: radial-gradient(circle at top right, rgba(139,224,0,.42), transparent 11rem), linear-gradient(135deg, #111B24, #0B1016); box-shadow: 0 24px 80px rgba(0,0,0,.26); }

.page-hero { padding: 92px 0 78px; }
.premium-page {
    background:
        radial-gradient(circle at 85% 10%, rgba(139,224,0,.16), transparent 23rem),
        linear-gradient(180deg, #FFFFFF, #F7F9FC);
    border-bottom: 1px solid var(--line);
}
.page-grid { display: grid; grid-template-columns: 1fr .42fr; gap: 40px; align-items: center; }
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); max-width: 820px; }
.page-hero p { font-size: 20px; color: var(--muted); max-width: 740px; margin-top: 22px; }
.page-card { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.page-card::after { content:""; position:absolute; width:160px; height:160px; border-radius:50%; right:-70px; top:-70px; background: var(--lime); opacity:.9; }
.page-card strong { display: block; font-size: 28px; line-height: 1; letter-spacing: -.05em; margin-bottom: 12px; position:relative; z-index:1; }
.page-card p { color: rgba(255,255,255,.74); font-size: 16px; position:relative; z-index:1; }

.site-map-preview { padding: 24px; }
.preview-hero { height: 150px; border-radius: 24px; background: radial-gradient(circle at 80% 20%, rgba(139,224,0,.8), transparent 7rem), linear-gradient(135deg, #0B1118, #192633); margin-bottom: 18px; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.preview-grid span { height: 78px; border-radius: 16px; background: #EEF2F7; }
.preview-lines { display: grid; gap: 10px; }
.preview-lines i { height: 12px; border-radius: 999px; background: #DDE4EE; }
.preview-lines i:nth-child(2) { width: 75%; }
.preview-lines i:nth-child(3) { width: 52%; }
.check-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 26px; }
.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); font-weight: 760; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(139,224,0,.18); color: var(--lime-dark); font-size: 13px; font-weight: 950; }
.light-list li { color: rgba(255,255,255,.76); }
.light-list li::before { background: rgba(139,224,0,.18); color: var(--lime-2); }

.pricing-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: stretch; }
.price-card { padding: 36px; position: relative; overflow: hidden; }
.glow-border { border-color: rgba(139,224,0,.7); box-shadow: 0 30px 80px rgba(139,224,0,.13), var(--shadow-soft); }
.dark-price { background: radial-gradient(circle at top right, rgba(139,224,0,.18), transparent 12rem), var(--black); color: #fff; border-color: rgba(255,255,255,.13); }
.price-card h2 { font-size: 34px; letter-spacing: -.05em; margin: 0 0 10px; color: inherit; }
.price-description { color: var(--muted); margin-bottom: 10px; }
.dark-price .price-description { color: rgba(255,255,255,.7); }
.badge { display: inline-block; padding: 8px 13px; border-radius: 999px; background: linear-gradient(135deg, var(--lime), var(--lime-2)); color: var(--black); font-weight: 950; font-size: 13px; margin-bottom: 18px; }
.badge.dark { background: rgba(255,255,255,.1); color: var(--lime-2); border: 1px solid rgba(255,255,255,.14); }
.price { font-size: clamp(58px, 8vw, 86px); line-height: 1; letter-spacing: -.08em; color: var(--black); font-weight: 1000; margin: 18px 0 10px; }
.price span { font-size: 21px; color: rgba(255,255,255,.72); letter-spacing: 0; }
.light-price { color: var(--white); }
.small-note { color: var(--muted); font-weight: 750; margin-bottom: 26px; }
.light-note { color: rgba(255,255,255,.62); }
.price-card .btn { margin-top: 26px; }
.faq-list { display: grid; gap: 14px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; box-shadow: 0 10px 30px rgba(5,10,15,.04); }
summary { cursor: pointer; font-weight: 900; color: var(--black); }
details p { color: var(--muted); margin-top: 12px; }

.timeline { position: relative; display: grid; gap: 20px; max-width: 980px; }
.timeline::before { content:""; position:absolute; left:31px; top:18px; bottom:18px; width:2px; background: linear-gradient(var(--lime), transparent); }
.timeline-item { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: 24px; box-shadow: var(--shadow-soft); }
.timeline-number { width: 64px; height: 64px; border-radius: 21px; display: grid; place-items: center; background: var(--black); color: var(--lime); font-weight: 950; position: relative; z-index: 2; }
.timeline-item h3 { font-size: 25px; letter-spacing: -.04em; color: var(--black); margin-bottom: 8px; }
.timeline-item p { color: var(--muted); }

.about-logo-card { background: var(--white); border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); padding: 28px; display: grid; place-items: center; text-align: center; }
.about-logo-card img { width: 230px; margin: -10px auto 10px; }
.about-logo-card span { font-weight: 950; color: var(--black); max-width: 260px; }

.cta-section { background: var(--white); }
.cta-panel {
    padding: 48px;
    border-radius: 36px;
    background: radial-gradient(circle at 85% 0%, rgba(139,224,0,.38), transparent 16rem), linear-gradient(135deg, #070D12, #101820);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: var(--shadow);
}
.cta-panel h2 { color: var(--white); max-width: 760px; }
.cta-panel p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 34px; align-items: start; }
.contact-info { background: radial-gradient(circle at top right, rgba(139,224,0,.25), transparent 12rem), var(--black); color: #fff; border-radius: 32px; padding: 34px; box-shadow: var(--shadow); }
.premium-contact { position: sticky; top: 106px; }
.contact-info h3 { font-size: 34px; line-height: 1; letter-spacing: -.05em; margin-bottom: 22px; }
.contact-info ul { list-style: none; display: grid; gap: 13px; margin-bottom: 24px; }
.contact-info li { padding: 13px 14px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8); font-weight: 760; }
.contact-note { padding: 16px; border-radius: 18px; background: rgba(139,224,0,.12); border: 1px solid rgba(139,224,0,.18); color: var(--lime-2); font-weight: 820; }
.premium-form { padding: 34px; }
.form-header { margin-bottom: 24px; }
.form-header h2 { font-size: 32px; letter-spacing: -.05em; color: var(--black); }
.form-header p { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-weight: 900; color: var(--black); margin-bottom: 8px; }
input, select, textarea {
    width: 100%;
    border: 1px solid #D6DDE7;
    background: #fff;
    border-radius: 16px;
    padding: 15px 16px;
    color: var(--ink);
    outline: none;
    transition: border .2s ease, box-shadow .2s ease, transform .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--lime-dark); box-shadow: 0 0 0 5px rgba(139,224,0,.16); }
textarea { min-height: 140px; resize: vertical; }
.form-message { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 16px; font-weight: 850; }
.form-message.ok { display: block; background: rgba(34,197,94,.12); color: #16713A; border: 1px solid rgba(34,197,94,.18); }
.form-message.error { display: block; background: rgba(220,38,38,.10); color: #B42318; border: 1px solid rgba(220,38,38,.18); }

.admin-dashboard { display: grid; grid-template-columns: 170px 220px 1fr; gap: 18px; align-items: stretch; margin-bottom: 22px; }
.admin-stat { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow-soft); }
.admin-stat span { display:block; font-size: 30px; font-weight: 950; letter-spacing: -.04em; color: var(--black); }
.admin-stat p { color: var(--muted); font-weight: 800; }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.admin-actions input { min-width: 260px; flex: 1; }
.empty-message { color: var(--muted); font-weight: 800; margin-bottom: 18px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-soft); }
table { width: 100%; min-width: 980px; border-collapse: collapse; }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; }
th { color: #fff; background: var(--black); font-weight: 900; }
td { color: var(--muted); }

.site-footer { background: #050A0F; color: #fff; padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .5fr .7fr; gap: 38px; padding-bottom: 34px; }
.footer-brand img { width: 64px; height: 64px; object-fit: cover; border-radius: 18px; background: #fff; }
.footer-brand span { font-size: 24px; }
.site-footer p, .footer-bottom, .site-footer a { color: rgba(255,255,255,.66); }
.site-footer h4 { margin-bottom: 12px; color: #fff; }
.site-footer a { display: block; margin-bottom: 8px; transition: color .2s ease; }
.site-footer a:hover { color: var(--lime-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 14px; }

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lime), var(--lime-2));
    color: var(--black);
    font-weight: 950;
    box-shadow: 0 18px 50px rgba(139,224,0,.35);
}

[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
    .hero-grid, .split-grid, .reveal-grid, .page-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 460px; }
    .phone-mockup { right: 20px; }
    .strip-grid { grid-template-columns: repeat(2, 1fr); transform: none; margin-top: 0; border-radius: 0; width: 100%; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .premium-contact { position: static; }
}

@media (max-width: 820px) {
    .menu-btn { display: block; }
    nav { position: absolute; top: 84px; left: 0; width: 100%; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); display: none; }
    nav.active { display: block; }
    nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 16px 4%; }
    nav li { width: 100%; }
    nav a:not(.btn) { display: block; padding: 13px 0; }
    .nav-cta { width: 100%; margin-top: 12px; }
    .hero-premium { min-height: auto; padding: 70px 0; }
    .hero h1 { font-size: clamp(42px, 13vw, 64px); }
    .hero-visual { min-height: 520px; }
    .metric-card { left: 0; }
    .phone-mockup { width: 190px; height: 320px; }
    .grid-2, .grid-3, .grid-4, .before-after, .check-columns, .form-row { grid-template-columns: 1fr; }
    .offset, .offset:hover { transform: none; }
    .section { padding: 74px 0; }
    .page-hero { padding: 70px 0; }
    .cta-panel { flex-direction: column; align-items: flex-start; padding: 32px; }
    .admin-dashboard { grid-template-columns: 1fr; }
    .admin-actions { justify-content: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 28px, 1160px); }
    .brand-text { font-size: 20px; }
    .brand-mark { width: 48px; height: 48px; }
    .hero-actions .btn, .hero-actions { width: 100%; }
    .hero-actions .btn { justify-content: center; }
    .hero-visual { min-height: 440px; }
    .mock-hero { display: block; padding: 22px; margin: 14px; }
    .mock-hero button { margin-top: 14px; }
    .mock-services { gap: 8px; padding: 0 14px 14px; }
    .mock-services div { height: 70px; }
    .phone-mockup { transform: scale(.82); transform-origin: bottom right; }
    .phone-mockup.floating-card { animation: none; }
    .metric-card { width: 150px; padding: 18px; }
    .strip-grid { grid-template-columns: 1fr; }
    .strip-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
    .price-card, .feature-card, form { padding: 22px; }
    .floating-whatsapp { left: 14px; right: 14px; text-align: center; justify-content: center; display: flex; }
}


/* Ajustes V4 - negocios locales */
.sector-card .icon { font-size: 24px; }
.food-preview div:nth-child(1) { background: linear-gradient(135deg, #FFF3D6, #F0D08A); }
.food-preview div:nth-child(2) { background: linear-gradient(135deg, #FFE6E6, #E8A4A4); }
.food-preview div:nth-child(3) { background: linear-gradient(135deg, #EAF7DF, #B7E57A); }
.contact-promise strong { max-width: 210px; }


.hidden-field {
    display: none !important;
}
