:root {
    --primary: #6d4aff;
    --primary-dark: #5434d8;
    --text: #1f2430;
    --muted: #6f7480;
    --border: #ececf2;
    --surface: #ffffff;
    --background: #f8f8fc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.7;
}

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

.site-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

/* Header */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-logo {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.brand-text {
    font-size: 20px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    color: var(--muted);
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.language-switcher {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    padding: 9px 12px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    cursor: pointer;
}

/* Preview */

.preview-hero {
    min-height: 62vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.preview-hero-inner {
    max-width: 760px;
}

.preview-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.preview-hero h1 {
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.preview-hero p {
    font-size: 18px;
    color: var(--muted);
}

/* Footer */

.site-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 36px 0 22px;
}

.footer-inner {
    display: grid;
    gap: 24px;
}

.footer-brand .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-description {
    max-width: 520px;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    color: var(--muted);
    font-size: 14px;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 28px 0 20px;
    }

    .footer-inner {
        gap: 20px;
    }

    .footer-description {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-links {
        gap: 13px 22px;
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 16px;
        font-size: 12px;
    }
}

/* Responsive */

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .header-inner {
        min-height: 68px;
    }
}

@media (max-width: 600px) {
    .site-container {
        width: min(100% - 24px, 1180px);
    }

    .brand-text {
        font-size: 18px;
    }

    .preview-hero {
        min-height: 58vh;
    }

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

    .language-switcher {
        font-size: 12px;
        padding: 8px 10px;
    }
}
/* Mobile Navigation */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: 0.25s ease;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 16px;
}

.mobile-nav-link {
    padding: 13px 4px;
    border-bottom: 1px solid #f3f3f6;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav-link:last-child {
    border-bottom: 0;
}

.mobile-nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 900px) {
    .mobile-menu-button {
        display: inline-flex;
    }

    .header-actions {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        padding: 8px 9px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand {
        gap: 7px;
    }
}

/* Home Hero */

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 45%, rgba(109, 74, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8f7ff 55%, #ffffff 100%);
}

.home-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 570px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.hero-title {
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-title span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
}

.hero-title strong {
    display: block;
    font-weight: 800;
}

.hero-description {
    max-width: 520px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.hero-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.store-button {
    min-width: 165px;
    min-height: 56px;
    padding: 8px 16px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    transition: transform 0.2s ease;
}

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

.store-button span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-button small {
    font-size: 10px;
    font-weight: 400;
}

.store-button strong {
    margin-top: 3px;
    font-size: 16px;
    font-weight: 700;
}

.store-icon {
    font-size: 20px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero-main-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 28px;
    filter: drop-shadow(0 24px 45px rgba(55, 35, 120, 0.14));
}

@media (max-width: 900px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 55px;
        padding-bottom: 55px;
        text-align: center;
    }

    .hero-content {
        max-width: 650px;
        margin-inline: auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-store-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-main-image {
    max-width: 620px;
    margin-inline: auto;
}
}

@media (max-width: 600px) {
    .home-hero-inner {
        padding-top: 40px;
        padding-bottom: 48px;
        gap: 28px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: -0.7px;
    }

    .hero-description {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-store-buttons {
        margin-top: 24px;
    }

    .store-button {
        flex: 1;
        min-width: 145px;
    }

    .hero-main-image {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
}
}

/* Home Features */

.home-features {
    padding: 0 0 70px;
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(39, 29, 77, 0.06);
    overflow: hidden;
}

.feature-item {
    padding: 30px 22px;
    text-align: center;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24%;
    bottom: 24%;
    left: 0;
    width: 1px;
    background: var(--border);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.feature-item h3 {
    font-size: 17px;
    margin-bottom: 7px;
    color: var(--text);
}

.feature-item p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item::after {
        display: none;
    }

    .feature-item {
        border-bottom: 1px solid var(--border);
    }

    .feature-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 600px) {
    .home-features {
        padding-bottom: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 20px;
    }

    .feature-item {
        padding: 22px 14px;
    }

    .feature-item:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .feature-icon {
    width: 44px;
    height: 44px;
}

.feature-icon svg {
    width: 29px;
    height: 29px;
}

    .feature-item h3 {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 12px;
    }
}

/* Discover Fix Up */

.discover-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(109, 74, 255, 0.10), transparent 36%),
        #ffffff;
}

.discover-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.discover-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.discover-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.25;
    color: var(--text);
}

.discover-heading p {
    max-width: 620px;
    margin: 17px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.discover-showcase {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-bottom: 45px;
}

.discover-phone {
    position: relative;
    flex-shrink: 0;
}

.discover-phone img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(46, 29, 100, 0.15));
}

.discover-phone-main {
    width: 320px;
    z-index: 3;
}

.discover-phone-side {
    width: 300px;
    z-index: 2;
}

.discover-phone-inquiries {
    margin-left: -70px;
    transform: translateY(34px);
}

.discover-phone-providers {
    margin-right: -70px;
    transform: translateY(34px);
}

.discover-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.discover-point {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.discover-point > span {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.discover-point h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: var(--text);
}

.discover-point p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .discover-section {
        padding: 70px 0;
    }

    .discover-showcase {
        min-height: auto;
        gap: 0;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .discover-phone-main {
        width: 270px;
    }

    .discover-phone-side {
        width: 235px;
    }

    .discover-phone-inquiries {
        margin-left: -58px;
    }

    .discover-phone-providers {
        margin-right: -58px;
    }

    .discover-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .discover-section {
        padding: 58px 0;
    }

    .discover-heading {
        margin-bottom: 34px;
    }

    .discover-heading h2 {
        font-size: 30px;
    }

    .discover-heading p {
        font-size: 14px;
    }

    .discover-showcase {
        min-height: 500px;
        margin-inline: -45px;
    }

    .discover-phone-main {
        width: 220px;
    }

    .discover-phone-side {
        width: 185px;
    }

    .discover-phone-inquiries {
        margin-left: -58px;
        transform: translateY(34px);
    }

    .discover-phone-providers {
        margin-right: -58px;
        transform: translateY(34px);
    }

    .discover-point {
        padding: 18px;
    }
}
/* Discover section final spacing */
.discover-showcase {
    margin-top: -35px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .discover-showcase {
        margin-top: -55px;
        margin-bottom: 0;
    }
}

/* How Fix Up Works */

.how-it-works {
    padding: 90px 0;
    background: #f8f7fc;
}

.how-heading {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.how-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.how-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.25;
    color: var(--text);
}

.how-heading p {
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

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

.how-step {
    position: relative;
    padding: 30px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(39, 29, 77, 0.04);
}

.how-number {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #c9bfff;
    font-size: 13px;
    font-weight: 800;
}

.how-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #eeeaff;
    color: var(--primary);
}

.how-icon svg {
    width: 29px;
    height: 29px;
}

.how-step h3 {
    margin-bottom: 8px;
    font-size: 17px;
    color: var(--text);
}

.how-step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .how-it-works {
        padding: 58px 0;
    }

    .how-heading {
        margin-bottom: 32px;
    }

    .how-heading h2 {
        font-size: 30px;
    }

    .how-heading p {
        font-size: 14px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .how-step {
        padding: 24px 20px;
    }
}
/* About Page */

.about-hero {
    padding: 90px 0;
    background:
        radial-gradient(circle at 18% 35%, rgba(109, 74, 255, 0.11), transparent 32%),
        #fff;
}

.about-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-hero-content {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.about-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.about-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.2;
    color: var(--text);
}

.about-description {
    margin-top: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 2;
}

.about-description p {
    margin-bottom: 16px;
}

.about-hero-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
}

.about-hero-visual img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(39, 29, 77, 0.10);
}

.about-values {
    padding: 0 0 90px;
    background: #fff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-value-card {
    padding: 30px 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.about-value-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.about-value-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--text);
}

.about-value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-hero-content {
        margin-inline: auto;
        text-align: center;
    }

    .about-hero-visual {
        order: -1;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 58px 0;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.9;
    }

    .about-hero-visual img {
        border-radius: 20px;
    }

    .about-values {
        padding-bottom: 58px;
    }

    .about-value-card {
        padding: 24px 20px;
    }
}

/* Contact Page */

.contact-page {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 18%, rgba(109, 74, 255, 0.10), transparent 28%),
        #fff;
}

.contact-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.contact-heading h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.25;
    color: var(--text);
}

.contact-heading p {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-info-card,
.contact-support-note,
.contact-form-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(39, 29, 77, 0.05);
}

.contact-info-card {
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eeeaff;
    color: var(--primary);
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--text);
}

.contact-info-card a {
    color: var(--primary);
    font-size: 14px;
    word-break: break-word;
}

.contact-support-note {
    padding: 28px;
}

.contact-support-note h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: var(--text);
}

.contact-support-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.contact-form-box {
    padding: 30px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid #e5e5ed;
    border-radius: 14px;
    background: #fbfbfd;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.contact-field input {
    min-height: 52px;
    padding: 0 15px;
}

.contact-field textarea {
    min-height: 150px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.08);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a7a7b2;
}

.contact-submit {
    min-width: 150px;
    min-height: 50px;
    margin-top: 20px;
    padding: 0 24px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.contact-error {
    color: #d93d52;
    font-size: 12px;
}

.contact-success {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #edfff4;
    color: #187a43;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-page {
        padding: 58px 0;
    }

    .contact-heading {
        margin-bottom: 32px;
    }

    .contact-heading h1 {
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 14px;
    }

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

    .contact-field-full {
        grid-column: auto;
    }

    .contact-info-card,
    .contact-support-note,
    .contact-form-box {
        border-radius: 20px;
    }

    .contact-info-card,
    .contact-support-note {
        padding: 22px;
    }

    .contact-form-box {
        padding: 22px;
    }

    .contact-submit {
        width: 100%;
    }
}

/* Download Page */

.download-page {
    padding: 90px 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(109, 74, 255, 0.10), transparent 30%),
        #fff;
}

.download-page-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 54px;
}

.download-page-content {
    max-width: 620px;
}

.download-page-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.download-page-content h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.2;
    color: var(--text);
}

.download-page-content h2 {
    margin: 16px 0 0;
    font-size: 24px;
    line-height: 1.5;
    color: var(--primary);
}

.download-page-content p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.download-page-store-label {
    margin-top: 26px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.download-page-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-page-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-page-visual img {
    display: block;
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(39, 29, 77, 0.10);
}

@media (max-width: 900px) {
    .download-page-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .download-page-content {
        margin-inline: auto;
        text-align: center;
    }

    .download-page-buttons {
        justify-content: center;
    }

    .download-page-visual {
        order: -1;
    }
}

@media (max-width: 600px) {
    .download-page {
        padding: 58px 0;
    }

    .download-page-content h1 {
        font-size: 32px;
    }

    .download-page-content h2 {
        font-size: 20px;
    }

    .download-page-content p {
        font-size: 14px;
    }

    .download-page-visual img {
        border-radius: 20px;
    }

    .download-page-buttons {
        flex-direction: column;
    }

    .download-page-buttons .store-button {
        width: 100%;
        justify-content: center;
    }
}
.store-brand-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}

.download-page-buttons .store-button {
    gap: 12px;
}

/* FAQs Page */

.faqs-page {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 12%, rgba(109, 74, 255, 0.10), transparent 28%),
        #fff;
}

.faqs-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.faqs-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.faqs-heading h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.25;
    color: var(--text);
}

.faqs-heading p {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.faqs-tabs {
    max-width: 720px;
    margin: 0 auto 30px;
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f7f7fb;
}

.faqs-tab {
    min-height: 48px;
    padding: 10px 18px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.faqs-tab.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 6px 18px rgba(39, 29, 77, 0.07);
}

.faqs-content {
    max-width: 850px;
    margin: 0 auto;
}

.faqs-panel {
    display: none;
}

.faqs-panel.active {
    display: block;
}

.faq-item {
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(39, 29, 77, 0.035);
}

.faq-question {
    width: 100%;
    min-height: 66px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: start;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.faq-toggle {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.faq-item.open .faq-answer-inner {
    padding-bottom: 20px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faqs-empty {
    padding: 30px;
    border: 1px dashed var(--border);
    border-radius: 18px;
    color: var(--muted);
    background: #fafafd;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 600px) {
    .faqs-page {
        padding: 58px 0;
    }

    .faqs-heading {
        margin-bottom: 30px;
    }

    .faqs-heading h1 {
        font-size: 30px;
    }

    .faqs-heading p {
        font-size: 14px;
    }

    .faqs-tabs {
        margin-bottom: 22px;
        border-radius: 14px;
    }

    .faqs-tab {
        min-height: 44px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        min-height: 60px;
        padding: 16px;
        gap: 14px;
        font-size: 14px;
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        border-radius: 9px;
        font-size: 20px;
    }

    .faq-answer-inner {
        padding-inline: 16px;
        font-size: 13px;
    }

    .faq-item.open .faq-answer-inner {
        padding-bottom: 16px;
    }
}
/* Legal Pages */

.legal-page {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 12%, rgba(109, 74, 255, 0.08), transparent 28%),
        #fff;
}

.legal-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.legal-eyebrow {
    display: inline-flex;
    padding: 8px 15px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eeeaff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.legal-heading h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.25;
    color: var(--text);
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(39, 29, 77, 0.05);
}

.legal-content {
    color: var(--muted);
    font-size: 16px;
    line-height: 2;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
    color: var(--text);
    line-height: 1.5;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content h2 {
    font-size: 24px;
}

.legal-content h3 {
    font-size: 20px;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 20px;
    padding-inline-start: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text);
}

@media (max-width: 600px) {
    .legal-page {
        padding: 58px 0;
    }

    .legal-heading {
        margin-bottom: 28px;
    }

    .legal-heading h1 {
        font-size: 30px;
    }

    .legal-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .legal-content {
        font-size: 14px;
        line-height: 1.9;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content h3 {
        font-size: 18px;
    }
}