body {
background-color: white; /* Ensure the iframe has a white background */
}

:root {
--primary: #0a1e3f;
--primary-light: #123060;
--accent: #00d474;
--accent-dark: #00a85a;
--white: #ffffff;
--gray-100: #f7f8fa;
--gray-200: #e5e7eb;
--gray-300: #d1d5db;
--gray-500: #ffffff;
--gray-700: #374151;
--gray-900: #111827;
--shadow-md: 0 8px 24px rgba(0,0,0,0.12);
--shadow-lg: 0 16px 40px rgba(0,0,0,0.18);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
font-family: 'Inter', sans-serif;
color: var(--gray-900);
background: var(--white);
line-height: 1.6;
overflow-x: hidden;
}


/* Navigation */
nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 1000;
background: rgba(10, 30, 63, 0.95);
backdrop-filter: blur(12px);
padding: 1rem 2rem;
display: flex; justify-content: space-between; align-items: center;
transition: var(--transition);
}

nav.scrolled { box-shadow: var(--shadow-md); padding: 0.8rem 2rem; }

.logo {
display: flex; align-items: center; gap: 0.75rem;
text-decoration: none; color: var(--white);
font-weight: 700; font-size: 1.5rem;
}
.logo svg { width: 36px; height: 36px; }
.logo span {
background: linear-gradient(135deg, var(--accent), #66ffaa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.nav-links {
display: flex; align-items: center; gap: 1.5rem; list-style: none;
}
.nav-links a {
color: rgba(255,255,255,0.85); text-decoration: none;
font-weight: 500; font-size: 0.9rem;
transition: var(--transition); position: relative; cursor: pointer;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
content: ''; position: absolute; bottom: -4px; left: 0;
width: 0; height: 2px; background: var(--accent);
transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
background: var(--accent); color: var(--primary);
padding: 0.65rem 1.5rem; border-radius: 8px;
font-weight: 600; text-decoration: none;
transition: var(--transition);
}
.nav-cta:hover {
background: var(--accent-dark); transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,212,116,0.4);
}
.nav-cta::after { display: none !important; }

.mobile-menu-btn {
display: none; background: none; border: none;
cursor: pointer; padding: 0.5rem;
}
.mobile-menu-btn span {
display: block; width: 24px; height: 2px;
background: var(--white); margin: 5px 0;
transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.page-hero {
background: linear-gradient(135deg, var(--primary), #1a4a7a);
padding: 8rem 2rem 4rem; text-align: center;
}
.page-hero h1 { font-size: 3rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

/* BADGE */
.badge {
display: inline-block; background: rgba(0,212,116,0.1);
color: var(--accent-dark); padding: 0.4rem 1rem;
border-radius: 20px; font-weight: 600; font-size: 0.85rem; margin-bottom: 1rem;
}

/* PRICING SECTION */
.pricing-section {
background: linear-gradient(135deg, var(--primary), #1a4a7a);
padding: 5rem 2rem;
}
.pricing-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.pricing-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.pricing-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.pricing-cards {
max-width: 1200px; margin: 0 auto;
display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

.card {
background: var(--white);
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 20px;
padding: 2.5rem;
position: relative; transition: var(--transition);
color: var(--gray-900);
}
.card:hover { transform: translateY(-8px); border-color: var(--accent); }

.card-popular {
background: var(--white); color: var(--gray-900);
}
.card-popular:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

.popular-tag {
position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
background: linear-gradient(135deg, var(--accent), #66ffaa);
color: var(--primary); padding: 0.4rem 1.5rem; border-radius: 20px;
font-weight: 700; font-size: 0.85rem;
}

.card-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-price { font-size: 3rem; font-weight: 800; margin-bottom: 0.25rem; }
.card-price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.card-desc { font-size: 0.9rem; opacity: 0.7; margin-bottom: 2rem; }

.card-features { list-style: none; margin-bottom: 2rem; }
.card-features li { padding: 0.6rem 0; display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.card-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

.card-btn {
width: 100%; padding: 1rem; border-radius: 10px;
font-weight: 700; font-size: 1rem; cursor: pointer;
border: none; transition: var(--transition);
}
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--primary); }

/* COMPARISON */
.compare-section { padding: 5rem 2rem; background: var(--white); }
.compare-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.compare-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.compare-header p { color: var(--gray-500); font-size: 1.1rem; }

.table-wrap { max-width: 1000px; margin: 0 auto; overflow-x: auto; }

.compare-table {
width: 100%; border-collapse: collapse;
background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md);
}
.compare-table thead { background: var(--primary); color: var(--white); }
.compare-table th { padding: 1.25rem 1.5rem; text-align: left; font-weight: 700; font-size: 0.95rem; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
padding: 1rem 1.5rem; border-bottom: 1px solid var(--gray-200);
font-size: 0.9rem; color: var(--gray-700);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--gray-100); }

.save-badge {
background: var(--accent); color: var(--primary);
padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; margin-left: 0.5rem;
}

/* FAQ */
.faq-section { padding: 5rem 2rem; background: var(--gray-100); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); background: var(--white); margin-bottom: 1rem; border-radius: 12px; overflow: hidden; }
.faq-q {
padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-q h3 { font-size: 1.1rem; font-weight: 600; }
.faq-icon {
width: 32px; height: 32px; background: var(--gray-100); border-radius: 8px;
display: flex; align-items: center; justify-content: center;
transition: var(--transition); flex-shrink: 0;
}
.faq-item.active .faq-icon { background: var(--accent); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 1.5rem 1.5rem; color: var(--gray-500); line-height: 1.7; }
.faq-item.active .faq-a { max-height: 300px; }

/* CTA */
.bottom-cta {
background: linear-gradient(135deg, var(--primary), #1a4a7a);
text-align: center; padding: 5rem 2rem;
}
.bottom-cta h2 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.bottom-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-badge { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.cta-badge svg { width: 20px; height: 20px; fill: var(--accent); }

/* FOOTER */
footer { background: var(--gray-900); color: var(--white); padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 1rem; font-size: 0.9rem; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--accent); }
.social-links a svg { width: 18px; height: 18px; fill: var(--white); }

/* RESPONSIVE */
@media (max-width: 1024px) {
.pricing-cards { grid-template-columns: 1fr; max-width: 450px; }
.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
nav { padding: 1rem 1.5rem; }
.nav-links {
display: none; position: fixed; top: 60px; left: 0; right: 0;
background: var(--primary); flex-direction: column; padding: 2rem;
gap: 1.5rem; text-align: center;
}
.nav-links.active { display: flex; }
.mobile-menu-btn { display: block; }
.page-hero { padding: 7rem 1.5rem 3rem; }
.page-hero h1 { font-size: 2rem; }
.pricing-header h2, .compare-header h2, .bottom-cta h2 { font-size: 2rem; }
.footer-grid { grid-template-columns: 1fr; }
.compare-table { font-size: 0.85rem; }
.compare-table th, .compare-table td { padding: 0.75rem 0.5rem; }
}

