* {
    box-sizing: border-box;
}

:root {
    --bg: #0f172a;
    --bg-soft: #f5f8ff;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #5b6476;
    --primary: #1d4ed8;
    --primary-dark: #143aa0;
    --accent: #f59e0b;
    --border: rgba(15, 23, 42, 0.1);
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.section-pad {
    padding: 4rem 0;
}

.alt-bg {
    background: var(--bg-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--border);
}

.nav-bar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand strong {
    display: block;
    font-size: 0.98rem;
}

.brand small {
    display: block;
    color: var(--muted);
}

.brand-logo {
    width: 150px;
    height: auto;
    max-width: none;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-left: auto;
    min-width: 0;
    max-width: 100%;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 0.15rem;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}

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

.primary-nav a.is-active,
.primary-nav a[aria-current="page"] {
    color: var(--primary);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 14px;
    padding: 0.75rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 999px;
    flex: 0 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        url("images/IMG_3809.jpg.jpeg") center center / cover no-repeat,
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.82) 42%,
        rgba(255, 255, 255, 0.55) 100%
    );
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-grid,
.founder-grid,
.contact-grid,
.footer-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.hero-grid {
    align-items: center;
    min-height: clamp(580px, 72vh, 780px);
    padding-block: 0.75rem;
}

.hero h1,
.section-heading h2,
.founder-grid h2,
.contact-grid h2,
.footer-cta h2 {
    line-height: 1.1;
    margin: 0;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    max-width: 12ch;
}

.lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 60ch;
}

.eyebrow {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.hero-actions,
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
    max-width: 44rem;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.08);
    color: var(--primary);
    font-size: 0.96rem;
    font-weight: 600;
    border: 1px solid rgba(29, 78, 216, 0.12);
    line-height: 1.35;
    max-width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: #fff;
    border: 1px solid transparent;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.btn-outline {
    background: #fff;
    color: var(--text);
    border-color: var(--border);
    box-shadow: none;
}

.btn-small {
    padding: 0.8rem 1rem;
}

.primary-nav .btn {
    background: var(--primary); /* Solid dark color */
    color: #ffffff;
    border-radius: 999px; /* Pill shape for intuitiveness */
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.2);
    transition: all 0.3s ease;
}

.primary-nav .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.22);
}

.btn-full {
    width: 100%;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-meta div {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.hero-meta strong {
    display: block;
    font-size: 1.05rem;
}

.hero-meta span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-card,
.info-card,
.format-card,
.step-card,
.testimonial-card,
.pricing-card,
.founder-card,
.form-card,
.map-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card,
.info-card,
.format-card,
.step-card,
.testimonial-card,
.pricing-card,
.founder-card,
.form-card,
.map-card,
.exam-card,
.exam-flow,
.exam-section,
.section-heading,
.primary-nav a {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-card {
    padding: 1.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.featured-img {
    border-radius: var(--radius);
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.founder-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(3.05);
    transform-origin: center 56%;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.format-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 6px);
    margin-bottom: 1rem;
}

.card-tag,
.price-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.checklist li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading.narrow {
    max-width: 680px;
}

.section-heading p {
    color: var(--muted);
}

.cards-grid {
    display: grid;
    gap: 1.2rem;
}

.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
}

.image-stack {
    display: grid;
    gap: 1rem;
    align-self: start;
}

.target-visual {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.target-visual .featured-img {
    width: 100%;
}

.assessment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: start;
}

.assessment-copy {
    display: grid;
    gap: 1.5rem;
}

.target-card {
    display: grid;
    gap: 0.65rem;
    padding: 1.25rem 1.35rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.target-card h3,
.assessment-panel p,
.assessment-panel strong {
    margin: 0;
}

.target-badge {
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
}

.target-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    min-height: 560px;
    object-fit: cover;
    object-position: center center;
    background: transparent;
    padding: 0;
}

.pricing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.pricing-hero,
.pricing-visual,
.pricing-card {
    min-width: 0;
}

.pricing-card {
    max-width: none;
}

.pricing-visual {
    display: grid;
    gap: 1rem;
}

.pricing-hero-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.pricing-hero-card {
    padding: 1.4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.target-note {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--muted);
}

.assessment-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.assessment-badge {
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.assessment-badge strong {
    display: block;
    margin-bottom: 0.2rem;
}

.assessment-badge span {
    color: var(--muted);
    font-size: 0.95rem;
}

.assessment-panel {
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--accent);
    background: #fff7e6;
    border-radius: 14px;
    display: grid;
    gap: 0.35rem;
}

.exam-flow {
    width: 100%;
    display: grid;
    gap: 1.5rem;
}

.exam-section {
    width: 100%;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.exam-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.08);
}

.exam-section::before {
    content: none;
}

.exam-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.exam-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 14px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.exam-section h3 {
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
}

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

.exam-grid.three-up {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.exam-score-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.exam-card--wide {
    grid-column: 1 / -1;
}

.exam-card {
    width: 100%;
    padding: 1.25rem;
    min-width: 0;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #f8fbff;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.exam-card:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.08);
}

.exam-card h4 {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-weight: 600;
}

.exam-card p {
    margin: 0;
    color: var(--muted);
}

.exam-options {
    display: grid;
    gap: 0.65rem;
}

.exam-option {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.exam-option:hover {
    border-color: var(--primary);
    background: #f8fbff;
}

.exam-option input {
    margin: 0;
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--primary);
}

.exam-audio {
    width: 100%;
    margin-top: 1rem;
    border-radius: 12px;
}

.exam-textarea,
.exam-input {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    font-family: inherit;
}

.exam-textarea {
    resize: vertical;
    min-height: 120px;
}

.exam-input:focus,
.exam-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.08);
}

.exam-note {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.exam-timer-wrap {
    position: fixed;
    top: 108px;
    left: max(1rem, calc((100vw - 1120px) / 2));
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(29, 78, 216, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.section-heading.narrow {
    padding-top: 4.5rem;
}

.exam-timer-label {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.exam-timer {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 5ch;
}

.exam-submit-wrap {
    margin-top: 2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f8fbff, #f0f5ff);
    border: 1px solid rgba(29, 78, 216, 0.15);
    border-radius: 24px;
    text-align: center;
}

/* --- Simple Recorder --- */
.simple-recorder {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: center;
}

.recorder-main-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.recorder-main-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    white-space: nowrap; /* Prevent text wrapping */
}

@media (max-width: 480px) {
    .recorder-main-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
}

.recorder-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.recorder-main-btn.is-recording {
    background: #ef4444;
    animation: simplePulse 2s infinite;
}

.recorder-live-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #ef4444;
    font-size: 1.2rem;
}

.recorder-dot {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: dotPulse 1s infinite;
}

.recorder-result {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}

.recorder-audio-preview {
    width: 100%;
}

.recorder-delete-btn {
    background: transparent;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recorder-delete-btn:hover {
    background: #fef2f2;
}

.recorder-status-msg {
    font-size: 0.9rem;
    color: var(--muted);
}

@keyframes simplePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.contact-card {
    display: grid;
    gap: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.exam-field {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.exam-field span {
    font-weight: 600;
    color: var(--text);
}

.phone-input {
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    gap: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 0.5rem;
}

.phone-country-select,
.phone-number-input {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.phone-country-select {
    padding-right: 2.6rem;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position:
        calc(100% - 1.1rem) calc(50% - 3px),
        calc(100% - 0.8rem) calc(50% - 3px);
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

.phone-number-input {
    padding: 0.95rem 0.9rem;
}

.phone-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.exam-form.is-locked .exam-section {
    pointer-events: none;
}

.exam-form.is-locked .exam-submit-wrap {
    pointer-events: auto;
}

.recorder-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.recorder-controls .btn {
    min-width: fit-content;
}

.recorder-preview {
    margin-top: 0.5rem;
}

.exam-submit-hint {
    margin: 0 0 1rem;
    color: var(--muted);
    font-weight: 500;
}

.exam-submit-wrap .btn-full {
    font-size: 1.1rem;
    padding: 1.15rem 2rem;
    border-radius: 16px;
}

.submission-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.submission-modal[hidden] {
    display: none !important;
}

.submission-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
}

.submission-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 520px);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(29, 78, 216, 0.12);
    padding: 1.5rem;
    text-align: center;
}

.submission-modal__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.submission-modal__dialog h2 {
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.submission-modal__dialog p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.submission-modal__btn {
    width: 100%;
}

@keyframes recorderPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 22px 38px rgba(37, 99, 235, 0.34);
    }
}

@keyframes statusPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.32);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

@media (max-width: 640px) {
    .recorder-controls .btn {
        width: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .exam-timer-wrap {
        left: 1rem;
        right: 1rem;
        top: 92px;
        width: auto;
        justify-content: space-between;
    }

    .recorder-mic-button {
        min-height: 60px;
    }

    .recorder-secondary-actions {
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .phone-input {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .phone-country-select,
    .phone-number-input {
        min-height: 54px;
    }

    .phone-country-select {
        padding-right: 2.4rem;
    }

    .hero-highlights {
        gap: 0.5rem;
        max-width: none;
    }

    .hero-highlights span {
        width: 100%;
    }
}

.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.format-card,
.step-card,
.testimonial-card,
.faq-card,
.founder-card {
    padding: 1.4rem;
}

.step-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary);
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.founder-image-wrap {
    overflow: hidden;
    border-radius: var(--radius);
}

.pricing-wrap {
    display: grid;
    gap: 1.5rem;
}

.pricing-card {
    padding: 1.8rem;
    max-width: 780px;
}

.price {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin: 0.2rem 0;
}

.price-sub {
    color: var(--muted);
    margin-top: 0;
}

.pricing-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.3rem 0 1.5rem;
}

.stars {
    color: #f59e0b;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.important {
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--accent);
    background: #fff7e6;
    border-radius: 14px;
    font-weight: 600;
}

.form-card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.map-card {
    overflow: hidden;
}

.map-embed {
    width: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.form-card label {
    display: grid;
    gap: 0.45rem;
    color: var(--text);
    font-weight: 500;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    outline: none;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: rgba(29, 78, 216, 0.45);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.08);
}

.form-note {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
    min-height: 1.4em;
}

.site-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem 2rem;
    align-items: center;
    color: var(--muted);
}

.footer-brand {
    display: grid;
    gap: 0.5rem;
}

.footer-brand p {
    margin: 0;
}

.footer-brand .brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-inner > p {
    margin: 0;
    font-weight: 500;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 1120px) {
    .nav-bar {
        align-items: center;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        order: 2;
        position: relative;
        z-index: 95;
    }

    .primary-nav {
        position: absolute;
        inset: calc(100% + 0.75rem) 1rem auto 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        padding: 1rem;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: 0.2s ease;
        z-index: 110;
    }

    .primary-nav a {
        width: 100%;
        padding: 0.75rem 0.9rem;
        border-radius: 14px;
        background: var(--bg-soft);
        white-space: normal;
        text-align: center;
    }

    .primary-nav a.btn {
        width: 100%;
    }

    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero-grid,
    .founder-grid,
    .contact-grid,
    .footer-cta,
    .pricing-hero,
    .two-up,
    .three-up,
    .steps-grid,
    .pricing-columns {
        grid-template-columns: 1fr;
    }

    .pricing-hero {
        gap: 1.25rem;
    }

    .pricing-hero-img {
        aspect-ratio: 16 / 10;
    }

    .exam-grid,
    .exam-grid.three-up,
    .exam-score-grid,
    .assessment-badges {
        grid-template-columns: 1fr;
    }

    .exam-section,
    .pricing-hero-card,
    .pricing-card {
        padding: 1rem;
    }

    .hero h1 {
        max-width: 100%;
    }

    .section-pad {
        padding: 4rem 0;
    }
}

@media (min-width: 1121px) {
    .primary-nav {
        position: static;
        display: flex;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .primary-nav a {
        background: transparent;
        width: auto;
        padding: 0;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 5.5rem;
    }

    .footer-center {
        justify-content: center;
    }

    .brand-logo {
        width: 120px;
        height: auto;
    }

    .brand-text {
        display: none;
    }

    .whatsapp-cta-wrap {
        width: min(1120px, calc(100% - 1.25rem));
        margin: 1.5rem auto 0;
    }

    .floating-whatsapp {
        padding: 0.8rem 1rem;
        font-size: 0.98rem;
    }

    .container {
        width: min(1120px, calc(100% - 1.25rem));
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .form-card,
    .exam-flow,
    .exam-section,
    .exam-card {
        width: 100%;
        max-width: 100%;
    }

    .exam-grid,
    .exam-grid.three-up,
    .exam-score-grid {
        grid-template-columns: 1fr;
    }

    .exam-option {
        width: 100%;
    }

    .exam-table-wrap {
        width: 100%;
    }

    .pricing-hero-img {
        aspect-ratio: 4 / 3;
    }

    .exam-evaluation th,
    .exam-evaluation td {
        padding: 0.65rem;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 12vw, 3.1rem);
    }

    .btn,
    .btn-outline {
        width: 100%;
    }

    .hero-actions,
    .contact-links {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .target-grid,
    .assessment-layout,
    .assessment-badges {
        grid-template-columns: 1fr;
    }

    .primary-nav {
        grid-template-columns: 1fr;
        inset: calc(100% + 0.75rem) 0.75rem auto 0.75rem;
    }

    .map-embed {
        min-height: 320px;
    }
}

.whatsapp-cta-wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: 2rem auto 0;
    display: flex;
    justify-content: flex-end;
}

.floating-whatsapp {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 1.02rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    white-space: nowrap;
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}
