:root {
    --primary: #002147; /* Deep Navy Authority */
    --accent: #D4AF37; /* Premium Gold */
    --accent-hover: #B8962D;
    --text-main: #1A202C; /* Near Black */
    --text-muted: #4A5568; /* Slate Gray */
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --success: #2F855A;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 20px rgba(0,33,71,0.08);
    --shadow-lg: 0 10px 30px rgba(0,33,71,0.12);
    --radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* --- Header & Navigation --- */
.header {
    background: var(--white);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 20px;
    border: 2px solid var(--accent);
}

.logo-text {
    font-size: 22px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
}

.header-contact span {
    color: var(--accent);
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0 60px;
    background: radial-gradient(circle at top right, #fdfbf7 0%, #ffffff 100%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.badge-item i {
    color: var(--accent);
}

/* --- Quiz Box --- */
.quiz-card {
    background: var(--primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.quiz-card h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.quiz-card .subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 32px;
}

/* --- Features Section --- */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: inline-block;
}

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

/* --- Process Section --- */
.process-section {
    background: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.step-item {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #edf2f7;
}

.stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- CTA Buttons --- */
.cta-button {
    background: var(--accent);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* --- Progress Bar --- */
.progress-container {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 32px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.4s ease;
}

/* --- Quiz Result Customizations --- */
.question {
    font-size: 1.4rem !important;
    line-height: 1.4;
    font-weight: 600;
}

.options button {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.options button:hover {
    background: var(--white);
    color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero { padding: 40px 0 30px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { margin: 0 auto 20px; font-size: 1.1rem; }
    .trust-badges { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .feature-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .header { padding: 10px 0; }
    .logo-icon { width: 32px; height: 32px; font-size: 16px; }
    .logo-text { font-size: 16px; }
    .header-contact span { font-size: 14px; }
    .hero-content h1 { font-size: 1.8rem; margin-bottom: 15px; }
    .hero { padding: 20px 0; }
    .process-steps { flex-direction: column; }
    .quiz-card { padding: 20px; }
    .question { font-size: 1.2rem !important; }
}
