/* ═══════════════════════════════════════════════════════════════════════════
   PapaSystem — Landing Page Styles
   Color palette: Primary Blue #0EA5E9 · Navy #0F172A · Orange #F59E0B · Green #10B981
   Font: Inter 400/500/600/700
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Cross-Browser Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
a { text-decoration: none; color: inherit; }

:root {
    --blue: #0EA5E9;
    --blue-dark: #0284C7;
    --navy: #0F172A;
    --orange: #F59E0B;
    --orange-dark: #D97706;
    --green: #10B981;
    --bg: #F8FAFC;
    --text: #111827;
    --text-secondary: #64748B;
    --text-dim: #94A3B8;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography ─── */
.section-header { 
    text-align: center; 
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(14,165,233,0.2);
}
.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    outline: none;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-primary {
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(14,165,233,0.3);
}
.btn-primary:hover { 
    background: var(--blue-dark); 
    box-shadow: 0 6px 20px rgba(14,165,233,0.4); 
    transform: translateY(-2px); 
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: #F1F5F9; border-color: #CBD5E1; }
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--white); border-color: #CBD5E1; box-shadow: var(--shadow-sm); }

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248,250,252,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    height: 60px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.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);
}
.nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.15s;
    position: relative;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.2s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 560px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(14,165,233,0.2);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-highlight { 
    color: var(--blue);
    position: relative;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 500;
}
.hero-subtitle strong {
    color: var(--navy);
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-top: 8px;
}
.hero-subtitle .star {
    color: #EF4444;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}
.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero-stats {
    display: inline-flex;
    gap: 12px;
    margin-top: 32px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    border-radius: 12px;
    border: 1px solid rgba(14,165,233,0.25);
    box-shadow: 0 2px 8px rgba(14,165,233,0.1);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-illustration {
    width: 100%;
    max-width: 520px;
    height: auto;
}
.float-item {
    animation: floatY 5s ease-in-out infinite;
}
.float-1 { animation-delay: 0s; }
.float-2 { animation-delay: 1s; }
.float-3 { animation-delay: 2s; }
.float-4 { animation-delay: 0.5s; }
.float-5 { animation-delay: 1.5s; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   YOU ARE IN THE RIGHT PLACE IF
   ═══════════════════════════════════════════════════════════════════════════ */
.right-place {
    padding: 60px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.right-place-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.right-place-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECFDF5;
    color: #10B981;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════════════════════════════ */
.benefits {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefits-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}
.benefit-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.25s var(--ease);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent, var(--blue));
    opacity: 0;
    transition: opacity 0.25s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--card-accent, var(--blue));
}
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}
.benefit-desc {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUESTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.questions {
    padding: 80px 0;
}
.questions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.question-tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}
.question-tile:hover,
.question-tile:focus {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.question-icon,
.question-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #E0F2FE;
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 14px;
}

#contact-fields {
    display: none;
    padding: 16px;
    background: var(--bg-subtle);
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid var(--border);
}
#contact-fields .field {
    margin-bottom: 12px;
}
#contact-fields .field:last-child {
    margin-bottom: 0;
}
.question-tile h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 8px;
}
.question-tile p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ASSESSMENT / QUIZ
   ═══════════════════════════════════════════════════════════════════════════ */
.assessment {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.assessment-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.assessment-header {
    text-align: center;
    margin-bottom: 32px;
}
.quiz-progress {
    margin-bottom: 28px;
}
.quiz-progress-bar {
    height: 6px;
    background: #E2E8F0;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
}
.quiz-progress-fill {
    height: 100%;
    background: var(--blue);
    border-radius: 100px;
    transition: width 0.4s var(--ease);
}
.quiz-step-counter {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
}

/* Quiz Steps */
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.quiz-card {
    background: var(--bg);
    border: 2px solid var(--blue);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.1), 0 4px 20px rgba(14,165,233,0.08);
}
.quiz-q-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--blue);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.quiz-question {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
}
.quiz-hint {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Example Tags */
.quiz-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.example-tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    cursor: default;
    transition: all 0.2s ease;
}
.example-tag:hover {
    border-color: var(--blue);
    background: #F0F9FF;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.1), 0 2px 8px rgba(14,165,233,0.1);
    color: var(--blue-dark);
}

/* Quiz Inputs */
.quiz-card textarea,
.quiz-fields input,
.quiz-fields select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    resize: vertical;
}
.quiz-card textarea:focus,
.quiz-fields input:focus,
.quiz-fields select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(14,165,233,0.15);
}
.quiz-card textarea::placeholder,
.quiz-fields input::placeholder { color: var(--text-dim); }
.quiz-card textarea { min-height: 120px; line-height: 1.6; }
.quiz-card textarea:last-of-type { margin-top: 12px; min-height: 80px; }

.quiz-fields { display: flex; flex-direction: column; gap: 16px; }
.field-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.field-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%230EA5E9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 500;
    background-color: var(--white);
    transition: all 0.2s ease;
}
.field-group select:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(14,165,233,0.1);
}
.field-group select option {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.quiz-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.quiz-check:hover { border-color: var(--blue); background: #F0F9FF; }
.quiz-check input { display: none; }
.check-box {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #CBD5E1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.check-box::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) scale(0);
    transition: transform 0.15s;
    margin-top: -2px;
}
.quiz-check input:checked + .check-box {
    background: var(--blue);
    border-color: var(--blue);
}
.quiz-check input:checked + .check-box::after { transform: rotate(-45deg) scale(1); }
.quiz-check:has(input:checked) {
    border-color: var(--blue);
    background: #E0F2FE;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quiz-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.quiz-radio:hover { border-color: var(--blue); background: #F0F9FF; }
.quiz-radio input { display: none; }
.radio-dot {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.radio-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    transition: transform 0.15s;
}
.quiz-radio input:checked + .radio-dot {
    background: var(--blue);
    border-color: var(--blue);
}
.quiz-radio input:checked + .radio-dot::after { transform: scale(1); }
.quiz-radio:has(input:checked) {
    border-color: var(--blue);
    background: #E0F2FE;
}

/* Quiz Nav */
.quiz-nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Results */
.results-screen { display: none; }
.results-screen.active { display: block; animation: fadeIn 0.4s ease; }
.results-screen h2 { margin-bottom: 16px; }
.results-screen p { margin-bottom: 12px; line-height: 1.7; }
.results-screen p:last-child { margin-bottom: 0; }
.results-subtext { font-size: 15px; color: #64748B; }
.results-card {
    text-align: center;
    padding: 56px 40px;
    background: var(--bg);
    border: 2px solid var(--green);
    border-radius: 20px;
    box-shadow: 0 0 0 6px rgba(16,185,129,0.08), 0 4px 24px rgba(16,185,129,0.12);
}
.results-icon { margin-bottom: 24px; }
.results-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
.results-card p {
    font-size: 16px;
    color: var(--text);
    max-width: 460px;
    margin: 0 auto 12px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHAT HAPPENS NEXT - TIMELINE
   ═══════════════════════════════════════════════════════════════════════════ */
.what-happens {
    padding: 80px 0;
    background: var(--bg);
}
.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--border);
}
.timeline-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}
.timeline-step:last-child {
    margin-bottom: 0;
}
.timeline-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.timeline-content {
    padding-top: 6px;
}
.timeline-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY THIS RESEARCH EXISTS
   ═══════════════════════════════════════════════════════════════════════════ */
.research {
    padding: 80px 0;
    background: var(--white);
}
.research-content {
    max-width: 640px;
}
.research-text p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.research-text p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOUNDER NOTE
   ═══════════════════════════════════════════════════════════════════════════ */
.founder-note {
    padding: 60px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.founder-card {
    max-width: 700px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.founder-avatar {
    flex-shrink: 0;
}
.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.founder-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}
.founder-text p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 14px;
}
.founder-text p:last-of-type {
    margin-bottom: 0;
}
.founder-signature {
    font-family: 'Alex Brush', cursive;
    font-size: 28px;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 0;
    line-height: 1.2;
}
.founder-role {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════════════════════════════════ */
.trust {
    padding: 80px 0;
}
.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    padding: 12px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
}
.logo-item:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 12px rgba(14,165,233,0.1);
}
.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.2s ease;
}
.testimonial-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(14,165,233,0.08);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}
.testimonial-author span {
    font-size: 12px;
    color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    padding: 32px 0 24px;
    border-top: 1px solid var(--border);
    background: var(--white);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-illustration { max-width: 400px; }
    .benefits-grid, .benefits-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .questions-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .right-place-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(248,250,252,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links a { width: 100%; text-align: center; padding: 12px; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: 28px; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .hero-illustration { max-width: 320px; }
    .benefits-grid, .benefits-grid--4 { grid-template-columns: 1fr; }
    .questions-grid { grid-template-columns: 1fr; }
    .trust-logos { gap: 12px; }
    .trust-logos .logo-item { padding: 10px 14px; font-size: 13px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .right-place-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .founder-card { flex-direction: column; align-items: center; text-align: center; }
    .founder-text h3 { font-size: 18px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .quiz-card { padding: 24px 20px; }
    .quiz-nav { flex-direction: column-reverse; }
    .quiz-nav .btn { width: 100%; }
    .section-title { font-size: 24px; }
    .quiz-question { font-size: 18px; }
    .quiz-options { gap: 10px; }
    .quiz-check, .quiz-radio { min-height: 44px; }
    input, select, textarea { font-size: 16px !important; }
    .results-card { padding: 32px 20px; }
    .results-card h2 { font-size: 22px; }
    .results-card p { font-size: 14px; }
    .founder-card { gap: 24px; }
    .founder-text h3 { font-size: 16px; }
    .founder-text p { font-size: 14px; }
    .timeline-step { gap: 16px; }
    .timeline-content h3 { font-size: 14px; }
    .timeline-content p { font-size: 13px; }
}
