:root {
    --navy-900: #060E1A;
    --navy-800: #0B1A2E;
    --navy-700: #122A4A;
    --navy-600: #1B3D6B;
    --teal-500: #1D9E75;
    --teal-400: #5DCAA5;
    --teal-300: #9FE1CB;
    --teal-100: #E1F5EE;
    --white: #FFFFFF;
    --gray-100: #F4F6F8;
    --gray-200: #E2E6EB;
    --gray-400: #8A94A0;
    --gray-600: #4A5568;
    --gray-800: #1A202C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

/* ============= NAV — Phase 1 ============= */
nav.site-nav,
body > nav:first-of-type {
    background: var(--navy-800);
    padding: 0 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--navy-700);
    display: block;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-inner .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
}
.nav-inner .logo span { color: var(--teal-400); }
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: var(--teal-300);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--teal-500);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}
.nav-cta:hover { background: #178A64; }
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu svg {
    width: 28px;
    height: 28px;
    stroke: var(--teal-300);
}

/* ============= HERO SECTION ============= */
.hero {
    padding-top: 64px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-content { max-width: 700px; }
.badge {
    display: inline-block;
    background: rgba(29, 158, 117, 0.15);
    color: var(--teal-400);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--teal-400);
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero .subtitle {
    font-size: 1.1rem;
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons .cta-button {
    background: var(--teal-500);
    padding: 1rem 2rem;
    font-size: 1rem;
}
.hero-buttons .secondary-button {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.9rem 1.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}
.hero-buttons .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============= TRUST BAR ============= */
.trust-bar {
    background: var(--navy-800);
    padding: 1.5rem 2rem;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trust-item {
    text-align: center;
}
.trust-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal-400);
}
.trust-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* ============= SECTION UTILITIES ============= */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* ============= FEATURES SECTION ============= */
.features {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.features .section-title { margin-bottom: 3rem; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-card h3 {
    color: var(--navy-900);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--teal-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============= WHO IS THIS FOR ============= */
.who-for {
    background: var(--gray-100);
    padding: 5rem 2rem;
}
.who-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.who-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: border-color 0.3s ease;
}
.who-card:hover { border-color: var(--teal-500); }
.who-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.who-card h3 {
    color: var(--navy-900);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.who-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.who-plan {
    display: inline-block;
    background: var(--teal-100);
    color: var(--teal-500);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============= INFRASTRUCTURE ============= */
.infrastructure {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.infra-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}
.infra-card {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: 12px;
}
.infra-card h4 {
    color: var(--navy-900);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--teal-500);
}
.location-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.location-item {
    display: grid;
    grid-template-columns: 2rem 10rem 1fr;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}
.location-item:hover { background: var(--gray-200); }
.location-flag { font-size: 1.2rem; }
.location-name {
    color: var(--navy-900);
    font-weight: 600;
    font-size: 0.9rem;
}
.location-brokers {
    color: var(--gray-400);
    font-size: 0.8rem;
}
.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.spec-list li {
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}
.spec-list li::before {
    content: "▸";
    color: var(--teal-500);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.spec-list li strong {
    color: var(--navy-900);
}

/* ============= PRICING SECTION ============= */
.pricing {
    background: var(--gray-100);
    padding: 5rem 2rem;
}
.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}
.pricing .section-title { margin-bottom: 0.5rem; }

/* Location selector */
.location-selector {
    text-align: center;
    margin-bottom: 1rem;
}
.location-selector label {
    display: block;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.location-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.loc-option {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}
.loc-option:hover {
    border-color: var(--teal-400);
    color: var(--teal-500);
}
.loc-option.selected {
    background: var(--teal-500);
    color: var(--white);
    border-color: var(--teal-500);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.price-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    border-color: var(--teal-500);
    box-shadow: 0 10px 40px rgba(29, 158, 117, 0.2);
    transform: scale(1.05);
    position: relative;
}
.price-card.featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-500);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.price-card h3 {
    color: var(--navy-900);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-500);
    margin: 1rem 0;
}
.price-card .price span {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
}
.price-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}
.price-card li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.price-card li::before {
    content: "\2713";
    color: var(--teal-500);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.price-card .good-for {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.9rem;
    font-style: italic;
}
.price-card .cta-button {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 1rem;
}

/* ============= COMPARISON TABLE ============= */
.comparison {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.comparison .section-title { margin-bottom: 0.5rem; }
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}
.comparison-table thead th {
    background: var(--navy-900);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}
.comparison-table thead th:first-child {
    border-radius: 12px 0 0 0;
}
.comparison-table thead th:last-child {
    border-radius: 0 12px 0 0;
}
.comparison-table tbody tr:hover {
    background: var(--gray-100);
}
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--navy-900);
}
.highlight-col {
    background: var(--teal-100) !important;
}
.comparison-table thead .highlight-col {
    background: var(--teal-500) !important;
    color: var(--white);
}

/* ============= HOW IT WORKS SECTION ============= */
.how-it-works {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.how-it-works .section-title { margin-bottom: 3rem; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.step { text-align: center; padding: 2rem; }
.step-number {
    width: 60px;
    height: 60px;
    background: var(--teal-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}
.step h4 {
    color: var(--navy-900);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.step p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ============= PLATFORMS SECTION ============= */
.platforms {
    background: var(--gray-100);
    padding: 4rem 2rem;
}
.platforms-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.platforms .section-title { margin-bottom: 0.5rem; }
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.platform-pill {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--navy-900);
    font-weight: 600;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}
.platform-pill:hover {
    border-color: var(--teal-500);
    color: var(--teal-500);
}

/* ============= BROKERS SECTION ============= */
.brokers {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}
.brokers .section-title { margin-bottom: 2rem; }
.broker-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.broker-pill {
    background: var(--gray-100);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}
.broker-pill:hover {
    border-color: var(--teal-500);
    color: var(--teal-500);
    background: var(--teal-100);
}

/* ============= FAQ SECTION ============= */
.faq {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.faq .section-title { margin-bottom: 3rem; }
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:hover { background: var(--gray-200); }
.faq-item.open { background: var(--teal-100); }
.faq-question {
    color: var(--navy-900);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-toggle {
    color: var(--teal-500);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    font-weight: 700;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    color: var(--gray-600);
    margin-top: 1rem;
    line-height: 1.7;
    display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ============= SEO CONTENT ============= */
.seo-content {
    background: var(--gray-100);
    padding: 4rem 2rem;
}
.seo-inner {
    max-width: 800px;
    margin: 0 auto;
}
.seo-content h2 {
    color: var(--navy-900);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.seo-content h3 {
    color: var(--navy-900);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.seo-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============= CTA BANNER SECTION ============= */
.cta-banner {
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-400) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}
.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.cta-banner .cta-button {
    background: var(--navy-900);
    padding: 1rem 2.5rem;
    font-size: 1rem;
}
.cta-banner .cta-button:hover { background: var(--navy-800); }

/* ============= FOOTER — Phase 1 ============= */
footer {
    background: var(--navy-900);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--navy-700);
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-brand .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: inline-block;
}
.footer-brand .logo span { color: var(--teal-400); }
.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom {
    border-top: 1px solid var(--navy-700);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .header-content { flex-direction: column; gap: 1rem; }
    nav { flex-direction: column; width: 100%; gap: 1rem; align-items: flex-start; }
    .hero { padding: 3rem 1rem; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero .subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .cta-button,
    .hero-buttons .secondary-button { width: 100%; }
    .section-title { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .infra-grid { grid-template-columns: 1fr; }
    .location-item { grid-template-columns: 2rem 1fr; }
    .location-brokers { grid-column: 1 / -1; padding-left: 2.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: scale(1); }
    .location-options { gap: 0.4rem; }
    .loc-option { padding: 0.4rem 0.75rem; font-size: 0.8rem; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th,
    .comparison-table td { padding: 0.75rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .cta-banner h2 { font-size: 1.5rem; }
    .trust-bar-inner { gap: 1rem; }
    .trust-value { font-size: 1.3rem; }
}
