@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #0b0c0f;
    --bg2: #090a0d;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.035);
    --border: rgba(255, 255, 255, 0.1);
    --border-2: rgba(255, 255, 255, 0.14);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.7);
    --faint: rgba(255, 255, 255, 0.56);
    --gold: #d7a43b;
    --gold-2: #f1d28a;
    --green: #25d366;
    --green-dark: #1ebc57;
    --danger: #ff9a9a;
    --success: #97f5c0;
    --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 10px 32px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --radius-sm: 14px;
    --container: 1120px;
    --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg2);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background:
        radial-gradient(1100px 600px at 18% -10%, rgba(215, 164, 59, 0.2), transparent 60%),
        radial-gradient(900px 520px at 90% 20%, rgba(215, 164, 59, 0.1), transparent 55%),
        linear-gradient(180deg, var(--bg), var(--bg2));
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("assets/noise.webp");
    background-size: 256px 256px;
    opacity: 0.065;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 0;
}

a {
    color: inherit;
}

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

button,
input,
textarea,
summary {
    font: inherit;
}

main,
.site-header,
.site-footer,
.whatsapp-float,
.liveHelp {
    position: relative;
    z-index: 1;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.section {
    padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.section-alt {
    background:
        radial-gradient(900px 520px at 20% 20%, rgba(215, 164, 59, 0.1), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eyebrow,
.card-kicker {
    margin: 0;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    overflow-wrap: break-word;
}

.card-kicker {
    color: var(--faint);
    margin-bottom: 0.45rem;
}

.section-head {
    margin-bottom: 1.35rem;
}

.section-head.centered {
    text-align: center;
}

.section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin: 0.35rem 0 0.7rem;
}

.section-note {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 72ch;
}

.section-note a,
.inline-link {
    color: var(--gold-2);
    text-decoration: none;
}

.section-note a:hover,
.inline-link:hover {
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0.8rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
    user-select: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    color: rgba(10, 10, 10, 0.92);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    box-shadow: 0 14px 45px rgba(215, 164, 59, 0.18);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-secondary,
.btn-phone {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-phone:hover,
.btn-phone:focus {
    border-color: rgba(215, 164, 59, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.btn-whatsapp {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    background: rgba(11, 12, 15, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    min-width: 0;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    flex: 0 0 40px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
}

.brand-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.32rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.main-nav .nav-phone {
    color: rgba(10, 10, 10, 0.92);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    font-weight: 700;
}

.hero {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 2.25rem;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 164, 59, 0.35), transparent);
    opacity: 0.65;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: center;
}

.hero h1 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(3rem, 5.8vw, 5.35rem);
    line-height: 0.95;
    margin: 0.4rem 0 0.95rem;
}

.subheadline {
    margin: 0 0 1.4rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 56ch;
}

.cta-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coin-stage {
    position: relative;
    width: min(420px, 85vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.coin {
    width: 100%;
    border-radius: 50%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
    transform: translateZ(0) rotate(-2deg);
    transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.coin-stage:hover .coin {
    transform: translateY(-6px) rotate(2deg);
    filter: drop-shadow(0 42px 70px rgba(0, 0, 0, 0.6));
}

.coin-glow {
    position: absolute;
    inset: -18%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(215, 164, 59, 0.38), transparent 60%);
    filter: blur(28px);
    opacity: 0.75;
    z-index: -1;
}

.trust-section {
    padding: 1.35rem 0;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.service-grid,
.problem-grid,
.offer-grid,
.social-grid {
    display: grid;
    gap: 1rem;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-grid,
.offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.service-card,
.problem-card,
.offer-card,
.social-card,
.faq-list details,
.help-form {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background:
        radial-gradient(650px 210px at 20% 0%, rgba(215, 164, 59, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-soft);
}

.service-card,
.problem-card,
.offer-card,
.social-card {
    padding: 1.15rem;
}

button.problem-card {
    appearance: none;
    width: 100%;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.problem-card {
    transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.problem-card:hover,
.problem-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(215, 164, 59, 0.34);
    background:
        radial-gradient(650px 210px at 20% 0%, rgba(215, 164, 59, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.problem-card:focus-visible {
    outline: 3px solid rgba(241, 210, 138, 0.62);
    outline-offset: 3px;
}

.problem-card:active {
    transform: translateY(0);
}

.service-card h3,
.problem-card h3,
.offer-card h3,
.social-card h3 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    line-height: 1.08;
    margin: 0 0 0.65rem;
}

.service-card ul,
.offer-card ul {
    margin: 0.65rem 0 0;
    padding-left: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
}

.service-card li,
.offer-card li {
    margin: 0.15rem 0;
}

.service-card-note {
    display: flex;
    align-items: center;
}

.service-card-note p {
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-card-note a,
.business-name a {
    color: var(--gold-2);
    text-decoration: none;
}

.service-card-note a:hover,
.business-name a:hover {
    text-decoration: underline;
}

.problem-card p,
.offer-card p,
.social-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.social-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(520px 180px at 50% 0%, rgba(215, 164, 59, 0.12), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
}

.social-label {
    margin-bottom: 0.55rem;
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.social-card .social-handle {
    color: var(--faint);
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
}

.social-btn {
    min-width: 148px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    color: rgba(10, 10, 10, 0.92);
}

.social-btn:hover,
.social-btn:focus {
    background: #ffffff;
    border-color: #ffffff;
}

.offer-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.offer-card .btn {
    margin-top: auto;
}

.monthly-plan {
    border-color: rgba(215, 164, 59, 0.24);
}

.price-note {
    color: var(--text);
}

.form-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.help-form {
    padding: 1.15rem;
    display: grid;
    gap: 0.9rem;
}

.form-row {
    display: grid;
    gap: 0.45rem;
}

.form-row > label,
.form-row > span {
    color: var(--faint);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

input,
textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
    padding: 0.75rem 0.85rem;
    outline: none;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

input:focus,
textarea:focus {
    border-color: rgba(215, 164, 59, 0.45);
    box-shadow: 0 0 0 4px rgba(215, 164, 59, 0.12);
    background: rgba(0, 0, 0, 0.18);
}

.radio-group {
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.radio-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.5;
}

.radio-group input {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--gold);
}

.form-note {
    margin: 0.1rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: center;
}

.quick-options {
    text-align: center;
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.16);
}

.quick-options p {
    margin: 0 0 0.85rem;
    color: var(--muted);
}

.quick-options .btn + .btn {
    margin-left: 0.5rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    padding: 1rem 1.15rem;
}

.faq-list summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--gold-2);
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list details[open] summary {
    margin-bottom: 0.65rem;
}

.faq-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.other-services-section {
    padding: 0 0 clamp(2.75rem, 5vw, 4.25rem);
    text-align: center;
}

.site-footer {
    padding: 1.6rem 0 2.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.1);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--muted);
}

.footer-left p {
    margin: 0;
    max-width: 52ch;
    line-height: 1.6;
}

.business-name {
    color: var(--text);
}

.footer-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: 0.9;
    flex: 0 0 28px;
}

.contact-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.35rem 0.45rem;
    border-radius: 10px;
}

.contact-list a:hover,
.contact-list a:focus {
    color: var(--gold-2);
    background: rgba(255, 255, 255, 0.05);
}

.footer-note {
    width: 100%;
    margin: 0.5rem 0 0;
    color: var(--faint);
    font-size: 0.92rem;
}

.whatsapp-float {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 2147483646;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    opacity: 1;
    visibility: visible;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    display: block;
    fill: currentColor;
}

.liveHelp {
    position: fixed;
    right: 14px;
    bottom: 92px;
    z-index: 2147483646;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.liveHelpButton {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.liveHelpButtonInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.liveHelpButton:hover .liveHelpButtonInner,
.liveHelpButton:focus .liveHelpButtonInner {
    transform: none;
    filter: none;
}

.liveHelpCoin {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    animation: breathe 2.8s ease-in-out infinite;
}

.liveHelpCoin img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.liveHelpLabel {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 209, 120, 0.92);
}

.backToTopButton {
    position: fixed;
    right: 14px;
    bottom: 206px;
    z-index: 2147483645;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(8, 10, 14, 0.82);
    color: rgba(240, 209, 120, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
    cursor: pointer;
    padding: 0.52rem 0.72rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.backToTopButton:hover {
    border-color: rgba(215, 164, 59, 0.32);
    background: rgba(18, 20, 28, 0.9);
}

.backToTopButton:active {
    transform: translateY(1px);
}

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

    50% {
        transform: scale(1.06);
    }

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

.chatWindow {
    width: min(360px, 92vw);
    height: min(520px, 74svh);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(18, 18, 26, 0.92), rgba(10, 10, 14, 0.86));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chatWindow[hidden] {
    display: none !important;
}

.chatHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatHeaderLeft {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatHeaderLeft img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(214, 179, 92, 0.35);
}

.chatTitle {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.chatTitle strong {
    font-size: 13px;
}

.chatTitle span {
    font-size: 11px;
    color: var(--muted);
}

.iconBtn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-radius: 10px;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.iconBtn:hover {
    transform: translateY(-1px);
    border-color: rgba(214, 179, 92, 0.35);
}

.chatMessages {
    padding: 12px;
    flex: 1;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(214, 179, 92, 0.3) transparent;
}

.bubble {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    white-space: pre-wrap;
    line-height: 1.45;
    font-size: 13px;
}

.bubble.user {
    align-self: flex-end;
    border-color: rgba(214, 179, 92, 0.26);
    background: rgba(214, 179, 92, 0.08);
}

.bubble.assistant {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.04);
}

.chatComposer {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.composerIconBtn {
    min-width: 64px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.composerIconBtn:hover {
    transform: translateY(-1px);
    border-color: rgba(214, 179, 92, 0.35);
    background: rgba(214, 179, 92, 0.12);
}

.composerIconBtn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.typing {
    padding: 0 12px 12px;
    font-size: 12px;
    color: var(--muted);
}

.liveHelpMemory {
    padding-top: 0;
}

@media (max-width: 920px) {
    .hero-grid,
    .service-grid,
    .problem-grid,
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .hero-art {
        order: -1;
    }

    .coin-stage {
        width: min(320px, 70vw);
    }
}

@media (max-width: 760px) {
    .eyebrow {
        letter-spacing: 0.12em;
        font-size: 0.72rem;
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 0.85rem 0;
    }

    .brand-name {
        white-space: normal;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .main-nav a {
        padding: 0.45rem 0.6rem;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .quick-options {
        display: grid;
        gap: 0.65rem;
    }

    .quick-options .btn + .btn {
        margin-left: 0;
    }
}

@media (max-width: 700px) {
    body.liveHelpOpenMobile {
        overflow: hidden;
    }

    .whatsapp-float {
        right: max(10px, env(safe-area-inset-right));
        bottom: max(10px, env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
    }

    .liveHelp {
        right: max(10px, env(safe-area-inset-right));
        bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .liveHelpButtonInner {
        gap: 4px;
    }

    .liveHelpCoin {
        width: 68px;
        height: 68px;
    }

    .liveHelpLabel {
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .backToTopButton {
        right: max(10px, env(safe-area-inset-right));
        bottom: calc(180px + env(safe-area-inset-bottom));
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .liveHelp.liveHelp--open {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        align-items: stretch;
        width: auto;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .chatWindow {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .chatComposer {
        padding: 8px 10px calc(10px + env(safe-area-inset-bottom));
    }

    .composerIconBtn {
        min-width: 58px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}
