:root {
    --primary: #002060;
    --secondary: #0058b2;
    --accent: #ffcc00;
    --accent-dark: #cca300;
    --bg-light: #f4f6fb;
    --bg-white: #ffffff;
    --bg-dark: #071533;
    --text-main: #0f2352;
    --text-dim: #5b6e8f;
    --border: #d9e2f2;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 32, 96, 0.08);
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header/Nav */
header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 18px rgba(16, 32, 68, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--text-main);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

nav a:hover {
    color: var(--secondary);
}

.cta-btn {
    background: var(--accent);
    color: #0d1f3b;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 0 var(--accent-dark);
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 0 var(--accent-dark);
}

.cta-btn.secondary {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 0 #0a2b5a;
}

/* Hero Section */
.hero {
    min-height: 520px;
    background: linear-gradient(180deg, rgba(7, 21, 51, 0.30) 0%, rgba(7, 21, 51, 0.55) 100%), url('assets/images/header.jpg') center/cover no-repeat;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1,
.hero-content p,
.hero-trust,
.search-box {
    display: none;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 15px 28px;
    font-size: 1.05rem;
    border-radius: 14px;
    outline: none;
    background: transparent;
}

.search-box button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 15px 34px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
}

.cta-banner {
    background: var(--secondary);
    text-align: center;
    border-radius: 18px;
    margin: 0 10% 100px;
    padding: 70px 40px;
    color: white;
}

.cta-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    margin: 18px 0 35px;
    font-size: 1.1rem;
    opacity: 0.92;
}

/* Section Common */
section {
    padding: 100px 10%;
}

#pricing .section-title {
    margin-bottom: 38px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-title p {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    max-width: 600px;
    margin: 0 auto 1rem;
    opacity: 0.92;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

/* Service Card */
.service-card {
    text-align: center;
    padding: 5px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(0, 32, 96, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 32, 96, 0.1);
    border-color: var(--secondary);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Pricing/Product Grid */
.product-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 14px 18px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.pricing-card .product-box {
    margin-bottom: 10px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background: #eef4ff;
}

.pricing-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.pricing-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 14px;
}

.product-price .price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-flex;
    align-items: baseline;
    gap: 0.1rem;
}

.price-dollar {
    letter-spacing: -0.04em;
}

.price-cents {
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0.9;
}

.product-price small {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-btn,
.product-btn.secondary {
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-btn {
    background: #ffcc00;
    color: #071533;
    border-color: #ffcc00;
}

.product-btn:hover {
    background: #e6b800;
    border-color: #e6b800;
}

.product-btn.secondary {
    background: transparent;
    color: #071533;
    border-color: #071533;
}

.product-btn.secondary:hover {
    background: #071533;
    color: #ffffff;
}

.product-btn .fas,
.product-btn.secondary .fas {
    font-size: 0.95rem;
}

/* Membership Plan Cards */
.plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.plan-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 16px 35px rgba(0, 32, 96, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.plan-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 18px 40px rgba(0, 32, 96, 0.12);
}

.plan-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 14px;
    background: var(--accent);
    color: #071533;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 0.85rem;
}

.plan-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 18px;
}

.plan-price span:first-child {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-price span:last-child {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-price small {
    color: var(--text-dim);
    margin-bottom: 0.2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.plan-features li {
    color: var(--text-dim);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.plan-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.plan-btn {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #071533;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.plan-btn:hover {
    background: #e6b800;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    opacity: 0.85;
    flex-wrap: wrap;
    margin-top: 50px;
}

.trust-badges img,
.trust-badges i {
    height: 40px;
    color: var(--secondary);
}

/* Testimonials */
.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border-left: 5px solid var(--accent);
    position: relative;
    box-shadow: 0 14px 40px rgba(0, 45, 115, 0.06);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary);
}

/* Form Styles */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 60px;
    box-shadow: var(--shadow);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 10px;
    background: #fcfdfe;
}

/* Footer */
footer {
    padding: 80px 10% 40px;
    background: var(--bg-dark);
    color: #e9edf8;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
    text-decoration: none;
}

.footer-links h4 {
    color: #f8fbff;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #a3b0d6;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.fixed-call-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    border-radius: 999px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
    background: #ffcc00;
}

.fixed-call-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #071533;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 18px;
}

.fixed-call-button a:hover {
    background: #ffd72a;
}

.fixed-call-button i {
    font-size: 1rem;
}

@media (max-width: 768px) {

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero {
            padding: 80px 5%;
        }

        header {
            flex-direction: column;
            padding: 20px;
            gap: 20px;
        }

        nav ul {
            gap: 15px;
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }