/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* ── TOP HEADER ── */
.top-header {
    background: #0a2a4a;
    color: #fff;
    padding: 11px 0;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 3px solid #25D366;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.header-tagline {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #a8d4a0;
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(10,42,74,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    color: #0a2a4a;
    letter-spacing: -0.5px;
}

.logo span { color: #25D366; }

.nav-menu {
    display: flex;
    gap: 26px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-menu a:hover { color: #0a2a4a; }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #0a2a4a 0%, #1a4a7a 100%);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(37,211,102,0.10) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.4);
    color: #7fffb2;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 26px;
}

.hero h2 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.hero h2 span { color: #25D366; }

.hero-sub {
    font-size: 16px;
    opacity: 0.82;
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.75;
}

.hero-price {
    font-size: 64px;
    font-weight: 900;
    color: #FFD600;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-price-label {
    font-size: 13px;
    color: #a8d4a0;
    letter-spacing: 1.5px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover { border-color: #fff; }

.btn-gold {
    background: #FFD600;
    color: #0a2a4a;
    font-weight: 900;
}

.btn-gold:hover {
    background: #e6c000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ── SECTIONS ── */
section { padding: 80px 0; }

.websites { background: #f0f4f8; }
.why-us { background: #f0f4f8; }
.marketing { background: #fff; }
.contact { background: #fff; }

.sec-label {
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #25D366;
    margin-bottom: 10px;
}

h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 900;
    color: #0a2a4a;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 50px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ── WEBSITE CARD ── */
.website-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dde3ea;
    overflow: hidden;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 6px 28px rgba(10,42,74,0.08);
}

.wc-top {
    background: #0a2a4a;
    padding: 36px;
    text-align: center;
    color: #fff;
}

.wc-top h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.price-big {
    font-size: 68px;
    font-weight: 900;
    color: #FFD600;
    line-height: 1;
}

.price-label {
    font-size: 12px;
    color: #a8d4a0;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.wc-features {
    padding: 30px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.wc-feature i {
    color: #25D366;
    font-size: 18px;
    flex-shrink: 0;
}

.wc-cta {
    padding: 26px 36px;
    border-top: 1px solid #eee;
    text-align: center;
}

.wc-note {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}

/* ── PACKAGES ── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.pkg-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #dde3ea;
    overflow: hidden;
    transition: all 0.25s ease;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(10,42,74,0.12);
}

.pkg-featured {
    border: 2px solid #FFD600;
}

.pkg-header {
    padding: 24px 24px 18px;
    border-bottom: 1px solid #eee;
}

.pkg-badge {
    display: inline-block;
    background: rgba(37,211,102,0.12);
    color: #0a7a30;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.pkg-badge-gold {
    background: rgba(255,214,0,0.18);
    color: #7a6000;
}

.pkg-name {
    font-size: 16px;
    font-weight: bold;
    color: #0a2a4a;
    margin-bottom: 3px;
}

.pkg-platform {
    font-size: 12px;
    color: #999;
    margin-bottom: 14px;
}

.pkg-price {
    font-size: 38px;
    font-weight: 900;
    color: #0a2a4a;
    line-height: 1;
}

.pkg-price.gold { color: #b8860b; }

.pkg-period {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.pkg-body { padding: 20px 24px; }

.pkg-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #555;
    margin-bottom: 11px;
}

.pkg-feat i {
    color: #25D366;
    font-size: 16px;
    flex-shrink: 0;
}

.pkg-cta {
    padding: 18px 24px;
    border-top: 1px solid #eee;
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.why-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dde3ea;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.25s ease;
}

.why-card:hover {
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.1);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.why-icon i {
    color: #25D366;
    font-size: 26px;
}

.why-card h4 {
    font-size: 15px;
    font-weight: bold;
    color: #0a2a4a;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13.5px;
    color: #777;
    line-height: 1.65;
}

/* ── CONTACT ── */
.contact-box {
    background: #0a2a4a;
    border-radius: 18px;
    padding: 52px;
    text-align: center;
    color: #fff;
}

.contact-box h2 {
    color: #fff;
    margin-bottom: 12px;
}

.contact-box > p {
    color: #a8d4a0;
    font-size: 15px;
    margin-bottom: 36px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 38px;
}

.contact-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 22px;
}

.contact-item h4 {
    font-size: 11px;
    color: #7fffb2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-item a,
.contact-item span {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.contact-item a:hover { color: #25D366; }

/* ── FOOTER ── */
.footer {
    background: #060f1a;
    color: #667;
    padding: 36px 20px;
    text-align: center;
    border-top: 3px solid #25D366;
}

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-logo span { color: #25D366; }

.footer-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: #25D366;
    margin-bottom: 10px;
}

.footer-copy { font-size: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .top-header .container,
    .navbar .container { flex-direction: column; text-align: center; }
    .nav-menu { flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 12px; }
    .hero h2 { font-size: 32px; }
    .hero-price { font-size: 48px; }
    .wc-features { grid-template-columns: 1fr; }
    .contact-box { padding: 30px 18px; }
    .btn-large { width: 100%; justify-content: center; }
}
