:root {
    --primary: #0a2a52;
    --secondary: #2563eb;
    --accent: #facc15;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f5f9ff;
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

img,
video {
    max-width: 100%;
    display: block;
}

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

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #0a2a52, #1e40af);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

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

nav ul a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
}

nav ul a:hover {
    color: #fff;
}

.nav-actions a {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    margin-left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.nav-actions a:last-child {
    background: rgba(255, 255, 255, 0.15);
}

/* ===== HERO ===== */
.hero {
    background: radial-gradient(circle at top right, #3b82f6, #0a2a52);
    padding: 100px 0 140px;
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.hero h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.buttons a {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: #111827;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.35);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* ===== VIDEO SHOWCASE ===== */
.hero-video {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.hero-video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: #fff;
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ===== PRICING ===== */
.pricing {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-header h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.pricing-header p {
    color: var(--text-light);
    font-size: 17px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 22px;
    padding: 42px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.price {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.price span {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 12px;
    color: var(--text-light);
}

.pricing-card a {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 90px 24px;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

/* ===== CONTACT (ENHANCED) ===== */
.contact {
    padding: 110px 0;
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.contact-content h2 {
    font-size: 38px;
    margin-bottom: 14px;
}
.contact-title {
    font-size: 38px;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.contact-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 18px;
    margin-bottom: 6px;
}

.contact-card a {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    background: #020617;
    color: #9ca3af;
    text-align: center;
    padding: 24px;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .contact-content h2 {
        font-size: 32px;
    }
}
