/* =========================================================
   Base / Theme
   ========================================================= */

:root {
    --navy: #0b1220;
    --navy-2: #0f1830;
    --accent: #22d3ee;
    --accent-2: #6366f1;
    --text: #e6ecf5;
    --text-dim: #9aa7bd;
    --card: #121b33;
    --card-border: #223055;
    --success: #34d399;
    --radius: 14px;
    --max-width: 1160px;
    --nav-bg: rgba(11, 18, 32, 0.85);
}

[data-theme="light"] {
    --navy: #e9eef9;
    --navy-2: #e1e7f6;
    --text: #101828;
    --text-dim: #5b6478;
    --card: #ffffff;
    --card-border: #d6def0;
    --accent: #0e88a3;
    --accent-2: #4f46e5;
    --success: #16a34a;
    --nav-bg: rgba(233, 238, 249, 0.85);
}

[data-theme="light"] .hero::before {
    background: radial-gradient(
        circle,
        rgba(14, 136, 163, 0.10),
        transparent 70%
    );
}

[data-theme="light"] .price-card.featured {
    box-shadow: 0 20px 50px 20px rgba(14, 136, 163, 0.25);
}

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

html {
    transition: background-color 0.25s ease;
    scroll-behavior: smooth;
}

body,
.navbar,
.badge-card,
.feature-card,
.price-card,
.step-card,
.auth-card,
footer,
.form-group input,
.form-group select,
.form-group textarea,
.theme-toggle,
.hero-badge {
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--navy);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: "Poppins", "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-dim);
    max-width: 560px;
    margin-bottom: 48px;
    font-size: 1.05rem;
}


/* =========================================================
   Buttons
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );
    color: #04101f;
    box-shadow: 0 8px 24px 8px rgba(34, 211, 238, 0.55);
}

.btn-primary:hover {
    box-shadow: 0 12px 28px 8px rgba(34, 211, 238, 0.75);
}

.btn-ghost {
    background: transparent;
    border-color: var(--card-border);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-block {
    width: 100%;
}
.btn-spinner {

display: none;

width: 16px;

height: 16px;

border: 2px solid rgba(4, 16, 31, 0.35);

border-top-color: #04101f;

border-radius: 50%;

animation: btn-spin 0.6s linear infinite;

}

.btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(4, 16, 31, 0.35);
    border-top-color: #04101f;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

.btn.is-loading .btn-spinner {
    display: inline-block;
}

.btn.is-loading .btn-label {
    opacity: 0.8;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.prefs-card .btn-primary {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent) 78%, white),
        color-mix(in srgb, var(--accent-2) 78%, white)
    );
    box-shadow: 0 6px 16px 8px rgba(34, 211, 238, 0.32);
}

.prefs-card .btn-primary:hover {
    box-shadow: 0 8px 20px -8px rgba(34, 211, 238, 0.42);
}


/* =========================================================
   Navbar
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.3rem;
    color: var(--text);
}

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

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

.nav-links a:not(.btn) {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.15s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-2);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: var(--card);
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--accent);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.nav-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: absolute;
    color: var(--text);
    top: 18px;
    right: 20px;
}

.nav-close svg {
    width: 22px;
    height: 22px;
}


/* =========================================================
   Hero
   ========================================================= */

.hero {
    padding: 110px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 780px;
    height: 780px;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(34, 211, 238, 0.16),
        transparent 70%
    );
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--card-border);
    color: var(--text-dim);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

.hero-badge.badge-alert {
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );
    border: none;
    color: #04101f;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.8rem;
    animation: badgeAlertPulse 2.2s ease-in-out infinite;
}

.hero-badge.badge-alert .dot {
    background: #04101f;
    box-shadow: 0 0 0 4px rgba(4, 16, 31, 0.2);
}

@keyframes badgeAlertPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.35);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0.12);
    }
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    max-width: 820px;
    margin: 0 auto 24px;
}

.hero h1 .highlight {
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.hero-stats div {
    text-align: center;
}

.hero-stats strong {
    display: block;
    font-size: 1.7rem;
    font-family: "Poppins", sans-serif;
    color: var(--text);
}

.hero-stats span {
    color: var(--text-dim);
    font-size: 0.85rem;
}


/* =========================================================
   Who We Are
   ========================================================= */

.credibility {
    background: var(--navy-2);
}

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

.badge-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    padding: 32px 24px;
    text-align: center;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.badge-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.badge-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.12);
    color: var(--accent);
}

.badge-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.badge-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.sub-block {
    margin-top: 64px;
}


/* =========================================================
   Guarantee Trust Badges
   ========================================================= */

.guarantee-box {
    max-width: 720px;
    margin: 44px auto 0;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.guarantee-box svg {
    flex-shrink: 0;
    color: var(--success);
}

.guarantee-box p {
    color: var(--text-dim);
    font-size: 0.92rem;
}

.guarantee-box strong {
    color: var(--text);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.trust-badges div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.trust-badges svg {
    color: var(--accent);
    flex-shrink: 0;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--text-dim);
    font-size: 0.92rem;
}


/* =========================================================
   Feature Cards (What We Provide)
   ========================================================= */

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 34px 28px;
    text-align: center;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );
    color: #04101f;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}


/* =========================================================
   Pricing
   ========================================================= */

.pricing {
    background: var(--navy-2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
}

.price-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 20px 50px 20px rgba(34, 211, 238, 0.4);
}

.price-badge {
    top: -14px;
    position: absolute;
    right: 28px;
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );
    color: #04101f;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-card h3 {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 16px;
}

.price-amount {
    font-family: "Poppins", sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 500;
}

.price-note {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text);
}

.price-features li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--success);
}


/* =========================================================
   Testimonials
   ========================================================= */

.testimonials {
    text-align: center;
    overflow: hidden;
}

.slider {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    min-height: 220px;
}

.slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.slide.active {
    display: block;
}

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

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

.quote-mark {
    font-size: 2.4rem;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.slide p.quote-text {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 24px;
}

.slide-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.avatar-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );
    color: #04101f;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.slide-author-info {
    text-align: left;
}

.slide-author-info strong {
    display: block;
    font-size: 0.95rem;
}

.slide-author-info span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: var(--card-border);
    cursor: pointer;
    padding: 0;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.slider-dots button.active {
    background: var(--accent);
    transform: scale(1.3);
}


/* =========================================================
   Need Help Floating Button
   ========================================================= */

.help-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 30px 12px rgba(0, 0, 0, 0.45);
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.help-fab svg {
    color: var(--accent);
    flex-shrink: 0;
}

.help-fab:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent);
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 190;
    background: linear-gradient(
        135deg,
        var(--accent),
        var(--accent-2)
    );
    color: #04101f;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 999px;
    box-shadow: 0 15px 35px -10px rgba(34, 211, 238, 0.55);
    white-space: nowrap;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.sticky-cta.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
    pointer-events: none;
}


/* =========================================================
   Footer
   ========================================================= */

footer {
    background: var(--navy-2);
    border-top: 1px solid var(--card-border);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid p {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 320px;
    margin-top: 10px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-col a {
    display: block;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.15s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}


/* =========================================================
   How It Works (About page)
   ========================================================= */

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

.step-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 26px;
    position: relative;
}

.step-number {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.mission-block {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
}


/* =========================================================
   Auth Pages (Login / Signup)
   ========================================================= */

.auth-wrap {
    min-height: calc(100vh - 76px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
}

.auth-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 44px 40px;
    width: 100%;
    max-width: 420px;
}

.auth-card h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.auth-card > p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 32px;
}


/* =========================================================
   Forms
   ========================================================= */

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    background: var(--navy);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.15s ease;
}

.form-group textarea {
    min-height: 110px;
}

.form-group input[type="file"] {
    padding: 10px 14px;
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--navy);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.15s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group.form-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-group.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-group input.field-invalid,
.form-group select.field-invalid,
.form-group textarea.field-invalid {
    border-color: #ef4444 !important;
}

.form-group.form-check.field-invalid label {
    color: #ef4444;
}


/* =========================================================
   Phone Input
   ========================================================= */

.phone-input-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.phone-input-group .phone-prefix {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.phone-input-group input {
    flex: 1;
}


/* =========================================================
   Know Our Professionals
   ========================================================= */

.gate-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 48px 40px;
}

.gate-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gate-card p {
    color: var(--text-dim);
    margin-bottom: 24px;
}

.prefs-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px;
}

.prefs-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.prefs-card > p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 26px;
}

.profile-note {
    max-width: 640px;
    margin: 0 auto 36px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 18px;
}

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

.profile-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
}

.profile-card .avatar-initial {
    margin: 0 auto 14px;
    width: 52px;
    height: 52px;
    font-size: 1.05rem;
}

.profile-card .profile-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.profile-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.profile-card .profile-college {
    color: var(--text-dim);
    font-size: 0.82rem;
}


/* =========================================================
   Form Notes / Toast
   ========================================================= */

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-dim);
    font-size: 0.88rem;
}

.form-note a {
    color: var(--accent);
    font-weight: 600;
}

.form-toast {
    display: none;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: var(--success);
    font-size: 0.88rem;
    text-align: center;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 84px;
        right: 16px;
        width: min(70%, 250px);
        max-height: calc(100vh - 104px);
        overflow-y: auto;
        background: var(--navy-2);
        border: 1px solid var(--card-border);
        border-radius: var(--radius);
        box-shadow: 0 20px 45px 20px rgba(0, 0, 0, 0.35);
        padding: 44px 22px 20px;
        gap: 18px;
        transform: translateX(120%);
        transition: transform 0.25s ease;
        z-index: 200;
    }

    .navbar.open .nav-links {
        transform: translateX(0);
    }

    .navbar.open .nav-close {
        display: flex;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .badge-grid,
    .feature-grid,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    section {
        padding: 64px 0;
    }

    .help-fab span {
        display: none;
    }

    .help-fab {
        padding: 14px;
    }

    .sticky-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    body.has-sticky-cta {
        padding-bottom: 74px;
    }
}

@media (max-width: 560px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}