@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
    --bg: #070b14;
    --bg-soft: #101827;
    --panel: rgba(16, 24, 39, 0.78);
    --panel-strong: rgba(15, 23, 38, 0.94);
    --text: #f5f7fb;
    --muted: #b4bfd3;
    --line: rgba(212, 175, 55, 0.2);
    --primary: #d4af37;
    --primary-strong: #b7922c;
    --secondary: #f3e2a1;
    --secondary-soft: #e7c55a;
    --white: #ffffff;
    --shadow: 0 30px 90px rgba(8, 12, 30, 0.46);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.outage-open {
    overflow: hidden;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 26%),
        radial-gradient(circle at top right, rgba(243, 226, 161, 0.14), transparent 24%),
        radial-gradient(circle at bottom center, rgba(120, 141, 178, 0.12), transparent 34%),
        linear-gradient(180deg, #070b14 0%, #0d1422 40%, #09101d 100%);
}

h1,
h2,
h3,
.brand strong,
.price,
.showcase-card h3 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #fff8e1 0%, #f3e2a1 48%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand span,
.button,
.nav-links a,
p,
li,
span,
a,
strong {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    overflow: hidden;
}

.hero,
.section,
.footer {
    padding-left: 24px;
    padding-right: 24px;
}

.nav,
.hero-content,
.section,
.footer {
    max-width: 1180px;
    margin: 0 auto;
}

.hero {
    position: relative;
    padding-top: 16px;
}

.hero::after {
    content: "";
    position: absolute;
    top: -25%;
    left: -45%;
    width: 70%;
    height: 160%;
    pointer-events: none;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(243, 226, 161, 0.06) 42%,
        rgba(212, 175, 55, 0.14) 50%,
        rgba(243, 226, 161, 0.06) 58%,
        transparent 100%
    );
    filter: blur(8px);
    transform: rotate(7deg);
    animation: heroGoldShine 9s ease-in-out infinite;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 20%, rgba(212, 175, 55, 0.2), transparent 18%),
        radial-gradient(circle at 78% 28%, rgba(243, 226, 161, 0.12), transparent 14%);
    pointer-events: none;
}

@keyframes heroGoldShine {
    0% {
        left: -55%;
        opacity: 0;
    }
    12% {
        opacity: 0.55;
    }
    48% {
        opacity: 0.25;
    }
    75% {
        left: 105%;
        opacity: 0;
    }
    100% {
        left: 105%;
        opacity: 0;
    }
}

.nav {
    position: sticky;
    top: 14px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    backdrop-filter: blur(14px);
    background: rgba(5, 11, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(2, 8, 23, 0.22);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand strong,
.brand span {
    display: block;
}

.brand span:last-child {
    color: var(--muted);
    font-size: 14px;
    margin-top: 3px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #1c1507;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.28);
}

.nav-links {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--white);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 460px);
    gap: 38px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 84px;
}

.eyebrow,
.section-kicker,
.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.12);
    color: #f3e2a1;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(44px, 6.1vw, 74px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    max-width: 11ch;
}

.hero-copy p,
.section-heading p,
.card p,
.feature-card p,
.contact-panel p,
.demo-copy p,
.showcase-card p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.98;
}

.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #1d1504;
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.3);
}

.button-secondary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(243, 226, 161, 0.12));
    border-color: rgba(212, 175, 55, 0.35);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-trust span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #d8e7f8;
    font-size: 13px;
}

.hero-showcase {
    position: relative;
    min-height: 420px;
}

.showcase-card,
.stat-pill,
.card,
.feature-card,
.price-card,
.contact-box,
.demo-panel {
    background: var(--panel);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.card:hover,
.feature-card:hover,
.price-card:hover,
.screen-card:hover,
.contact-box:hover,
.demo-panel:hover,
.stat-pill:hover,
.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 226, 161, 0.38);
    box-shadow: 0 38px 90px rgba(8, 12, 30, 0.55);
}

.showcase-card {
    padding: 28px;
}

.main-card {
    position: relative;
    z-index: 2;
    min-height: 360px;
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(15, 23, 38, 0.95)),
        var(--panel-strong);
}

.showcase-label {
    display: inline-block;
    color: #f3e2a1;
    font-size: 13px;
    margin-bottom: 12px;
}

.showcase-card h3 {
    margin: 0 0 12px;
    font-size: clamp(32px, 2.9vw, 40px);
    line-height: 1.14;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.showcase-grid div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-grid strong,
.stat-pill strong,
.contact-box strong {
    display: block;
}

.showcase-grid strong {
    margin-bottom: 8px;
    font-size: 18px;
}

.showcase-grid span,
.stat-pill span,
.contact-box span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.showcase-float {
    position: absolute;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(14, 20, 33, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d9ecff;
    font-size: 14px;
    backdrop-filter: blur(14px);
    z-index: 3;
}

.float-top {
    right: -10px;
    top: 22px;
}

.float-bottom {
    left: -14px;
    bottom: 24px;
}

.section {
    padding-top: 70px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
}

.stat-pill {
    padding: 20px 22px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.section-heading h2 {
    margin: 16px 0 10px;
    font-size: clamp(32px, 3.8vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.cards,
.pricing-grid,
.screens-grid {
    display: grid;
    gap: 20px;
}

.three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(15, 23, 42, 0.85)),
        var(--panel);
}

.card,
.feature-card,
.price-card {
    padding: 28px;
}

.card h3,
.feature-card h3,
.price-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: clamp(24px, 2vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.card ul,
.price-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.card-link {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(243, 226, 161, 0.32);
    background: rgba(212, 175, 55, 0.16);
    color: #fff3cc;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.card-link:hover {
    background: rgba(212, 175, 55, 0.24);
    transform: translateY(-1px);
}

.section-accent {
    position: relative;
}

.section-accent::before {
    content: "";
    position: absolute;
    inset: 32px 0 auto;
    height: 240px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(243, 226, 161, 0.08));
    filter: blur(60px);
    pointer-events: none;
}

.pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
    position: relative;
    overflow: hidden;
}

.price-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 60%);
    pointer-events: none;
}

.price-card.featured {
    border-color: rgba(212, 175, 55, 0.45);
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.2), rgba(15, 23, 38, 0.92)),
        var(--panel);
}

.price {
    font-size: clamp(38px, 3.2vw, 48px);
    font-weight: 800;
    margin: 16px 0 18px;
    line-height: 1.05;
}

.screen-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(15, 23, 42, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.screen-topbar {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.screen-body {
    display: flex;
    min-height: 320px;
}

.screen-sidebar {
    width: 120px;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 12px;
    color: var(--muted);
}

.screen-sidebar strong {
    color: var(--white);
}

.screen-content {
    flex: 1;
    padding: 20px;
}

.screen-content.full {
    width: 100%;
}

.screen-title {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.screen-title strong {
    font-size: 20px;
}

.screen-title span,
.mini-panel span,
.chart-card span,
.alert-list {
    color: var(--muted);
}

.screen-sale-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
}

.mini-panel,
.chart-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-panel.tall {
    grid-row: span 2;
}

.chart-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bar-chart {
    height: 150px;
    display: flex;
    align-items: end;
    gap: 10px;
    padding-top: 12px;
}

.bar-chart i {
    display: block;
    flex: 1;
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(180deg, var(--secondary-soft), var(--primary));
}

.alert-list {
    margin: 8px 0 0;
    padding-left: 18px;
    line-height: 1.8;
}

.demo-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(243, 226, 161, 0.12)),
        rgba(16, 24, 39, 0.82);
}

.demo-actions {
    display: grid;
    gap: 14px;
    align-content: center;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.lead-form .full {
    grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(243, 226, 161, 0.24);
    background: rgba(7, 11, 20, 0.6);
    color: var(--text);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.outage-overlay {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 8, 16, 0.92);
    backdrop-filter: blur(6px);
}

.outage-panel {
    max-width: 420px;
    padding: 28px 26px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(15, 23, 38, 0.98), rgba(8, 12, 22, 0.98));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.outage-title {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-soft);
}

.outage-desc {
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--muted);
}

.outage-actions {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.outage-actions .button {
    width: auto;
    min-width: 0;
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 96px;
    z-index: 10050;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: min(420px, calc(100vw - 32px));
    padding: 16px 18px 16px 20px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(15, 23, 38, 0.98), rgba(10, 16, 29, 0.96));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.12);
    color: var(--text);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-inner {
    flex: 1;
    min-width: 0;
}

.toast-title {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    color: var(--secondary-soft);
}

.toast-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--muted);
}

.toast-close {
    flex-shrink: 0;
    margin: -4px -6px -4px 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.toast-close:hover {
    background: rgba(212, 175, 55, 0.18);
    color: var(--secondary-soft);
}

@media (max-width: 720px) {
    .toast {
        right: 14px;
        left: 14px;
        bottom: 88px;
        max-width: none;
    }
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: rgba(243, 226, 161, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.demo-next-hint {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(243, 226, 161, 0.2);
    background: rgba(7, 11, 20, 0.35);
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.demo-next-hint strong {
    color: var(--secondary-soft);
}

.next-steps-callout {
    margin: 0 0 22px;
    padding: 20px 22px 20px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(16, 24, 39, 0.72);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    display: grid;
    gap: 14px;
    counter-reset: nextstep;
    list-style: none;
}

.next-steps-callout li {
    position: relative;
    margin: 0;
    padding-left: 40px;
    border-left: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.95rem;
    counter-increment: nextstep;
}

.next-steps-callout li::before {
    content: counter(nextstep);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #041018;
    background: linear-gradient(135deg, var(--primary), var(--secondary-soft));
}

.next-steps-callout li span {
    display: block;
    font-weight: 700;
    color: var(--secondary-soft);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.form-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
}

.form-consent input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-consent a {
    color: var(--secondary-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-consent a:hover {
    color: var(--secondary);
}

.footer-legal {
    margin: 10px 0 0;
    font-size: 14px;
}

.footer-legal a {
    color: var(--secondary-soft);
}

.footer-legal a:hover {
    color: var(--secondary);
}

.legal-doc {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 24px 80px;
}

.legal-doc .legal-back {
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--secondary-soft);
}

.legal-doc .legal-back:hover {
    color: var(--secondary);
}

.legal-doc h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
}

.legal-doc .legal-updated {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 14px;
}

.legal-doc h2 {
    margin: 36px 0 14px;
    font-size: clamp(22px, 3vw, 28px);
}

.legal-doc h2:first-of-type {
    margin-top: 8px;
}

.legal-doc h3.legal-subheading {
    font-size: 1.1rem;
    margin: 24px 0 10px;
    color: var(--secondary-soft);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    letter-spacing: normal;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.legal-doc p,
.legal-doc li {
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
}

.legal-doc p {
    margin: 0 0 14px;
}

.legal-doc ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

.legal-doc li {
    margin-bottom: 8px;
}

.legal-doc .legal-note {
    margin-top: 40px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 24, 39, 0.6);
    font-size: 14px;
    color: var(--muted);
}

.quote-card p {
    font-style: italic;
    margin-top: 0;
}

.quote-card strong {
    color: #f3e2a1;
    font-size: 14px;
}

.faq-grid {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(243, 226, 161, 0.2);
    background: rgba(16, 24, 39, 0.74);
    padding: 14px 16px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #f3e2a1;
}

.faq-item p {
    margin: 10px 0 0;
    color: var(--muted);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 72px;
}

.contact-box {
    padding: 24px;
    display: grid;
    gap: 18px;
}

.contact-box a:hover {
    color: #f3e2a1;
}

.footer {
    padding-top: 22px;
    padding-bottom: 28px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    min-width: 144px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #f3e2a1);
    color: #041018;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.35);
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
}

@media (max-width: 1080px) {
    .hero-content,
    .contact-panel,
    .demo-panel,
    .three-columns,
    .four-columns,
    .pricing-grid,
    .stats-strip,
    .screens-grid,
    .chart-row,
    .lead-form {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: auto;
    }

    .float-top,
    .float-bottom {
        position: static;
        margin-top: 12px;
    }
}

@media (max-width: 720px) {
    .hero,
    .section,
    .footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-content {
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.08;
    }

    .section-heading h2 {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.16;
    }

    .card h3,
    .feature-card h3,
    .price-card h3 {
        font-size: clamp(22px, 6vw, 26px);
    }

    .hero-actions,
    .demo-actions {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .screen-body,
    .screen-sale-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .screen-sidebar {
        width: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-width: 124px;
    }
}
