:root {
    --bg-page: #f7f6fb;
    --bg-soft: #ece8fb;
    --purple: #7144FF;
    --purple-soft: #9810FA;
    --purple-dark: #7144FF;
    --purple-deep: #160f2f;
    --ink: #0f1021;
    --muted: #6f6f86;
    --yellow: #f7bc45;
    --card: #ffffff;
    --line: #dfdcec;
}

* {
    box-sizing: border-box;
}

/* overflow-x: hidden removed from html to prevent AOS scroll detection issues */
body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(110, 68, 245, 0.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f8f7fc 100%);
    overflow-x: hidden;
}

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

.container-xl {
    max-width: 1500px;
    padding-inline: clamp(1rem, 2.5vw, 2rem);
}

.site-header {
    background: rgba(247, 246, 251, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(235, 233, 244, 0.85);
    z-index: 50;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border: 2px solid var(--purple);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f48120;
}

.brand-name {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.brand-name span {
    font-weight: 500;
}

.nav-link {
    color: #5f6074;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7bc45, #6e44f5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border: none;
    animation: ctaPulse 3s infinite ease-in-out;
}

.btn-ghost {
    background: #fff;
    color: #15172f;
    border: 1px solid #dedbe9;
}

.btn-primary-pill {
    color: #fff;
    background: linear-gradient(90deg, #6f3df4, #6f44ff);
    box-shadow: 0 8px 20px rgba(112, 66, 252, 0.3);
}

.btn-primary-pill,
.btn-warning-pill,
.btn-outline-pill,
.btn-outline-light-pill,
.btn-ghost {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary-pill:hover,
.btn-warning-pill:hover,
.btn-outline-pill:hover,
.btn-outline-light-pill:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
    animation-play-state: paused;
}

.hero-section {
    background: var(--bg-page);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-section::before {
    width: 230px;
    height: 230px;
    background: #d7c6ff;
    left: -60px;
    top: 120px;
}

.hero-section::after {
    width: 300px;
    height: 300px;
    background: #b9f2ff;
    right: 40px;
    top: 70px;
}

.hero-badge {
    display: inline-block;
    border-radius: 30px;
    background: linear-gradient(45deg, #ffffff, #EDE6FF);
    color: var(--purple);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-variant-caps: all-small-caps
}

.hero-badge i {
    font-size: 0.5rem;
}

.hero-title {
    font-size: clamp(1rem, 4.4vw, 3.1rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin: 0;
    max-width: 760px;
}

.hero-title span {
    color: var(--purple);
    /* text-decoration: underline;
    text-decoration-color: #f5b640;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;*/
}

.hero-copy {
    margin-top: 1.6rem;
    color: var(--muted);
    max-width: 620px;
    font-size: clamp(1.05rem, 1.25vw, 1.35rem);
    line-height: 1.7;
}

.btn-warning-pill {
    background: var(--yellow);
    color: #201508;
    box-shadow: 0 12px 24px rgba(246, 189, 73, 0.35);
}

.btn-outline-pill {
    border: 1px solid #d6d3e3;
    color: #1e1f35;
    background: #fff;
}

.btn-outline-pill i,
.btn-outline-light-pill i {
    margin-left: 0.5rem;
}

.avatar-list {
    display: flex;
    align-items: center;
}

.avatar-list span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid #fff;
    margin-right: -7px;
}

.avatar-list span:nth-child(1) {
    background: #6943ef;
}

.avatar-list span:nth-child(2) {
    background: #f5b640;
}

.avatar-list span:nth-child(3) {
    background: #7a63f4;
}

.avatar-list span:nth-child(4) {
    background: #f0a826;
}

.hero-users small {
    color: #585a70;
    font-size: 0.95rem;
}

.hero-slider-dots {
    margin-top: 2.2rem;
}

.dot-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd8ec;
    background: #fff;
    color: #52536a;
}

.dot-track {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-bullet {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: #c8c5d8;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.dot-bullet.is-active {
    width: 34px;
    background: var(--purple);
}

.hero-media-wrap {
    position: relative;
}

.hero-media-track {
    position: relative;
    min-height: 620px;
    border-radius: 26px;
    overflow: hidden;
    z-index: 1;
    box-shadow: none;
}

.hero-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 65% 20%, rgba(155, 246, 255, 0.45), transparent 44%);
    z-index: 0;
}

.hero-image {
    width: 100%;
    min-height: 620px;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.hero-image.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.quick-card {
    position: absolute;
    left: -16px;
    bottom: -22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(22, 17, 55, 0.18);
    padding: 0.95rem 1.3rem;
    animation: quick 3s infinite ease-in-out;
}
@keyframes quick {
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(30px);
    }
    100%{
        transform: translateX(0);
    }
}
.quick-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(130deg, #6d3ff0, #5a49e9);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quick-card h6 {
    font-size: 1rem;
    margin: 0;
    line-height: 1;
}

.quick-card p {
    margin: 0.25rem 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.stats-section {
    padding: 5.3rem 0;
    background: #fff;
}

.stat-item span:first-of-type {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3E8FF 0%, #DBEAFE 100%);
    color: #6a44ed;
    font-size: 1.5rem;
}

.stat-item h3 {
    margin: 1rem 0 0.35rem;
    font-size: clamp(1.9rem, 2.6vw, 3.5rem);
    font-weight: 800;
}

.stat-item h3 span:first-of-type {
    background: transparent !important;
    color: #333 !important;

}

.stat-item p {
    margin: 0;
    color: #4f5168;
    font-weight: 500;
    font-size: 1.25rem;
}

.stats-pill {
    margin: 3.2rem auto 0;
    width: fit-content;
    background: linear-gradient(90deg, #FAF5FF 0%, #EFF6FF 100%);
    border-top: 1px solid #E9D4FF;
    color: #52536a;
    border-radius: 999px;
    padding: 1rem 2.2rem;
    font-size: 1.45rem;
}

.stats-pill b {
    color: #6545eb;
}

.features-section,
.partner-section {
    background: var(--bg-soft);
    padding: 5.5rem 0;
}

.title-block small {
    color: #6646e5;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.title-block h2 {
    font-size: clamp(2rem, 2.5vw, 4.2rem);
    letter-spacing: -0.03em;
    margin: 0.7rem 0 1rem;
}

.title-block p {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-size: .8rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #dcd8ea;
    border-radius: 20px;
    height: 100%;
    padding: 1.45rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(110, 68, 245, 0.28);
    box-shadow: 0 24px 45px rgba(45, 33, 96, 0.1);
}

.feature-card span {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ede9fb;
    color: #6a44ed;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
}

.feature-card h4 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: .8rem;
}

.steps-section {
    background: #fff;
    padding: 5.5rem 0 5rem;
    position: relative;
}

.steps-track {
    margin-top: 4rem;
    height: 2px;
    background: linear-gradient(to right, #ccc8e4, #6b44ec, #f1b43f, #6b44ec);
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 12%;
    right: auto;

}

.step-item {
    margin-top: -37px;
}

.step-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #6a44ed;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.55rem;
    border: 4px solid #f2efff;
    box-shadow: 0 8px 18px rgba(85, 56, 197, 0.3);
}

.step-badge.muted {
    background: #8a6af2;
}

.step-badge.warning {
    background: #f7bc45;
    color: #18120b;
}

.step-item h5 {
    margin-top: 1rem;
    font-size: 1rem;
}

.step-item p {
    color: var(--muted);
    margin: 0.35rem auto 0;
    max-width: 320px;
    font-size: .8rem;
}

.about-dark-section {
    padding: 5.5rem 0 0;
    background: radial-gradient(circle at 91% 0%, #4e2f87 0%, transparent 15%), radial-gradient(circle at 0% 88%, var(--color-orange-6310, rgba(255, 183, 68, 0.10)) 0%, var(--color-orange-630, rgba(255, 183, 68, 0.00)) 65%), linear-gradient(263deg, #181233 100%, #281a59 100%);
    color: #fff;
}

.about-dark-section .text-accent {
    color: #f7bc45;
    letter-spacing: 0.11em;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

span.v-dash {
    width: 18px;
    height: 2px;
    border-radius: 50px;
    color: #f7bc45;
    display: flex;
    background: #f7bc45
}

.about-dark-section h2 {
    font-size: clamp(3rem, 0vw, 6.2rem);
    line-height: 1.1;
    margin-top: 0.6rem;
    width: 62%;
}

.about-dark-section p {
    color: #c2bfd7;
    line-height: 1.65;
    font-size: .8rem;
    width: 80%;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    padding: 1rem;
    height: 100%;
}

.about-card h6 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}

.about-card p {
    margin: 0;
    color: #b5b2cd;
    font-size: .8rem;
}

.about-media {
    height: 100%;
    min-height: 590px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #1f2237;
    border-radius: 20px;
    padding: 0.9rem 1.3rem;
    font-size: 1rem;
    white-space: nowrap;
    animation: quick 3s infinite ease-in-out;
}

.about-floating strong {
    margin-right: 0.3rem;
}

.partner-section {
    padding-top: 5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ddd9ec;
    padding: 1.6rem;
    height: 100%;
}

.quote-icon {
    color: #4160ef;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
}

.stars {
    color: #efbf3b;
    margin-top: 0.6rem;
    letter-spacing: 0.2rem;
}

.pricing-cta {
    position: relative;
}

.pricing-cta::before {
    content: "";
    position: absolute;
    inset: auto 8% -40px;
    height: 180px;
    background: radial-gradient(circle, rgba(247, 188, 69, 0.18), transparent 65%);
    filter: blur(10px);
    pointer-events: none;
}

.testimonial-card p {
    margin: 0.7rem 0 1.2rem;
    color: #23253a;
    line-height: 1.55;
    font-size: 1.32rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.badge-avatar.orange {
    background: #ff7f3f;
}

.badge-avatar.green {
    background: #19c39b;
}

.author h6 {
    margin: 0;
    font-size: 1.2rem;
}

.author small {
    color: #75778d;
    font-size: 0.95rem;
}

.newsletter-section {
    color: #fff;
    background: radial-gradient(circle at 100% 0, #180e33 0%, transparent 40%), radial-gradient(circle at 0% 80%, #140b30 0%, transparent 45%), linear-gradient(106.75deg, #0D0B14 0%, #100a22 45%, #291d4a 100%);
}

.newsletter-section {
    padding: 5rem 0;
}

.pricing-cta {
    max-width: 1080px;
    margin: 0 auto;
}

.pricing-cta-kicker {
    color: #f7bc45;
    letter-spacing: 0.11em;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-cta h2 {
    font-size: clamp(2.2rem, 4.4vw, 4.8rem);
    margin: 0.7rem 0 0.95rem;
    letter-spacing: -0.03em;
}

.pricing-cta p {
    color: #a9a2c1;
    font-size: 1.32rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 760px;
}

.pricing-cta-points {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.1rem;
    margin: 0 auto 2.2rem;
    padding: 0;
    color: #b7b1cc;
    font-size: 1.15rem;
}

.pricing-cta-points i {
    color: #f3f1ff;
    margin-right: 0.5rem;
}

.pricing-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}

.pricing-cta-actions .btn-warning-pill {
    min-width: 255px;
}

.pricing-cta-actions .btn-outline-light-pill {
    min-width: 210px;
}

.pricing-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.pricing-cta-stats article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: .8rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-cta-stats h4 {
    margin: 0;
    font-size: clamp(1rem, 1.2vw, 2rem);
    font-weight: 700;
}

.pricing-cta-stats p {
    margin: 0.5rem 0 0;
    font-size: .8rem;
    color: #a9a2c1;
}

.pricing-cta-secure {
    color: #827c99;
    font-size: 0.88rem;
}

.pricing-cta-secure i {
    color: #f6ca66;
    margin-right: 0.35rem;
}

.cta-section h2 {
    font-size: clamp(2.1rem, 3vw, 4.1rem);
    margin: auto;
    width: 40%;
}

.cta-section p {
    color: #c2bfd8;
    font-size: 1rem;
    /* max-width: 750px; */
    margin: auto;
    width: 40%;
    text-align: center;
    margin-bottom: 2rem;
}

.results-section {
    background: #fff;
    padding: 5.3rem 0;
}

.result-col h4 {
    font-size: 1.5rem;
    margin: 0 0 0.45rem;
}

.result-col p {
    color: #53556e;
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;

}

.funnel-wrap {
    max-width: 410px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.funnel-wrap .topIcons {
    width: 180px;
}

.funnel-wrap .bottomIcons {
    width: 130px;
}

.funnel-pill {
    background: #f7bc45;
    color: #fff;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    padding: .8rem 0.3rem;
    box-shadow: 0 18px 26px rgba(0, 0, 0, 0.08);
    width: 80%;
}

.funnel-pill.mid {
    width: 70%;
    margin-inline: auto;
}

.funnel-pill.small {
    width: 50%;
    margin-inline: auto;
}

.result-col.text-lg-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: right;
    padding-left: 70px;
}

.result-col.text-lg-start {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    padding-right: 70px;
}

.cta-section {
    padding: 5.2rem 0;
    background: radial-gradient(circle at 50% 54%, #34249d 0%, transparent 25%), radial-gradient(circle at 0% 80%, #140b30 0%, transparent 45%),
        linear-gradient(106.75deg, #0D0B14 0%, #1C1030 45%, #2D1660 100%);
    color: #fff;
}

.cta-section .text-accent {
    color: #f7bc45;
    letter-spacing: 0.11em;
    font-size: 0.9rem;
    font-weight: 700;

}

.btn-outline-light-pill {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
}

.cta-note {
    color: #9f9ab8;
    font-size: 0.95rem;
}

.site-footer {
    background: #1E1830;
    color: #b8b5cd;
    padding: 1rem 0 2rem;
}

.site-footer h5 {
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

span.circleIcon {
    background: linear-gradient(135deg, #7144FF 0%, #FFB744 100%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
}

.site-footer h6 {
    color: #fff;
    margin-bottom: 0.9rem;
    font-size: 1rem;
}

.site-footer p {
    line-height: 1.6;
    font-size: .8rem;
}

.socials {
    display: flex;
    gap: 0.55rem;
}

.socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8d88ab;
    text-decoration: none;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.65rem;
    font-size: .8rem;
    cursor: pointer;
}

.socials a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.footer-bottom {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
    font-size: 0.95rem;
    text-align: center;
    display: flex !important;
    justify-content: center !important;
}

@media (max-width: 1199.98px) {
    html {
        font-size: 75%;
    }

    .hero-image {
        min-height: 430px;
    }

    .hero-media-track {
        min-height: 430px;
    }

    .about-media {
        min-height: 420px;
    }
}

@media (max-width: 991.98px) {
    html {
        font-size: 92%;
    }

    .hero-section,
    .features-section,
    .stats-section,
    .steps-section,
    .about-dark-section,
    .partner-section,
    .newsletter-section,
    .results-section,
    .cta-section {
        padding-block: 4rem;
    }

    .hero-media-wrap {
        max-width: 640px;
        margin-inline: auto;
    }

    .quick-card {
        left: 10px;
    }

    .pricing-cta-stats {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: 90%;
    }

    .brand-name {
        font-size: 1.6rem;
    }

    .hero-title {
        max-width: none;
    }

    .hero-copy {
        max-width: none;
    }

    .stats-pill {
        width: 100%;
        border-radius: 20px;
        text-align: center;
    }

    .quick-card {
        position: static;
        margin-top: 0.8rem;
    }

    .result-col h4 {
        margin-top: 1rem;
    }

    .pricing-cta-actions .btn-warning-pill,
    .pricing-cta-actions .btn-outline-light-pill {
        min-width: 100%;
    }
}

/* =========================================================================
   AUTH & DEMO SPLIT SCREENS
   ========================================================================= */
.auth-layout {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
}

.auth-left {
    flex: 1 1 50%;
    background: radial-gradient(circle at top left, rgba(110, 68, 245, 0.08),
            transparent 28%), linear-gradient(180deg, #F7F5FF 0%, #f8f7fc 100%);
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1px solid rgba(235, 233, 244, 0.85);
}

.auth-right {
    flex: 1 1 50%;
    background: #ffffff;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {

    .auth-left,
    .auth-right {
        flex: 1 1 100%;
        min-height: auto;
    }
}

.auth-logo-wrap {
    position: absolute;
    top: 2rem;
    left: clamp(2rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--ink);
}

.auth-logo-wrap img {
    height: 48px;
    width: auto;
}

.auth-content-wrap {
    max-width: 580px;
    margin: 4rem auto 0;
}

.auth-title {
    font-size: clamp(2.5rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    letter-spacing: -0.03em;
}

.auth-title span {
    color: var(--purple);
}

.auth-title span.yellow {
    color: #f7bc45;
}

.auth-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.auth-kicker {
    color: #f7bc45;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.auth-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.auth-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
}

.auth-feature-list li .icon-wrap {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0d4;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.auth-pro-tip {
    background: #efecfc;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.auth-pro-tip h6 {
    color: #f7bc45;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.auth-pro-tip p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Auth Forms */
.auth-form-wrap {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.auth-form-header {
    margin-bottom: 2.5rem;
}

.auth-form-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.auth-form-header .back-link:hover {
    color: var(--purple);
}

.auth-form-header .badge-soft {
    display: inline-block;
    background: #efecfc;
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.auth-form-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.auth-form-header p {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.form-label span.req {
    color: var(--purple);
}

.form-control.auth-input,
.form-select.auth-input {
    background: #f8f7fc;
    border: 1px solid #e2e0ed;
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.form-control.auth-input:focus,
.form-select.auth-input:focus {
    background: #fff;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(113, 68, 255, 0.1);
}

.input-group-text.auth-addon {
    background: #efecfc;
    border: 1px solid #e2e0ed;
    border-left: none;
    color: var(--purple);
    font-weight: 600;
    border-radius: 0 12px 12px 0;
}

.form-control.auth-input.domain-input {
    border-radius: 12px 0 0 12px;
    border-right: none;
}

.btn-auth-submit {
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 999px;
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(113, 68, 255, 0.3);
}

.auth-form-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.auth-form-footer a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
}

.auth-form-footer a:hover {
    text-decoration: underline;
}

.password-wrap {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(45%);
    color: #a8a5b6;
    cursor: pointer;
}

.auth-testimonial {
    background: #efecfc;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 4rem;
    position: relative;
    border: 1px solid #dcd8ea;
}

.auth-testimonial .earnings-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 0.6rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--purple);
}

.auth-testimonial .earnings-badge i {
    font-size: 0.8rem;
}

.auth-testimonial .stars {
    color: #f7bc45;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.auth-testimonial p {
    font-style: italic;
    color: var(--ink);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.auth-testimonial .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.auth-testimonial .badge-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
}

.auth-big-icon {
    width: 140px;
    height: 140px;
    background: #e6e1ff;
    border-radius: 50%;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.auth-big-icon::before {
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgba(230, 225, 255, 0.8), transparent 70%);
    width: 200px;
    height: 200px;
    z-index: -1;
}

.auth-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.auth-stat-card {
    background: #efecfc;
    border-radius: 12px;
    padding: 1.2rem;
}

.auth-stat-card h4 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink);
}

.auth-stat-card p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.leftShape {
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(255, 183, 68, 0.18) 0%, rgba(255, 183, 68, 0) 65%);
    height: 200px;
    width: 200px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leftShape img {
    animation: ctaPulse 3s infinite ease-in-out;
}

.domainHeader {
    border-bottom: none;
    background: #F7F5FF;
}

span.purble {
    color: var(--purple);
}

.badge-soft {
    background: #fff0d4;
    color: #f0a826;
    border-top: 1.92px solid var(--color-orange-6330, #FFB7444D);
    padding: 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* =========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================= */
#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(113, 68, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================================================
   PRICING PAGE CUSTOM STYLES
   ========================================================================= */

.pricing-page-hero {
    padding: 5rem 0 0;
    background: radial-gradient(circle at top, rgba(152, 246, 255, 0.08), transparent 40%), var(--bg-page);
    overflow: visible;
}

/* ---- Tabs ---- */
.pricing-tabs {
    background: #fff;
    border: 1px solid #e4e1f0;
    border-radius: 999px;
    padding: 0.35rem;
    display: inline-flex;
    width: fit-content;
}

.pricing-tabs ul {
    gap: 0.15rem !important;
}

.btn-tab {
    border: none;
    background: transparent;
    color: #52536a;
    padding: 0.5rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 999px;
    transition: all 0.2s ease;
    animation: none;
}

.btn-tab.active {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 4px 12px rgba(113, 68, 255, 0.3);
}

/* ---- Billing Toggle ---- */
.billing-toggle {
    font-size: 0.95rem;
    color: #52536a;
}

.billing-toggle .form-switch .form-check-input {
    width: 2.6em;
    height: 1.35em;
    cursor: pointer;
    background-color: var(--purple);
    border-color: var(--purple);
}

.billing-toggle .form-switch .form-check-input:checked {
    background-color: var(--purple);
    border-color: var(--purple);
}

/* ---- Pricing Cards Row ---- */
.pricing-cards-row {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    justify-content: center;
    padding-bottom: 4rem;
}

.pricing-col {
    flex: 1;
    max-width: 270px;
    min-width: 220px;
}

.pricing-col.featured-col {
    max-width: 290px;
    margin-top: -1.5rem;
    margin-bottom: -0.5rem;
    z-index: 2;
}

/* ---- Pricing Cards ---- */
.pricing-card {
    border-radius: 22px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.card-light {
    background: #fff;
    border-color: #eaebf2;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}

.pricing-card.card-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.07);
    border-color: #d0ccec;
}

.pricing-card.card-dark {
    background: var(--purple-deep);
    color: #fff;
    box-shadow: 0 24px 60px rgba(22, 15, 47, 0.28);
    border-color: rgba(255,255,255,0.06);
}

.pricing-card.card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(22, 15, 47, 0.35);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: #201508;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(247,188,69,0.35);
}

.plan-header small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.plan-header h3 {
    font-size: 1.7rem;
    margin: 0.4rem 0 0.3rem;
}

.plan-header p {
    font-size: 0.88rem;
    color: inherit;
    opacity: 0.68;
    margin-bottom: 1.5rem;
    min-height: 40px;
    line-height: 1.5;
}

.plan-header .price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 0.25rem;
}

.plan-header .currency {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.6rem;
}

.plan-header .amount {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.plan-header .period {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.65;
    align-self: flex-end;
    margin-bottom: 0.2rem;
    margin-top: 0;
}

.billed-text {
    color: inherit;
    opacity: 0.55;
    font-size: 0.82rem;
    display: block;
    margin-top: 0.3rem;
}

.plan-features p {
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    margin-bottom: 0.5rem;
}

.plan-features li {
    margin-bottom: 0.6rem;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.45;
}

.plan-features li i {
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
    color: var(--purple) !important;
}

.pricing-card.card-dark .plan-features li i {
    color: #4ade80 !important;
}

.plan-footer .btn {
    animation: none;
}

.btn-accent {
    background: var(--yellow);
    color: #201508;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(247,188,69,0.3);
}

.btn-accent:hover {
    background: #e3aa3b;
    color: #201508;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(247,188,69,0.45);
}

/* ---- Comparison Table ---- */
.plan-comparison-section {
    background: #f7f6fb;
    position: relative;
    padding: 5rem 0;
}

.comparison-table-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 36px rgba(0,0,0,0.04);
    border: 1px solid #eaebf2;
    overflow-x: auto;
}

.comparison-table {
    margin-bottom: 0;
}

.comparison-table thead tr th {
    padding: 1.4rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    border-bottom: 2px solid #f0eef8;
    background: transparent;
}

.comparison-table thead tr th:first-child {
    border-radius: 20px 0 0 0;
}

.comparison-table thead tr th:last-child {
    border-radius: 0 20px 0 0;
}

/* Highlight the Premium column (3rd data column = 4th th) */
.comparison-table th:nth-child(4),
.comparison-table td:nth-child(4) {
    background: rgba(113, 68, 255, 0.04);
    position: relative;
}

.comparison-table th:nth-child(4) {
    color: var(--purple);
    border-top: 3px solid var(--purple);
}

.comparison-table td {
    padding: 1.1rem 1.2rem;
    font-size: 0.9rem;
    color: #555;
    vertical-align: middle;
    border-bottom: 1px solid #f6f5fb;
}

.comparison-table tbody tr:last-child td:nth-child(4) {
    border-radius: 0 0 0 0;
}

.comparison-table tbody tr:hover td {
    background: #faf9fe;
}

.comparison-table tbody tr:hover td:nth-child(4) {
    background: rgba(113, 68, 255, 0.07);
}

.badge-success-soft {
    background: #efecfc;
    color: var(--purple);
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    white-space: nowrap;
    display: inline-block;
}

/* ---- Platform Features Section ---- */
.platform-features-section {
    background: radial-gradient(circle at top left, rgba(152, 246, 255, 0.05), transparent 30%), #fff;
    padding: 6rem 0;
}

.tracking-wider {
    letter-spacing: 0.08em;
}

.platform-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.platform-features-grid .feat-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.platform-features-grid .feat-secondary {
    grid-column: 2;
    grid-row: auto;
}

.platform-features-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.feature-platform-card {
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.07);
}

.feature-platform-card.card-light {
    background: #fff;
    border: 1px solid #eaebf2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.feature-platform-card.card-dark {
    background: var(--purple-deep);
    color: #fff;
    box-shadow: 0 16px 40px rgba(22,15,47,0.2);
}

.feature-platform-card.card-dark p {
    color: rgba(255,255,255,0.68) !important;
}

.feature-platform-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-platform-card.card-light .icon-wrap {
    background: #efecfc;
    color: var(--purple);
}

.feature-platform-card.card-dark .icon-wrap {
    background: rgba(255,255,255,0.1);
    color: var(--yellow);
}

.feature-platform-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    margin-top: 0.2rem;
}

.feature-platform-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    flex: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

.tag {
    font-size: 0.76rem;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    font-weight: 500;
}

.feature-platform-card.card-light .tag {
    background: #f2f4f8;
    color: #555;
}

.feature-platform-card.card-dark .tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

/* ---- CTA Bottom ---- */
.pricing-cta-bottom {
    background: radial-gradient(circle at 100% 0, #180e33 0%, transparent 40%), radial-gradient(circle at 0% 80%, #140b30 0%, transparent 45%), linear-gradient(106.75deg, #0D0B14 0%, #1c1030 45%, #291d4a 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-cta-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(113,68,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-cta-bottom h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.pricing-cta-bottom h2 span {
    font-style: italic;
    color: var(--yellow);
}

.pricing-cta-bottom p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.pricing-cta-bottom .btn-accent {
    position: relative;
    z-index: 2;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.pricing-cta-bottom .btn-outline-light-pill {
    position: relative;
    z-index: 2;
    border-color: rgba(255,255,255,0.3);
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
}

.pricing-cta-bottom .btn-outline-light-pill:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.pricing-cta-bottom .text-white-50 span {
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.5);
}
.pricing-title {
   
    font-size: clamp(1rem, 4.4vw, 3.1rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .pricing-cards-row {
        flex-wrap: wrap;
    }
    .pricing-col {
        max-width: 48%;
    }
    .pricing-col.featured-col {
        max-width: 48%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .platform-features-grid {
        grid-template-columns: 1fr;
    }
    .platform-features-grid .feat-main {
        grid-row: auto;
    }
    .platform-features-grid-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .pricing-cards-row {
        flex-direction: column;
        align-items: center;
    }
    .pricing-col,
    .pricing-col.featured-col {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .platform-features-grid-bottom {
        grid-template-columns: 1fr;
    }
}

#scrollTopBtn:hover {
    box-shadow: 0 12px 32px rgba(113, 68, 255, 0.55);
    transform: translateY(-3px);
}

/* =========================================================================
   CONTACT US PAGE
   ========================================================================= */
.contact-page-hero {
    padding: 5rem 0 0;
    background: radial-gradient(circle at top, rgba(152, 246, 255, 0.08), transparent 40%), #f0ecff;
    overflow: visible;
}
.contact-image-wrap {
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.contact-image-wrap img {
    border-radius: 20px;
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.04); */
}

.contact-socials a {
    background: #EBE6FE;
    color: var(--purple);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    border: none;
}

.contact-socials a:hover {
    transform: translateY(-3px);
    background: var(--purple);
    color: #fff;
}

.contact-form-card {
    background: #fff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #EBE9F4;
}

.contact-form label.form-label {
    font-weight: 700;
    color: #0f1021;
    font-size: 0.95rem;
}

.contact-form label.form-label span {
    color: var(--purple);
}

.contact-form .form-control {
    background: #F8F7FC;
    border: 1px solid #EAE8F4;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 4px rgba(113, 68, 255, 0.1);
    border-color: var(--purple);
    outline: none;
}

.contact-form .input-group-custom {
    background: #F8F7FC;
    border: 1px solid #EAE8F4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-form .input-group-custom:focus-within {
    box-shadow: 0 0 0 4px rgba(113, 68, 255, 0.1);
    border-color: var(--purple);
}

.contact-form .input-group-custom .flag-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border-right: 1px solid rgba(0,0,0,0.05);
    padding-right: 0.8rem;
}

.contact-submit-btn {
    border-radius: 16px;
    padding: 1.1rem;
    width: 100%;
    font-size: 1.15rem;
}
p.invalidLoginMsg{
    color: #dc3545;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

