@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #5a62ad;
    --secondary: #5bb1ee;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-900);
    line-height: 1.5;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.max-w-7xl { max-width: 80rem; margin-inline: auto; padding-inline: 1rem; }
.max-w-4xl { max-width: 56rem; margin-inline: auto; padding-inline: 1rem; }
.max-w-3xl { max-width: 48rem; margin-inline: auto; padding-inline: 1rem; }

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    z-index: 50;
    border-bottom: 1px solid var(--slate-100);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    height: 4rem;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-decoration: none;
    color: var(--slate-900);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--slate-900);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--slate-100);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.125rem;
        width: 100%;
        text-align: center;
    }

    .btn-book {
        width: auto;
    }
}

.btn-book {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-book:hover { opacity: 0.9; }

/* Hero */
header {
    padding-top: 8rem;
    padding-bottom: 5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(91, 177, 238, 0.1), var(--white));
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 span { color: var(--primary); }

.hero-p {
    font-size: 1.5rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(90, 98, 173, 0.2);
    transition: all 0.2s;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover { background-color: rgba(90, 98, 173, 0.05); }

/* Sections */
section { padding: 5rem 0; }
.bg-slate-50 { background-color: var(--slate-50); }
.text-center { text-align: center; }

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.hook-text {
    font-size: 1.25rem;
    color: var(--slate-700);
    margin-bottom: 1.5rem;
}

.italic-blue {
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
}

/* Lists */
ul { list-style: none; }
li { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.check-icon { color: var(--secondary); flex-shrink: 0; width: 1.5rem; height: 1.5rem; }

/* Cards */
.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border: 1px solid var(--slate-100);
}

.card-dark { background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; border-radius: 1rem; }

/* Table */
.table-container { overflow-x: auto; border-radius: 1rem; border: 1px solid var(--slate-200); }
table { width: 100%; border-collapse: collapse; text-align: left; }
th { background-color: var(--slate-50); padding: 1rem 1.5rem; font-weight: 700; border-bottom: 1px solid var(--slate-200); }
td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--slate-200); }
.text-primary { color: var(--primary); font-weight: 700; }

/* Broker Section */
.broker-section { background-color: rgba(91, 177, 238, 0.05); padding-top: 6rem; padding-bottom: 6rem; }
.broker-card { background: white; padding: 4rem; border-radius: 2rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); display: flex; gap: 2.5rem; align-items: center; position: relative; }
.broker-img { width: 12rem; height: 12rem; border-radius: 1rem; overflow: hidden; border: 4px solid rgba(91, 177, 238, 0.2); flex-shrink: 0; }
.broker-img img { width: 100%; height: 100%; object-fit: cover; }

/* Form */
.form-card { background: white; padding: 2rem; border-radius: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid var(--slate-100); }
.form-group { margin-bottom: 1rem; }
label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--slate-700); margin-bottom: 0.25rem; }
input, select, textarea { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--slate-200); border-radius: 0.5rem; outline: none; transition: border-color 0.2s; }
input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(90, 98, 173, 0.1); }
.btn-submit { width: 100%; background: var(--primary); color: white; padding: 1rem; border: none; border-radius: 0.5rem; font-weight: 700; font-size: 1rem; cursor: pointer; transition: opacity 0.2s; }
.btn-submit:hover { opacity: 0.9; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question { width: 100%; padding: 1.5rem 0; background: none; border: none; text-align: left; font-size: 1.125rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-answer { height: 0; overflow: hidden; transition: height 0.3s ease-out; color: var(--slate-600); }
.faq-answer p { padding-bottom: 1.5rem; }

.footer { padding: 3rem 0; border-top: 1px solid var(--slate-200); background: var(--slate-50); text-align: center; }
.disclaimer { font-size: 0.875rem; color: var(--slate-500); max-width: 48rem; margin: 0 auto; }
