/* ========= RESET ========= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #4A4A4A;
    background: #FDF1F5; /* soft theme background */
}

/* ========= COLOUR TOKENS ========= */
:root {
    /* Main theme */
    --primary:       #C94F7C;
    --primary-dark:  #A43962;
    --primary-light: #FDF1F5;
    --primary-soft:  #FAD3E3;

    /* Re-map old tokens into the new palette */
    --pastel-blue:   var(--primary-light);
    --pastel-pink:   var(--primary-soft);
    --pastel-yellow: #FBE6B8;
    --pastel-green:  #F8E3F0;
    --pastel-lilac:  #E6B9D5;
    --coral:         var(--primary);
    --soft-orange:   #E57BA0;

    --dark-blue:     #2C3E50;
    --dark-grey:     #4A4A4A;
    --med-grey:      #5C5C5C;
    --white:         #FFFFFF;
}

/* ========= UTILITIES ========= */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.center {
    text-align: center;
}

.section {
    padding: 3.5rem 0;
}

.section-light {
    background: #FFFFFF;
}

/* Generic headings */
.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--dark-grey);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.section-heading h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--dark-blue);
    margin-bottom: 0.35rem;
}

.section-heading p {
    font-size: 0.95rem;
    color: var(--dark-grey);
}

/* ========= HEADER / NAV ========= */
.site-header {
    height:80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    gap: 1.5rem;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Logo container controls the height (navbar stays slim) */
.brand-logo-box {
    height: 80px;            /* ← change this number to make logo bigger/smaller */
    display: flex;
    align-items: center;
}

/* Image fills the box height */
.brand-logo-box img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Text next to logo */
.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--dark-grey);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    font-size: 0.85rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* NAV ENROLL BUTTON */
.nav-enroll-btn {
    background: var(--primary);
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.2s;
    white-space: nowrap;
}

.nav-enroll-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ========= BUTTONS ========= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.btn-small {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
}

/* Primary CTA */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Secondary CTA */
.btn-secondary {
    background: var(--pastel-lilac);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* Outline / ghost */
.btn-outline {
    background: #FFFFFF;
    color: var(--dark-blue);
    border: 1px solid #DDDDDD;
}

.btn-outline:hover {
    background: #F5F5F5;
}

.btn-ghost {
    background: transparent;
    color: var(--dark-blue);
    border: 1px dashed #CCCCCC;
}

.btn-ghost:hover {
    background: #F9FAFB;
}

.full-width {
    width: 100%;
}

/* ========= HERO ========= */
.section-hero {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-soft));
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4.5rem 0;
    color: var(--dark-grey);
}

.hero-ll-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-ll-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* LEFT */
.hero-ll-copy {
    max-width: 560px;
}

.hero-ll-title {
    font-weight: 800;
    font-size: clamp(2.6rem, 3.5vw, 3.1rem);
    color: var(--dark-blue);
    margin-bottom: 0.4rem;
}

.hero-ll-subtitle {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 1.2rem;
}

.hero-ll-copy h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.7rem;
}

.hero-ll-copy p {
    font-size: 0.96rem;
    color: var(--med-grey);
    line-height: 1.8;
}

.hero-ll-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-start;
}

/* RIGHT */
.hero-ll-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-ll-image img {
    width: 100%;
    max-width: 520px;
    display: block;
    object-fit: cover;
}

/* HERO RESPONSIVE */
@media (max-width: 960px) {
    .section-hero {
        min-height: auto;
        padding: 3.5rem 0 3rem;
    }

    .hero-ll-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-ll-image {
        justify-content: center;
        width: 100%;
    }

    .hero-ll-image img {
        max-width: 400px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-ll-main {
        align-items: center;
        text-align: center;
    }

    .hero-ll-copy {
        max-width: 100%;
    }

    .hero-ll-cta {
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }
}

/* ========= WHO IS THIS PROGRAM FOR ========= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: 2.2rem;
}

.feature-card {
    position: relative;
    border-radius: 26px;
    padding: 1.7rem 1.2rem 1.4rem;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
    text-align: center;
}

.feature-tag {
    position: absolute;
    top: -14px;
    left: 18px;
    padding: 0.35rem 0.85rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    transform: rotate(-6deg);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.5;
    margin-top: 0.4rem;
}

.feature-emoji {
    font-size: 1.6rem;
    margin-top: 0.6rem;
}

.feature-bar {
    margin-top: 0.7rem;
    width: 70%;
    height: 6px;
    border-radius: 999px;
    align-self: center;
}

/* card colours tuned to theme */
.card-1 { background: #FDE1EB; }
.card-1 .feature-tag,
.card-1 .feature-bar { background: var(--primary); }

.card-2 { background: #FFF4E1; }
.card-2 .feature-tag,
.card-2 .feature-bar { background: var(--pastel-yellow); }

.card-3 { background: #FDE1EB; }
.card-3 .feature-tag,
.card-3 .feature-bar { background: var(--primary); }

.card-4 { background: #FFF4E1; }
.card-4 .feature-tag,
.card-4 .feature-bar { background: var(--pastel-yellow); }

.card-5 { background: #FDE1EB; }
.card-5 .feature-tag,
.card-5 .feature-bar { background: var(--primary); }

.card-6 { background: #FFF4E1; }
.card-6 .feature-tag,
.card-6 .feature-bar { background: var(--pastel-yellow); }

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ========= SOLVE SMART TECHNIQUE ========= */
.howworks-section {
    background: var(--primary-light);
    padding: 4rem 0;
}

.howworks-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
    gap: 2.8rem;
    align-items: center;
}

.howworks-text h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.howworks-intro {
    font-size: 0.95rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.howworks-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.howworks-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-blue);
}

.howworks-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}

/* circle layout for icons */
.howworks-wheel {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.wheel-item {
    position: absolute;
    width: 120px;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    transform: translate(-50%, -50%);
}

.wheel-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0.4rem;
}

.wheel-item p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* approximate positions */
.step-1 { top: 8%;  left: 50%; }
.step-2 { top: 32%; left: 90%; }
.step-3 { top: 75%; left: 75%; }
.step-4 { top: 75%; left: 25%; }
.step-5 { top: 32%; left: 10%; }

@media (max-width: 900px) {
    .howworks-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .howworks-wheel {
        position: static;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .wheel-item {
        position: static;
        transform: none;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .howworks-wheel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========= WHAT YOUR CHILD WILL ACHIEVE ========= */
#learn {
    background: var(--primary);
    padding: 4rem 0;
}

.learn-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
    gap: 3rem;
    align-items: center;
}

/* image side */
.learn-photo-block {
    display: flex;
    justify-content: center;
}

.learn-photo-frame {
    background: #ffffff;
    padding: 10px;
    border-radius: 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: rotate(-6deg);
    max-width: 340px;
}

.learn-photo-frame img {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* text side */
#learn .section-heading h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
}

#learn .section-tag {
    color: #FDE68A;
}

.learn-intro {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #F9FAFB;
}

.achieve-list {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.achieve-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #FDFDFD;
    line-height: 1.6;
}

.achieve-list li::before {
    content: "⭐";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1rem;
    color: #FBBF24;
}

@media (max-width: 960px) {
    .learn-wrapper {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .learn-photo-frame {
        max-width: 260px;
        margin-bottom: 1rem;
        transform: rotate(-4deg);
    }
}

/* ========= MEET YOUR CHILD'S GUIDE ========= */
.tutor-banner {
    background: var(--primary-light);
    padding: 4rem 0;
}

.tutor-inner-ll {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.8fr);
    gap: 3rem;
    align-items: center;
}

.tutor-photo-ring {
    background: #ffffff;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.large-ring {
    width: 340px;
    height: 340px;
}

.tutor-photo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.tutor-copy {
    color: var(--dark-grey);
}

.tutor-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.6rem;
}

.tutor-copy p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.tutor-pill-row {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tutor-pill {
    background: #FFF4E1;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.hide-mobile { display: inline-flex; }

@media (max-width: 600px) {
    .hide-mobile { display: none; }
    .large-ring { width: 260px; height: 260px; }
    .tutor-inner-ll { grid-template-columns: 1fr; text-align: center; }
    .tutor-pill-row { justify-content: center; }
}

/* ========= PRICING SECTION ========= */
.pricing-section {
    background: var(--primary);
    padding: 4rem 0 3.5rem;
    color: #ffffff;
    text-align: center;
}

.pricing-section h2 {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.pricing-tagline {
    color: #FFF4E1;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #FFEED7;
    width: 360px;
    border-radius: 22px;
    padding: 2rem 1.4rem 2.4rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: left;
    color: #222;
    position: relative;
    border: 2px solid #E8D2C0;
}

.pricing-card.highlight {
    background: #FFEED7;
}

.pricing-label {
    background: #ffffff;
    border: 2px solid #222;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.4rem;
}

/* Tick / Cross styling */
.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.45rem;
}

.feature-list .icon {
    font-size: 1rem;
    margin-right: 8px;
    font-weight: 700;
}

.feature-list .icon.cross {
    color: #e03131;   /* red X */
}

.feature-list .icon.tick {
    color: #2f9e44;   /* green tick */
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.btn-buy {
    background: #FFC94F;
    color: #000;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-buy:hover {
    background: #FFE08B;  /* softer yellow on hover */
}

.pricing-footer {
    margin-top: 2.2rem;
    color: #FFD7EC;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========= FAQ SECTION ========= */
.section.section-alt {
    background: var(--primary-light);
}

.section.section-alt:nth-of-type(2) .section-heading h2 {
    color: var(--dark-blue);
}

.section.section-alt:nth-of-type(2) .section-heading p {
    color: var(--dark-grey);
}

.faq-list {
    max-width: 960px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 0.8rem;
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    background: var(--primary);
    color: #FFFFFF;
    position: relative;
}

.faq-item summary::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pastel-yellow);
    display: inline-block;
    margin-right: 0.45rem;
}

.faq-item[open] summary {
    background: var(--primary-dark);
}

.faq-item p {
    padding: 0.7rem 0.9rem 0.9rem;
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* ========= FINAL CTA ========= */
.section-final {
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
}

.final-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.final-text h2 {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.final-text p {
    font-size: 0.95rem;
    color: var(--dark-grey);
    margin-bottom: 1.1rem;
}

.section-final .btn-primary {
    background: var(--primary);
    color: #FFFFFF;
}

.section-final .btn-primary:hover {
    background: var(--primary-dark);
}

.section-final .btn-ghost {
    background: var(--pastel-lilac);
    color: #FFFFFF;
    border: none;
}

.section-final .btn-ghost:hover {
    background: var(--primary);
}

.final-kids img {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

/* ========= FOOTER ========= */
.site-footer {
    padding: 1rem 0 1.2rem;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
}

.footer-inner {
    text-align: center;
    font-size: 0.78rem;
    color: var(--dark-grey);
}

/* ========= GLOBAL RESPONSIVE ========= */
@media (max-width: 960px) {
    .hero-inner,
    .split-layout,
    .learn-grid,
    .before-after-row,
    .pricing-grid,
    .final-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-inner {
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-enroll-btn {
        display: none;
    }
}

/* ========= REGISTRATION HERO ========= */
.section-form-header {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-soft));
    padding: 3.5rem 0 4rem;
}

.form-header-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.form-title-block h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1e2a44;
    margin-bottom: 0.3rem;
}

.form-title-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.8rem;
}

.form-desc {
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========= FORM BODY ========= */
.form-section {
    background: var(--primary-light);
    padding: 3.5rem 0 4rem;
}

.form-container {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.4rem 2.1rem 2.8rem;
    border-radius: 25px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* SECTION BLOCK */
.form-block {
    margin-top: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.form-block h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-block h2 span {
    font-size: 1.25rem;
}

/* INPUTS */
.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #333333;
    font-size: 0.92rem;
}

.form-group label span {
    color: #dc2626;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    border: 1px solid #d5d7dd;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-container input[type="radio"] {
    width: auto !important;
    transform: scale(1.1);
    margin-top: 2px;
}

.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,79,124,0.3);
}

/* RADIO GROUPS */
.radio-group.inline,
.radio-group.column {
    font-size: 0.95rem;
}

.radio-group.inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    align-items: center;
}

.radio-group.column {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    margin: 0;
}

.radio-group input {
    margin: 0;
}

/* SUBMIT AREA */
.submit-area {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background: var(--primary);
    color: #ffffff;
    padding: 0.9rem 1.9rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.final-note {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    color: #6b7280;
}

/* FORM RESPONSIVE */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .form-container {
        padding: 2rem 1.4rem 2.4rem;
    }

    .form-title-block h1 {
        font-size: 2.1rem;
    }
}
