/* =========================================================
   GRACESOULMATE
   Modern Dating / Faith & Values Design
   ========================================================= */

:root {
    --navy: #24324a;
    --navy-soft: #344766;
    --blue: #4f7398;
    --blue-light: #edf4f8;
    --gold: #c39a62;
    --gold-light: #dfc49a;
    --cream: #fcf7f3;
    --warm-white: #fffdfb;
    --white: #ffffff;
    --text: #303b4d;
    --muted: #718096;
    --light-border: #ebe3df;
    --shadow: 0 20px 60px rgba(36, 50, 74, 0.09);
    --radius: 18px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--warm-white);
    color: var(--text);
    line-height: 1.6;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

a {
    color: inherit;
    transition: all var(--transition);
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.section-container {
    width: min(1180px, 88%);
    margin: 0 auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    min-height: 76px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid rgba(32, 46, 66, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.logo {
    text-decoration: none;
    color: var(--navy);

    font-size: 24px;
    font-weight: 750;
    letter-spacing: -0.8px;

    white-space: nowrap;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 3px;

    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;

    padding: 9px 12px;

    color: #586579;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    background: #f1eee8;
}

.nav-links .btn-nav {
    margin-left: 6px;

    padding: 10px 18px;

    background: var(--navy);
    color: #fff !important;

    border-radius: 24px;
    box-shadow: 0 7px 20px rgba(23, 36, 58, 0.15);
}

.nav-links .btn-nav:hover {
    background: #263b5a;
    transform: translateY(-1px);
}

#languageSelect {
    margin-left: 5px;

    padding: 7px 9px;

    color: #536174;
    background: #fff;

    border: 1px solid #ddd9d1;
    border-radius: 8px;

    outline: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

#languageSelect:focus {
    border-color: var(--gold);
}

.btn-toggle {
    width: 35px;
    height: 35px;

    margin-left: 4px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dedbd4;
    border-radius: 50%;

    background: #f4f1eb;
    color: var(--navy);

    font-size: 16px;

    transition: all var(--transition);
}

.btn-toggle:hover {
    transform: rotate(12deg);
    background: #eae6de;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
    display: none;

    width: 31px;
    height: 23px;

    padding: 0;

    flex-direction: column;
    justify-content: space-between;

    background: transparent;
    border: 0;

    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;

    background: var(--navy);
    border-radius: 5px;

    transition: all 0.3s ease;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 680px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px;
    color: #fff;
    background:
        linear-gradient(
            110deg,
            rgba(38, 58, 82, 0.72),
            rgba(79, 115, 152, 0.52)
        ),
        url("hero.jpg")
        center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(216, 189, 139, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        );
}

.hero-content {
    width: min(900px, 100%);

    position: relative;
    z-index: 2;

    text-align: center;
}

.hero-kicker {
    display: inline-block;

    margin-bottom: 23px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-content h1 {
    max-width: 850px;
    margin: 0 auto 25px;

    color: #fff;

    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.07;

    font-weight: 700;
    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
    color: #e1c99d;
}

.hero-content p {
    max-width: 650px;
    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.88);

    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
}

.btn-primary {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 27px;

    background: var(--gold);
    color: #fff;

    border: 0;
    border-radius: 28px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.17);
}

.btn-primary:hover {
    background: #c4a46e;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.9);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.hero-secondary:hover {
    color: #fff;
}

.hero-secondary span {
    font-size: 18px;
}

.hero-note {
    margin-top: 28px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 11px;
    letter-spacing: 0.8px;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-section {
    padding: 105px 0 100px;

    background: var(--warm-white);
}

.intro-container {
    max-width: 820px;

    text-align: center;
}

.section-label {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.intro-section h2,
.section-heading h2,
.free-content h2,
.trust-text h2,
.signup-heading h2 {
    color: var(--navy);

    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.15;

    font-weight: 700;
    letter-spacing: -1.3px;
}

.intro-section h2 span,
.section-heading h2 span,
.free-content h2 span,
.trust-text h2 span,
.signup-heading h2 span {
    color: var(--blue);
}

.intro-section p {
    max-width: 710px;
    margin: 25px auto 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-it-works {
    padding: 100px 0;

    background: #f5f3ee;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading p {
    max-width: 620px;
    margin-top: 18px;

    color: var(--muted);
    font-size: 16px;
}

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

.step-card {
    padding: 30px;

    background: rgba(255, 255, 255, 0.78);

    border: 1px solid #e6e1d8;
    border-radius: var(--radius);

    transition: all var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: var(--shadow);
}

.step-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.step-line {
    flex: 1;
    height: 1px;

    background: #ddd8ce;
}

.step-icon {
    width: 48px;
    height: 48px;

    margin: 42px 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d9d2c7;
    border-radius: 50%;

    color: var(--navy);
    background: #fff;

    font-size: 11px;
    font-weight: 800;
}

.step-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 19px;
}

.step-card p {
    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FREE SECTION
   ========================================================= */

.free-section {
    padding: 110px 0;

    background: var(--navy);
    color: #fff;
}

.free-container {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 80px;
}

.free-content h2 {
    color: #fff;
}

.free-content h2 span {
    color: #d9bd8b;
}

.free-content > p {
    max-width: 590px;
    margin: 22px 0 30px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;
}

.free-highlights {
    display: grid;
    gap: 16px;

    margin-bottom: 32px;
}

.free-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.check {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    border: 1px solid rgba(216, 189, 139, 0.5);
    border-radius: 50%;

    color: #d9bd8b;

    font-size: 11px;
}

.free-item strong {
    display: block;

    color: #fff;
    font-size: 14px;
}

.free-item small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.dark-button {
    background: #d0ae76;
}

.dark-button:hover {
    background: #dfc18f;
}

.free-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: min(100%, 390px);

    padding: 28px;

    background: rgba(255, 255, 255, 0.075);

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.visual-card-top {
    display: flex;
    align-items: center;
    gap: 9px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    letter-spacing: 0.8px;
}

.visual-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d2b47e;
}

.visual-profile {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 25px 0;
}

.profile-avatar {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d9c3a0;
    color: var(--navy);

    font-size: 21px;
    font-weight: 700;
}

.profile-info strong {
    display: block;

    color: #fff;
    font-size: 14px;
}

.profile-info span {
    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}

.visual-message {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 19px;

    background: rgba(255, 255, 255, 0.06);

    border-radius: 14px;
}

.message-icon {
    color: #d9bd8b;
    font-size: 19px;
}

.visual-message strong {
    color: #fff;
    font-size: 13px;
}

.visual-message p {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.57);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   EVENTS
   ========================================================= */

.events-highlight {
    padding: 110px 0;

    background: #fff;
}

.events-heading {
    max-width: 800px;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    position: relative;

    padding: 31px;

    background: #faf8f4;

    border: 1px solid #e9e4da;
    border-radius: var(--radius);

    transition: all var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.featured-event {
    background: #f5f2eb;
    border-color: #ddd3c3;
}

.event-card-number {
    margin-bottom: 38px;

    color: #c9c0b2;

    font-size: 11px;
    font-weight: 800;
}

.event-label {
    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.event-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 21px;
}

.event-card p {
    min-height: 105px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}

.event-status {
    display: inline-flex;

    margin-top: 20px;
    padding: 6px 11px;

    border-radius: 20px;

    background: #e9e4da;
    color: #6c665d;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.events-cta {
    margin-top: 35px;
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;

    border: 1px solid #cfc8bc;
    border-radius: 25px;

    color: var(--navy);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}

.btn-outline:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}


/* =========================================================
   TRUST
   ========================================================= */

.trust-section {
    padding: 110px 0;

    background: #f5f3ee;
}

.trust-container {
    display: grid;
    grid-template-columns: 1.08fr 0.78fr;
    align-items: center;
    gap: 90px;
}

.trust-text > p {
    max-width: 650px;
    margin: 22px 0 35px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}

.trust-points {
    display: grid;
    gap: 24px;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-point-icon {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d2c8b9;
    border-radius: 50%;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;
}

.trust-point h3 {
    margin-bottom: 4px;

    color: var(--navy);

    font-size: 15px;
}

.trust-point p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.65;
}

.trust-card {
    padding: 42px;

    background: var(--navy);
    color: #fff;

    border-radius: 24px;

    box-shadow: 0 25px 60px rgba(22, 34, 53, 0.16);
}

.trust-card-brand {
    color: #fff;

    font-size: 18px;
    font-weight: 750;
    letter-spacing: -0.4px;
}

.trust-card-brand span {
    color: #d5b77e;
}

.trust-card-line {
    width: 45px;
    height: 1px;

    margin: 27px 0;
    background: #c4a66f;
}

.trust-card h3 {
    margin-bottom: 18px;

    color: #fff;

    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.6px;
}

.trust-card p {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.63);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    padding: 80px 0;

    background: #fff;
}

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

.feature-card {
    padding: 30px;

    border-top: 1px solid #ddd8cf;
}

.feature-number {
    display: block;

    margin-bottom: 26px;

    color: #c1b7a7;

    font-size: 10px;
    font-weight: 800;
}

.feature-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 18px;
}

.feature-card p {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   SIGNUP
   ========================================================= */

.signup-section {
    padding: 115px 0;

    background:
        linear-gradient(
            180deg,
            #faf8f4 0%,
            #f4f0e8 100%
        );
}

.signup-container {
    display: grid;
    grid-template-columns: 0.78fr 1.1fr;
    align-items: start;
    gap: 75px;
}

.signup-heading {
    position: sticky;
    top: 110px;
}

.signup-heading > p {
    max-width: 450px;
    margin-top: 20px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.form-container {
    width: 100%;

    padding: 36px;

    background: #fff;

    border: 1px solid #e5dfd5;
    border-radius: 22px;

    box-shadow: 0 20px 60px rgba(35, 43, 55, 0.08);
}

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

    gap: 20px;

    padding-bottom: 22px;

    border-bottom: 1px solid #eee9e1;
}

.form-kicker {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.form-header h3 {
    margin-top: 5px;

    color: var(--navy);

    font-size: 23px;
    letter-spacing: -0.4px;
}

.form-lock {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;

    border-radius: 20px;

    background: #f3f1ec;

    color: #69705f;

    font-size: 10px;
    font-weight: 700;
}

.form-lock span {
    color: #72906e;
    font-size: 8px;
}

.form-privacy {
    margin: 18px 0 25px;

    color: #7a8492;

    font-size: 11px;
    line-height: 1.65;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #344157;

    font-size: 11px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    height: 46px;

    padding: 0 14px;

    background: #fcfbf9;

    border: 1px solid #ddd9d1;
    border-radius: 9px;

    color: var(--text);

    outline: none;

    font-size: 13px;

    transition: all var(--transition);
}

.form-group input::placeholder {
    color: #a7adb6;
}

.form-group input:focus {
    background: #fff;

    border-color: #b99a65;

    box-shadow: 0 0 0 3px rgba(185, 154, 101, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1.6fr 0.75fr 0.75fr;
    gap: 13px;
}

.form-row .form-group {
    min-width: 0;
}

.btn-submit {
    width: 100%;
    min-height: 51px;

    margin-top: 4px;

    border: 0;
    border-radius: 26px;

    background: var(--navy);
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 9px 22px rgba(23, 36, 58, 0.13);

    transition: all var(--transition);
}

.btn-submit:hover {
    background: #263b5a;
    transform: translateY(-1px);
}

.error-msg {
    min-height: 20px;

    margin-top: 12px;

    color: #b64d4d;

    text-align: center;

    font-size: 12px;
}

.form-footer-note {
    margin-top: 18px;
    padding-top: 17px;

    border-top: 1px solid #eee9e1;

    color: #9a9fa7;

    text-align: center;

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #131e2f;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 55px;

    padding-top: 65px;
    padding-bottom: 55px;
}

.footer-brand {
    max-width: 310px;
}

.footer-logo {
    display: inline-block;

    color: #fff;

    text-decoration: none;

    font-size: 20px;
    font-weight: 750;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: #d2b27a;
}

.footer-brand p {
    margin-top: 17px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: #fff;

    font-size: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.48);

    text-decoration: none;

    font-size: 11px;
}

.footer-column a:hover {
    color: #d9bd8b;
}

.footer-divider {
    height: 1px;

    background: rgba(255, 255, 255, 0.09);
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);

    text-decoration: none;

    font-size: 10px;
}

.footer-bottom-links a:hover {
    color: #d9bd8b;
}


/* =========================================================
   DARK MODE
   ========================================================= */

body.dark-mode {
    background: #101925;
    color: #e8ebef;
}

body.dark-mode .navbar {
    background: rgba(16, 25, 37, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .logo {
    color: #fff;
}

body.dark-mode .nav-links a {
    color: #b8c0cc;
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active {
    color: #fff;
    background: #202d40;
}

body.dark-mode #languageSelect {
    background: #182334 !important;
    color: #dce2e9;
    border-color: #334155 !important;
}

body.dark-mode .btn-toggle {
    background: #202d40;
    color: #fff;
    border-color: #344257;
}

body.dark-mode .intro-section,
body.dark-mode .events-highlight,
body.dark-mode .features {
    background: #101925;
}

body.dark-mode .intro-section h2,
body.dark-mode .section-heading h2,
body.dark-mode .free-content h2,
body.dark-mode .trust-text h2,
body.dark-mode .signup-heading h2 {
    color: #f3f5f7;
}

body.dark-mode .intro-section p,
body.dark-mode .section-heading p,
body.dark-mode .free-content > p,
body.dark-mode .trust-text > p,
body.dark-mode .feature-card p,
body.dark-mode .event-card p {
    color: #aeb8c6;
}

body.dark-mode .how-it-works,
body.dark-mode .trust-section,
body.dark-mode .signup-section {
    background: #162131;
}

body.dark-mode .step-card,
body.dark-mode .event-card {
    background: #1a2738;
    border-color: #2d3b4e;
}

body.dark-mode .step-card:hover {
    background: #202e41;
}

body.dark-mode .step-card h3,
body.dark-mode .event-card h3,
body.dark-mode .feature-card h3 {
    color: #f0f2f5;
}

body.dark-mode .step-line,
body.dark-mode .feature-card {
    border-color: #344153;
}

body.dark-mode .step-icon {
    background: #202d40;
    border-color: #384658;
    color: #fff;
}

body.dark-mode .featured-event {
    background: #202d40;
    border-color: #3b4657;
}

body.dark-mode .event-status {
    background: #303a48;
    color: #c7ced7;
}

body.dark-mode .form-container {
    background: #1a2738;
    border-color: #303e51;
}

body.dark-mode .form-header {
    border-color: #303e51;
}

body.dark-mode .form-header h3,
body.dark-mode .form-group label {
    color: #f0f2f5;
}

body.dark-mode .form-group input {
    background: #141f2d;
    border-color: #354255;
    color: #fff;
}

body.dark-mode .form-group input::placeholder {
    color: #697689;
}

body.dark-mode .form-privacy,
body.dark-mode .signup-heading > p {
    color: #9ca8b7;
}

body.dark-mode .form-footer-note {
    border-color: #303e51;
}

body.dark-mode .btn-submit {
    background: #d0ae76;
    color: #152033;
}

body.dark-mode .btn-submit:hover {
    background: #dfc18f;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .navbar {
        padding: 0 4%;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links a {
        padding-left: 8px;
        padding-right: 8px;
    }

    .nav-links .btn-nav {
        margin-left: 2px;
        padding-left: 13px;
        padding-right: 13px;
    }

    .free-container,
    .trust-container {
        gap: 50px;
    }

    .footer-main {
        gap: 30px;
    }
}


@media (max-width: 850px) {

    .menu-toggle {
        display: flex;
    }

    #navMenu {
        display: none;

        position: absolute;

        top: 76px;
        left: 0;
        right: 0;

        padding: 15px 6% 22px;

        background: rgba(255, 253, 249, 0.99);

        border-bottom: 1px solid #e4dfd6;

        box-shadow: 0 15px 30px rgba(25, 35, 50, 0.08);
    }

    #navMenu.open {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        justify-content: center;

        padding: 12px;
    }

    .nav-links .btn-nav {
        margin: 5px 0;
    }

    #languageSelect {
        width: 100%;
        margin: 5px 0;
    }

    .btn-toggle {
        display: flex;
        margin: 7px auto 0;
    }

    .hero {
        min-height: 620px;
    }

    .steps-grid,
    .event-cards,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .step-card,
    .event-card {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .free-container,
    .trust-container,
    .signup-container {
        grid-template-columns: 1fr;
    }

    .signup-heading {
        position: static;
    }

    .free-visual {
        justify-content: flex-start;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .section-container {
        width: min(92%, 520px);
    }

    .navbar {
        min-height: 68px;
        padding: 0 5%;
    }

    #navMenu {
        top: 68px;
    }

    .hero {
        min-height: 620px;
        padding: 75px 18px;
    }

    .hero-content h1 {
        font-size: clamp(37px, 11vw, 53px);
        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 17px;
    }

    .hero-actions .btn-primary {
        width: 100%;
        max-width: 310px;
    }

    .intro-section,
    .how-it-works,
    .free-section,
    .events-highlight,
    .trust-section,
    .signup-section {
        padding: 78px 0;
    }

    .intro-section h2,
    .section-heading h2,
    .free-content h2,
    .trust-text h2,
    .signup-heading h2 {
        font-size: 32px;
    }

    .steps-grid {
        gap: 14px;
    }

    .step-card {
        padding: 25px;
    }

    .step-icon {
        margin-top: 30px;
    }

    .free-visual {
        display: none;
    }

    .trust-card {
        padding: 30px;
    }

    .trust-card h3 {
        font-size: 25px;
    }

    .form-container {
        padding: 25px 20px;
        border-radius: 17px;
    }

    .form-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;

        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(184, 148, 90, 0.35);
    outline-offset: 3px;
}

::selection {
    background: #d9bd8b;
    color: #17243a;
}


/* EVENTOS PREMIUM - ICONES */

.event-card {
    overflow: hidden;
}

.event-card-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    color: #c9c0b2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.event-card-number::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #ddd3c3;
    border-radius: 50%;
    background: #fffdf9;
    color: var(--gold);
    font-size: 21px;
    font-weight: 400;
}

.event-card:nth-child(1) .event-card-number::after {
    content: "♡";
}

.event-card:nth-child(2) .event-card-number::after {
    content: "✦";
}

.event-card:nth-child(3) .event-card-number::after {
    content: "✓";
}

.event-card {
    padding: 28px;
}

.event-card h3 {
    font-size: 22px;
    line-height: 1.3;
}

.event-card p {
    min-height: 105px;
}

.event-status {
    margin-top: 22px;
    padding: 7px 12px;
    border: 1px solid #ddd6ca;
    background: #f4f1eb;
}

.featured-event .event-card-number::after {
    background: #fffaf0;
    border-color: #d9c8a8;
}

body.dark-mode .event-card-number::after {
    background: #202d40;
    border-color: #384658;
    color: #f1d79b;
}

body.dark-mode .featured-event .event-card-number::after {
    background: #273448;
    border-color: #46546a;
}

body.dark-mode .event-status {
    border-color: #3d4959;
}
