/*
    LOMRAXE OFFICIAL STYLE SHEET
    Identity: Dark, Modern, Premium
    Primary Color: #700000
*/

:root {
    --primary-red: #700000;
    --accent-red: #E91E63;
    --bg-dark: #0A0A0A;
    --card-bg: #141414;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --border-color: rgba(255, 255, 255, 0.05);
    --radius-xl: 32px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', 'Tajawal', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: clamp(24px, 2vw, 64px);
}

/* Header */
header {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: white;
}

.lang-switcher select {
    background: var(--card-bg);
    color: white;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
}

/* Hero Section - 2 Columns */
.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

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

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-logo-large {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(112, 0, 0, 0.3));
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    color: var(--text-gray);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

/* Store Badges - Precise Alignment */
.store-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.store-badge {
    height: 44px; /* professional consistent height */
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.store-badge:hover {
    transform: translateY(-3px);
}

.store-badge img {
    height: 100%;
    width: auto;
    display: block;
}

/* Specific scale for Google Play to match visual weight */
.store-badge.google-play img {
    height: 152%;
    margin: -11px 0;
}

/* Feature Sections */
.features-grid {
    padding: 100px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    border-top: 1px solid var(--border-color);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: white;
}

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

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-gray);
}

.footer-links {
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive & RTL */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 0;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content p {
        margin: 0 auto 40px;
    }
    .store-badges {
        justify-content: center;
    }
    .hero-logo-large {
        max-width: 280px;
        margin-bottom: 40px;
    }
}

[dir="rtl"] .hero-content {
    text-align: right;
}

@media (max-width: 900px) {
    [dir="rtl"] .hero-content {
        text-align: center;
    }
}


/* 2026 responsive storefront and hero refresh */
.logo-img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-photo {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(112, 0, 0, 0.28);
}

.store-badge {
    width: 152px;
    height: 46px;
    flex: 0 0 auto;
}

.store-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-badge.google-play img {
    width: auto;
    height: 145%;
    margin: -10px 0;
}

@media (max-width: 600px) {
    header {
        height: 82px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

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

    .hero {
        gap: 28px;
        padding: 32px 0 52px;
    }

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

    .store-badges {
        width: 100%;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .store-badge {
        width: min(43vw, 142px);
        height: 42px;
    }

    .store-badge.google-play img {
        height: 138%;
        margin: -8px 0;
    }
}


/* Social and support links */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
    outline: none;
}

.social-link svg {
    width: 23px;
    height: 23px;
    display: block;
}

@media (max-width: 700px) {
    header {
        padding: 16px 0;
        min-height: 112px;
        height: auto;
        flex-wrap: wrap;
        row-gap: 14px;
    }

    .logo-container {
        order: 1;
    }

    .lang-switcher {
        order: 2;
    }

    .social-links {
        order: 3;
        width: 100%;
        gap: 11px;
    }

    .social-link {
        width: 34px;
        height: 34px;
    }
}


/* App experience showcase */
.app-showcase {
    padding: 96px 0 110px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

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

.showcase-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff315b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.showcase-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.showcase-heading p {
    margin: 0;
    color: #a9a9b2;
    font-size: 1.05rem;
    line-height: 1.75;
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.phone-shot {
    min-width: 0;
    margin: 0;
}

.phone-screen {
    padding: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 30px;
    background: linear-gradient(145deg, #2b2b31, #111114);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .38);
    transition: transform .28s ease, border-color .28s ease;
}

.phone-shot:hover .phone-screen {
    transform: translateY(-8px);
    border-color: rgba(255, 49, 91, .55);
}

.phone-screen img {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    object-position: top;
    border-radius: 22px;
}

.phone-shot figcaption {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 20px 5px 0;
}

.phone-shot figcaption strong {
    font-size: 1rem;
}

.phone-shot figcaption span {
    color: #92929c;
    font-size: .88rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .app-showcase {
        padding: 72px 0 82px;
    }

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

    .app-screenshots {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding: 4px 4px 22px;
        scroll-padding-inline: 4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: #ff315b #19191d;
    }

    .phone-shot {
        flex: 0 0 min(70vw, 260px);
        scroll-snap-align: center;
    }

    .phone-shot:hover .phone-screen {
        transform: none;
    }
}

@media (max-width: 480px) {
    .app-showcase {
        padding-top: 62px;
    }

    .showcase-heading {
        padding: 0 8px;
    }

    .showcase-heading p {
        font-size: .96rem;
    }

    .phone-shot {
        flex-basis: min(76vw, 248px);
    }
}


/* Community trust */
.community-proof {
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.proof-intro {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.proof-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff315b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.proof-intro h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.proof-intro p {
    margin: 0;
    color: #aaaab3;
    font-size: 1.04rem;
    line-height: 1.75;
}

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

.proof-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(35, 35, 41, .95), rgba(16, 16, 19, .98));
    box-shadow: 0 24px 55px rgba(0, 0, 0, .24);
}

.proof-card::after {
    position: absolute;
    right: -45px;
    bottom: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 49, 91, .09);
    content: "";
    filter: blur(5px);
}

.proof-number,
.proof-icon {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    color: #ff315b;
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
}

.proof-icon {
    width: 58px;
    justify-content: center;
    border: 1px solid rgba(255, 49, 91, .4);
    border-radius: 18px;
    background: rgba(255, 49, 91, .1);
    font-size: 1.6rem;
}

.proof-card h3 {
    position: relative;
    z-index: 1;
    margin: 22px 0 10px;
    font-size: 1.13rem;
}

.proof-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #9696a0;
    font-size: .92rem;
    line-height: 1.65;
}

.proof-note {
    margin: 26px 0 0;
    color: #777781;
    font-size: .78rem;
    text-align: center;
}

@media (max-width: 760px) {
    .community-proof {
        padding: 70px 0;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-card {
        min-height: 0;
        padding: 27px;
    }
}

@media (max-width: 1000px) and (min-width: 761px) {
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Frequently asked questions */
.faq-section {
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

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

.faq-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff315b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.faq-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.faq-heading p {
    margin: 0;
    color: #aaaab3;
    font-size: 1.04rem;
    line-height: 1.75;
}

.faq-list {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(31, 31, 37, .96), rgba(16, 16, 19, .98));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.faq-item summary {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.45;
}

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

.faq-item summary:focus-visible {
    outline: 2px solid #ff315b;
    outline-offset: -3px;
}

.faq-toggle {
    position: relative;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 49, 91, .35);
    border-radius: 50%;
    background: rgba(255, 49, 91, .09);
}

.faq-toggle::before,
.faq-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #ff315b;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] {
    border-color: rgba(255, 49, 91, .32);
}

.faq-item[open] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    padding: 0 26px 24px;
}

.faq-answer p {
    max-width: 720px;
    margin: 0;
    color: #a5a5ae;
    font-size: .95rem;
    line-height: 1.75;
}

body[dir="rtl"] .faq-item summary,
body[dir="rtl"] .faq-answer {
    text-align: right;
}

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

    .faq-heading {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .faq-heading p {
        font-size: .96rem;
    }

    .faq-item summary {
        min-height: 68px;
        gap: 14px;
        padding: 19px 20px;
        font-size: .96rem;
    }

    .faq-toggle {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .faq-answer {
        padding: 0 20px 21px;
    }
}


/* Mobile fixed download bar */
.mobile-download-bar {
    display: none;
}

@media (max-width: 760px) {
    body.has-mobile-download-bar {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .mobile-download-bar {
        position: fixed;
        z-index: 1000;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 12px;
        display: block;
        padding: 9px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 20px;
        background: rgba(15, 15, 18, .92);
        box-shadow: 0 16px 44px rgba(0, 0, 0, .5);
        opacity: 1;
        transform: translateY(0);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }

    .mobile-download-bar.is-hidden {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 24px));
    }

    .mobile-download-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .mobile-download-badge {
        width: min(42vw, 148px);
        height: 43px;
        flex: 0 1 148px;
    }

    .mobile-download-badge img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-download-badge.google-play img {
        width: auto;
        max-width: none;
        height: 138%;
        margin: -8px auto;
    }
}

@media (max-width: 360px) {
    .mobile-download-bar {
        right: 8px;
        left: 8px;
        padding: 7px;
        border-radius: 17px;
    }

    .mobile-download-inner {
        gap: 5px;
    }

    .mobile-download-badge {
        width: 43vw;
        height: 39px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-download-bar {
        transition: none;
    }
}


/* Safety and trust */
.safety-section {
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

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

.safety-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff315b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.safety-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.safety-heading p {
    margin: 0;
    color: #aaaab3;
    font-size: 1.04rem;
    line-height: 1.75;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.safety-card {
    min-width: 0;
    padding: 30px 26px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(31, 31, 37, .96), rgba(15, 15, 18, .99));
    box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
    transition: transform .25s ease, border-color .25s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 49, 91, .38);
}

.safety-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 49, 91, .38);
    border-radius: 17px;
    background: rgba(255, 49, 91, .1);
    color: #ff315b;
}

.safety-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.safety-age {
    font-size: 1.05rem;
    font-weight: 900;
}

.safety-card h3 {
    margin: 22px 0 10px;
    font-size: 1.08rem;
    line-height: 1.35;
}

.safety-card p {
    margin: 0;
    color: #9696a0;
    font-size: .91rem;
    line-height: 1.65;
}

.safety-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.safety-actions a {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: #d8d8dd;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.safety-actions a:hover,
.safety-actions a:focus-visible {
    border-color: rgba(255, 49, 91, .48);
    background: rgba(255, 49, 91, .1);
    color: #fff;
    outline: none;
}

body[dir="rtl"] .safety-card {
    text-align: right;
}

@media (max-width: 1000px) {
    .safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .safety-heading {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .safety-heading p {
        font-size: .96rem;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .safety-card {
        padding: 25px 23px;
    }

    .safety-card:hover {
        transform: none;
    }

    .safety-actions {
        gap: 8px;
        margin-top: 26px;
    }

    .safety-actions a {
        padding: 9px 13px;
        font-size: .8rem;
    }
}


/* How LOMRAXE works */
.how-section {
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

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

.how-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff315b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.how-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.how-heading p {
    margin: 0;
    color: #aaaab3;
    font-size: 1.04rem;
    line-height: 1.75;
}

.how-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.how-steps::before {
    position: absolute;
    top: 52px;
    right: 16.66%;
    left: 16.66%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 49, 91, .42), transparent);
    content: "";
}

.how-step {
    position: relative;
    min-width: 0;
    padding: 32px 28px 30px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(31, 31, 37, .96), rgba(15, 15, 18, .99));
    text-align: center;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .2);
}

.how-number {
    position: absolute;
    top: 17px;
    right: 17px;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff315b;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(255, 49, 91, .28);
}

body[dir="rtl"] .how-number {
    right: auto;
    left: 17px;
}

.how-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 49, 91, .38);
    border-radius: 20px;
    background: #17171b;
    color: #ff315b;
}

.how-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.how-step h3 {
    margin: 23px 0 11px;
    font-size: 1.12rem;
    line-height: 1.4;
}

.how-step p {
    margin: 0;
    color: #9696a0;
    font-size: .92rem;
    line-height: 1.68;
}

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

    .how-heading {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .how-heading p {
        font-size: .96rem;
    }

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

    .how-steps::before {
        top: 42px;
        right: 50%;
        bottom: 42px;
        left: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(transparent, rgba(255, 49, 91, .35), transparent);
    }

    .how-step {
        padding: 27px 24px;
    }
}


/* Legal and information pages: accessible links */
.content-page a,
.content-page a:visited {
    color: #ff8aa3;
    font-weight: 700;
    text-decoration-color: rgba(255, 138, 163, 0.65);
    text-underline-offset: 3px;
}

.content-page a:hover,
.content-page a:focus-visible {
    color: #ffffff;
    text-decoration-color: #ffffff;
    outline: none;
}


/* Highlight official contact links on legal pages */
.content-page a[href^="mailto:"],
.content-page a[href="https://lomraxe.com"],
.content-page a[href="https://www.lomraxe.com"],
.content-page a[href^="mailto:"]:visited,
.content-page a[href="https://lomraxe.com"]:visited,
.content-page a[href="https://www.lomraxe.com"]:visited {
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: #ff315b;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.content-page a[href^="mailto:"]:hover,
.content-page a[href^="mailto:"]:focus-visible,
.content-page a[href="https://lomraxe.com"]:hover,
.content-page a[href="https://lomraxe.com"]:focus-visible,
.content-page a[href="https://www.lomraxe.com"]:hover,
.content-page a[href="https://www.lomraxe.com"]:focus-visible {
    color: #ffb3c4 !important;
    text-decoration-color: #ffffff;
}


/* Match AppGallery badge visual size with Google Play */
.store-badge.app-gallery img,
.mobile-download-badge.app-gallery img {
    transform: scale(1.14);
    transform-origin: center;
}


/* Wide desktop: use the available canvas without changing the established layout. */
@media (min-width: 1600px) {
    .hero {
        gap: clamp(72px, 5vw, 120px);
        padding-block: clamp(80px, 6vw, 130px);
    }

    .hero-photo {
        max-width: clamp(620px, 34vw, 860px);
    }

    .hero h1 {
        font-size: clamp(4rem, 4.6vw, 6rem);
    }

    .hero p {
        max-width: 760px;
        font-size: clamp(1.25rem, 1.25vw, 1.55rem);
    }
}
