:root {
    --bg: #0b1020;
    --bg-soft: #0f172a;
    --surface: rgba(17, 27, 48, 0.52);
    --surface-alt: rgba(21, 39, 66, 0.55);
    --muted: rgba(31, 45, 74, 0.45);
    --border: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
    --text-light: #b7c5df;
    --shadow-lg: 0 35px 80px rgba(0, 0, 0, 0.45);
    --text-main: #e8edf7;
    --text-soft: #b7c5df;
    --text-fade: #7f8caf;
    --accent: #f4c430;
    --accent-2: #4fe4c1;
    --danger: #ff6b6b;
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 35px 80px rgba(0, 0, 0, 0.4);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-main: 'Space Grotesk', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

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

::selection {
    background: rgba(79, 228, 193, 0.25);
    color: var(--text-main);
}

body {
    font-family: var(--font-main);
    background:
        radial-gradient(120% 120% at 18% 12%, rgba(79, 228, 193, 0.12), transparent 42%),
        radial-gradient(100% 100% at 82% 5%, rgba(244, 196, 48, 0.16), transparent 38%),
        linear-gradient(180deg, #0b1020 0%, #090d18 100%);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    height: 2px;
    width: 90px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -14px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-soft);
    max-width: 780px;
    margin: 0.5rem auto 3rem;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary {
    background: linear-gradient(120deg, #f7d978 0%, #f6b042 50%, #f87c25 100%);
    color: #0b1020;
    box-shadow: 0 18px 40px rgba(248, 125, 37, 0.25);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 50px rgba(248, 125, 37, 0.3);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    background: rgba(79, 228, 193, 0.08);
    border: 1px solid rgba(79, 228, 193, 0.6);
    color: var(--text-main);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(79, 228, 193, 0.16);
    border-color: rgba(244, 196, 48, 0.55);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 17, 32, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 86px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

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

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-soft);
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--text-main);
}

/* Hero */
.hero {
    padding-top: 190px;
    padding-bottom: 6rem;
    background:
        radial-gradient(140% 120% at 12% 30%, rgba(79, 228, 193, 0.14), transparent 45%),
        radial-gradient(120% 120% at 80% -10%, rgba(244, 196, 48, 0.16), transparent 40%),
        linear-gradient(180deg, rgba(11, 16, 32, 0.95) 0%, rgba(10, 15, 26, 0.92) 100%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 80% 30%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.3rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.12rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    max-width: 640px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.trust-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-item span {
    color: var(--accent-2);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-image {
    position: relative;
    isolation: isolate;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, rgba(244, 196, 48, 0.35), rgba(79, 228, 193, 0.25));
    filter: blur(18px);
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 520px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

/* About */
.about {
    background: linear-gradient(180deg, rgba(17, 27, 48, 0.7), rgba(10, 15, 26, 0.8));
}

.about-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.about-text p {
    color: var(--text-soft);
    margin-bottom: 1.1rem;
}

.about-image {
    height: 420px;
    background: linear-gradient(120deg, rgba(244, 196, 48, 0.12), rgba(79, 228, 193, 0.12));
    padding: 10px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 6px);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.stat-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.stat-item h4 {
    font-size: 2.35rem;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.stat-item p {
    color: var(--text-soft);
}

/* Mission */
.mission {
    background: linear-gradient(90deg, rgba(16, 26, 49, 0.75), rgba(11, 21, 40, 0.75));
    color: var(--text-main);
    text-align: center;
    padding: 6rem 0;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 70% at 50% 30%, rgba(255, 255, 255, 0.04), transparent 60%);
    pointer-events: none;
}

.mission h2 {
    margin-bottom: 1.8rem;
}

.mission p {
    font-size: 1.3rem;
    color: var(--text-soft);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Advantages */
.advantages {
    background: #0a0f1a;
}

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

.advantage-card {
    padding: 1.75rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(18px);
}

.advantage-card::after {
    content: '';
    position: absolute;
    inset: -40% 40% 60% -40%;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.18), transparent 55%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(244, 196, 48, 0.6);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: rgba(244, 196, 48, 0.12);
    border: 1px solid rgba(244, 196, 48, 0.45);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.advantage-card h3 {
    color: var(--text-main);
    margin-bottom: 0.65rem;
    z-index: 1;
    position: relative;
}

.advantage-card p {
    color: var(--text-soft);
    z-index: 1;
    position: relative;
}

/* Warning Signs */
.warning-signs {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(244, 196, 48, 0.05));
    border-top: 1px solid rgba(255, 107, 107, 0.25);
    border-bottom: 1px solid rgba(244, 196, 48, 0.2);
}

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

.warning-card {
    background: rgba(28, 17, 20, 0.65);
    padding: 1.6rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 107, 0.45);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.warning-card h3 {
    color: #ff8fa3;
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.warning-card p {
    color: var(--text-soft);
}

/* Quiz */
.quiz-section {
    background: #0a101a;
}

.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface-alt);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.quiz-progress {
    height: 10px;
    background: var(--muted);
    border-radius: 20px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
    width: 0%;
    transition: width 0.4s ease;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.35s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-size: 1.45rem;
    text-align: center;
    margin-bottom: 1.75rem;
}

.quiz-options {
    display: grid;
    gap: 0.9rem;
}

.quiz-option {
    width: 100%;
    padding: 1.15rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.quiz-option::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(244, 196, 48, 0.12), rgba(79, 228, 193, 0.14));
    opacity: 0;
    transition: var(--transition);
}

.quiz-option:hover {
    border-color: rgba(244, 196, 48, 0.6);
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.quiz-option:hover::after {
    opacity: 1;
}

.quiz-result {
    text-align: center;
}

.result-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 10px solid rgba(244, 196, 48, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    background: radial-gradient(circle, rgba(79, 228, 193, 0.18), rgba(244, 196, 48, 0.12));
    box-shadow: var(--shadow-soft);
}

.quiz-result .result-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.quiz-result .result-sub {
    color: var(--text-soft);
    margin: 0 auto 1.9rem;
    max-width: 520px;
}

/* Process */
.process {
    background: linear-gradient(180deg, #0a0f1a, #0b1526);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.process-step {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.3rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    backdrop-filter: blur(14px);
}

.step-number {
    width: 54px;
    height: 54px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.3), rgba(244, 196, 48, 0.08));
    border: 1px solid rgba(244, 196, 48, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    font-weight: 800;
    color: var(--text-main);
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-soft);
}

/* Team */
.team {
    background: linear-gradient(180deg, #0b1526 0%, #0a0f1a 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.team-card {
    background: var(--surface-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35));
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    border-color: rgba(244, 196, 48, 0.45);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 1.8rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.45rem;
}

.team-role {
    color: var(--accent-2);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    display: block;
    letter-spacing: 0.06em;
}

.team-quote {
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* FAQ */
.faq {
    background: #0a101a;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.faq-item.active {
    border-color: rgba(244, 196, 48, 0.6);
    background: var(--surface-alt);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.6rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.6rem;
    color: var(--text-soft);
}

.faq-item.active .faq-answer {
    max-height: 320px;
    padding-bottom: 1.4rem;
}

/* Contact */
.contact {
    background: linear-gradient(180deg, #0b0f1a, #0d1322);
    color: var(--text-main);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--text-main);
    -webkit-text-fill-color: unset;
    background: none;
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}

.contact .section-subtitle {
    color: var(--text-soft);
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--surface-alt);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(244, 196, 48, 0.6);
    box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.15);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.contact .cta-submit {
    width: 100%;
    padding: 1.15rem;
    font-size: 1.05rem;
}

.contact .form-note {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-top: 1.4rem;
    text-align: center;
}

.contact .form-note a {
    text-decoration: underline;
    color: var(--accent-2);
}

.contact .form-note a:hover {
    color: var(--accent);
}

/* Footer */
.footer {
    background: rgba(7, 11, 20, 0.9);
    color: var(--text-soft);
    padding: 4rem 0 2.5rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-soft);
}

.footer-links a:hover {
    color: var(--accent-2);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.6rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: rgba(11, 16, 32, 0.72);
    border-top: 1px solid var(--border);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.cookie-text {
    max-width: 760px;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.8rem 1.4rem;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: rgba(244, 196, 48, 0.6);
    transform: translateY(-1px);
}

.cookie-banner.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 2.5rem;
    }
}

@media (max-width: 820px) {
    .nav-menu {
        position: fixed;
        top: 86px;
        left: 0;
        width: 100%;
        background: rgba(10, 13, 24, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-strong);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

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

    .hamburger {
        display: block;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-image img,
    .hero-image-placeholder {
        height: 420px;
    }

    .quiz-container,
    .contact-container {
        padding: 1.8rem;
    }
}

@media (max-width: 560px) {
    section {
        padding: 4rem 0;
    }

    .header-inner {
        height: 76px;
    }

    .logo {
        font-size: 1.35rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .quiz-option {
        font-size: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
