:root {
    --primary: #001f3f;
    --accent: #ff6600;
    --light: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: var(--primary);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo-circle {
    width: 70px; height: 70px; border-radius: 50%;
    background: white; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    border: 4px solid var(--accent);
    font-weight: 800; font-size: 1.2rem;
}

.logo-text { font-size: 1.8rem; font-weight: bold; }
.logo-subtext { color: var(--accent); font-size: 0.95rem; font-weight: 600; letter-spacing: 1px; }

nav { display: flex; gap: 22px; align-items: center; }
nav a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s; }
nav a:hover { color: var(--accent); }

.auth-buttons { display: flex; gap: 12px; }

.btn {
    padding: 10px 22px; border-radius: 6px; text-decoration: none;
    font-weight: 600; transition: all 0.3s; display: inline-block; text-align: center; border: none; cursor: pointer;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #e65c00; transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); }
.btn-lg { font-size: 1.2rem; padding: 16px 36px; }

.hamburger {
    display: none; background: none; border: none; color: white;
    font-size: 28px; cursor: pointer; line-height: 1;
}

.mobile-menu {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; width: 100%; background: var(--primary);
    padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.mobile-menu a { color: white; padding: 12px 0; display: block; text-decoration: none; font-weight: 500; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-auth { margin-top: 15px; }
.mobile-auth .btn { display: block; margin-bottom: 10px; }

/* Hero */
.hero {
    background: linear-gradient(rgba(0,31,63,0.85), rgba(0,31,63,0.85)),
                url('https://images.unsplash.com/photo-1456513080800-b6bbe9059811?w=1920&h=800&fit=crop') center/cover;
    color: white; text-align: center; padding: 150px 20px 100px;
}
.hero h1 { font-size: 3.1rem; margin-bottom: 18px; color: white; line-height: 1.2; }
.hero p { font-size: 1.3rem; max-width: 720px; margin: 0 auto 28px; opacity: 0.95; }
.hero-actions { margin: 36px 0 20px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
    display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
    margin-top: 44px; font-size: 1.05rem;
}

/* Sections */
section { padding: 80px 0; }
h2 { text-align: center; color: var(--primary); margin-bottom: 12px; font-size: 2.3rem; }
.section-lead { text-align: center; color: #555; max-width: 700px; margin: 0 auto 40px; font-size: 1.1rem; }
.empty-note { text-align: center; color: #777; grid-column: 1 / -1; padding: 30px; }

.services-section { background: var(--light); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card, .testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    text-align: center;
}

.service-card img, .testimonial-card img {
    width: 90px; height: 90px; object-fit: cover; border-radius: 12px; margin-bottom: 16px;
}
.testimonial-card img { border-radius: 50%; width: 80px; height: 80px; }

.service-card h3 { color: var(--accent); margin-bottom: 12px; }
.card-price { color: var(--primary); font-weight: bold; margin: 14px 0; font-size: 1.05rem; }

.pricing-row {
    display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
}

.price-card {
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    width: 300px;
    background: white;
}
.price-card.featured {
    border-color: var(--accent);
    background: #fff9f0;
}
.price-amount {
    color: var(--accent);
    font-size: 2.4rem;
    font-weight: 800;
    margin: 12px 0;
}
.price-amount span { font-size: 1rem; font-weight: 500; color: #666; }
.plan-note { color: #555; margin-bottom: 10px; }
.price-card ul { list-style: none; margin: 22px 0; text-align: left; }
.price-card ul li {
    margin: 10px 0;
    padding-left: 22px;
    position: relative;
}
.price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.features-section {
    background: var(--primary);
    color: white;
}
.features-section h2 { color: white; margin-bottom: 40px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    text-align: center;
}
.feature-item h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-item p { opacity: 0.9; }

.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 10px; }
.quote { font-style: italic; line-height: 1.7; margin-bottom: 16px; color: #444; }
.meta { color: #666; font-size: 0.95rem; display: block; margin-top: 4px; }

.cta-section {
    background: var(--accent);
    color: white;
    text-align: center;
}
.cta-section h2 { color: white; }
.cta-section p { font-size: 1.25rem; margin: 16px 0 28px; }

/* Footer */
footer {
    background: #001233;
    color: #ccc;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo-circle { width: 55px; height: 55px; font-size: 1rem; }
.footer-logo-text { font-size: 1.5rem; color: white; }

footer h4 { color: white; margin-bottom: 14px; }
footer a { color: #ccc; text-decoration: none; }
footer a:hover { color: var(--accent); }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: #ccc;
    transition: background 0.2s, color 0.2s;
}
.social-links a:hover {
    background: var(--accent);
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #334455;
    padding-top: 20px;
}

@media (max-width: 900px) {
    nav, .auth-buttons { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.3rem; }
    .hero { padding: 120px 15px 80px; }
    .logo-circle { width: 56px; height: 56px; font-size: 1rem; }
    .logo-text { font-size: 1.45rem; }
}