/* =====================
   DESIGN TOKENS
   ===================== */
:root {
    --bg: #0d0c0b;
    --bg-2: #141210;
    --bg-3: #1c1916;
    --bg-card: #181512;
    --gold: #d4913a;
    --gold-2: #f0a83c;
    --gold-light: rgba(212, 145, 58, 0.15);
    --gold-glow: 0 0 40px rgba(212, 145, 58, 0.25);
    --white: #ffffff;
    --white-60: rgba(255, 255, 255, 0.6);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --green: #22c55e;
    --wa: #25d366;
    --r: 12px;
    --r-lg: 20px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 24px rgba(212, 145, 58, 0.3);
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

input,
select,
textarea,
button {
    font-family: var(--font-body);
}

/* =====================
   LAYOUT
   ===================== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--white-60);
    max-width: 560px;
    margin-bottom: 60px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: var(--r);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    padding: 12px 22px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    color: #0d0c0b;
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 145, 58, 0.45);
}

.btn--ghost {
    background: var(--white-10);
    color: var(--white);
    border: 1.5px solid var(--white-30);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--whatsapp {
    background: var(--wa);
    color: #fff;
}

.btn--whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--r-lg);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(13, 12, 11, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a:not(.btn) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-60);
    position: relative;
}

.nav a:not(.btn):hover {
    color: var(--white);
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 190;
    background: rgba(13, 12, 11, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a:not(.btn) {
    color: var(--white-60);
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:not(.btn):hover {
    color: var(--gold);
}

.mobile-nav .btn {
    margin-top: 12px;
    align-self: flex-start;
}

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 9, 8, 0.9) 40%, rgba(10, 9, 8, 0.55) 100%);
}

.hero__content {
    position: relative;
    z-index: 10;
    padding-top: 130px;
    padding-bottom: 100px;
    max-width: 780px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    border: 1px solid rgba(212, 145, 58, 0.35);
    background: rgba(212, 145, 58, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__sub strong {
    color: var(--gold);
    font-weight: 700;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 24px;
    text-align: center;
}

.trust-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.trust-label {
    font-size: 0.78rem;
    color: var(--white-60);
    margin-top: 2px;
}

.trust-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white-30);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.scroll-dot {
    animation: scrollBounce 2s infinite;
}

/* =====================
   CALCULATOR
   ===================== */
.calc-section {
    background: var(--bg-2);
}

.calc-section .section-title,
.calc-section .section-sub {
    text-align: center;
}

.calc-section .section-sub {
    margin: 0 auto 48px;
}

.calc-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.calc-inputs {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid var(--border);
}

.calc-result {
    padding: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group select,
.form-group input,
.form-group textarea {
    background: var(--bg-3);
    border: 1.5px solid var(--border);
    color: var(--white);
    border-radius: var(--r);
    padding: 12px 16px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 145, 58, 0.12);
}

.form-group select option {
    background: var(--bg-3);
}

.room-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.room-btn {
    flex: 1;
    padding: 10px 8px;
    background: var(--bg-3);
    border: 1.5px solid var(--border);
    color: var(--white-60);
    border-radius: var(--r);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.room-btn.active,
.room-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--gold);
}

.result-compare {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.result-col {
    flex: 1;
}

.result-col__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-60);
    margin-bottom: 6px;
}

.result-col__amount {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white-30);
}

.result-col--st .result-col__amount {
    color: var(--green);
}

.result-col__note {
    font-size: 0.78rem;
    color: var(--white-30);
    margin-top: 4px;
}

.result-vs {
    font-weight: 700;
    color: var(--white-30);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.result-diff {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 12px 20px;
    border-radius: var(--r);
    margin-bottom: 24px;
}

.diff-arrow {
    font-size: 1.4rem;
    color: var(--green);
}

.diff-text {
    font-weight: 600;
    color: var(--green);
}

#diffPercent {
    font-size: 1.3rem;
}

.bar-wrap {
    margin-bottom: 12px;
}

.bar-label {
    font-size: 0.8rem;
    color: var(--white-60);
    margin-bottom: 6px;
}

.bar {
    height: 8px;
    background: var(--bg-3);
    border-radius: 100px;
    overflow: hidden;
}

.bar__fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.bar--lt .bar__fill {
    background: rgba(255, 255, 255, 0.3);
}

.bar--st .bar__fill {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
}

.result-cta {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.result-cta p {
    font-size: 0.9rem;
    color: var(--white-60);
    margin-bottom: 16px;
}

/* =====================
   SAFETY
   ===================== */
.safety-section {
    background: var(--bg);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.safety-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: var(--transition);
}

.safety-card:hover {
    border-color: rgba(212, 145, 58, 0.4);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.safety-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 145, 58, 0.1) 0%, rgba(212, 145, 58, 0.04) 100%);
    border-color: rgba(212, 145, 58, 0.3);
    position: relative;
}

.safety-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.safety-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.safety-card p {
    font-size: 0.875rem;
    color: var(--white-60);
    line-height: 1.65;
}

.safety-card p strong {
    color: var(--white);
}

.safety-badge {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
}

/* =====================
   SERVICES
   ===================== */
.services-section {
    background: var(--bg-2);
}

.services-section .section-title,
.services-section .section-sub {
    text-align: center;
}

.services-section .section-sub {
    margin: 0 auto 56px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--transition);
}

.service-item:first-child {
    border-radius: var(--r-lg) var(--r-lg) var(--r) var(--r);
}

.service-item:last-child {
    border-radius: var(--r) var(--r) var(--r-lg) var(--r-lg);
}

.service-item+.service-item {
    border-top: none;
}

.service-item:hover {
    background: var(--bg-3);
    border-color: rgba(212, 145, 58, 0.25);
    z-index: 1;
    position: relative;
}

.service-item__num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    -webkit-text-stroke: 1.5px var(--gold);
    text-align: center;
}

.service-item__content h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-item__content p {
    font-size: 0.875rem;
    color: var(--white-60);
    line-height: 1.6;
}

.service-item__content p strong {
    color: var(--white);
}

.service-item__tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.service-item__tags span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--gold-light);
    color: var(--gold);
    border: 1px solid rgba(212, 145, 58, 0.25);
    white-space: nowrap;
}

/* =====================
   DASHBOARD
   ===================== */
.dashboard-section {
    background: var(--bg);
}

.dashboard-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dashboard-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dashboard-text p {
    color: var(--white-60);
    font-size: 1rem;
    line-height: 1.7;
    margin: 16px 0 28px;
}

.dashboard-text p strong {
    color: var(--white);
}

.dash-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.dash-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 0.88rem;
    line-height: 1.55;
    transition: var(--transition);
}

.dash-features li:hover {
    border-color: rgba(212, 145, 58, 0.3);
}

.dash-features li strong {
    color: var(--white);
}

.dash-features li color: var(--white-60);

.df-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Phone mockup */
.dashboard-mockup {
    display: flex;
    justify-content: center;
}

.mockup-phone {
    width: 280px;
    background: #111;
    border-radius: 40px;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--gold-glow);
    position: relative;
}

.mockup-phone__inner {
    background: #0d0c0b;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-screen {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mstat {
    background: var(--bg-3);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid var(--border);
}

.mstat__label {
    font-size: 0.7rem;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.mstat__value {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
}

.mstat--income .mstat__value {
    color: var(--green);
}

.mstat--occ .mstat__value {
    color: var(--gold);
}

.mstat__delta {
    font-size: 0.72rem;
    color: var(--green);
    margin-top: 2px;
}

.mocc-bar {
    height: 6px;
    background: var(--bg);
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.mocc-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
    border-radius: 10px;
}

.mcal {
    background: var(--bg-3);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--border);
}

.mcal__header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.mcal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 10px;
}

.mcal__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 5px;
}

.mcal__day.booked {
    background: rgba(212, 145, 58, 0.25);
    color: var(--gold);
}

.mcal__day.owner {
    background: rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
}

.mcal__day.free {
    background: var(--bg);
    color: var(--white-30);
}

.mcal__legend {
    display: flex;
    gap: 10px;
}

.mcal__legend span {
    font-size: 0.62rem;
    color: var(--white-60);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot--booked {
    background: var(--gold);
}

.dot--owner {
    background: #818cf8;
}

.dot--free {
    background: rgba(255, 255, 255, 0.2);
}

.mreview {
    background: var(--bg-3);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--border);
}

.mreview__stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.mreview__text {
    font-size: 0.72rem;
    color: var(--white-60);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 6px;
}

.mreview__author {
    font-size: 0.65rem;
    color: var(--white-30);
}

/* =====================
   SOCIAL PROOF
   ===================== */
.proof-section {
    background: var(--bg-2);
}

.proof-section .section-title {
    text-align: center;
}

.proof-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.badge-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.badge-card:hover {
    border-color: rgba(212, 145, 58, 0.4);
    box-shadow: var(--gold-glow);
}

.badge-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.badge-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.badge-sub {
    font-size: 0.82rem;
    color: var(--white-60);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: var(--transition);
}

.case-card:hover {
    border-color: rgba(212, 145, 58, 0.4);
    transform: translateY(-2px);
}

.case-card__loc {
    font-size: 0.78rem;
    color: var(--white-60);
    margin-bottom: 16px;
}

.case-card__compare {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.case-col {
    flex: 1;
}

.case-col__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white-30);
    margin-bottom: 4px;
}

.case-col__val {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white-60);
}

.case-col--after .case-col__val {
    color: var(--green);
}

.case-col__note {
    font-size: 0.7rem;
    color: var(--white-30);
    margin-top: 2px;
}

.case-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.case-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-light);
    border: 1px solid rgba(212, 145, 58, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-block;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
}

.testimonial__stars {
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonial__text {
    font-size: 0.93rem;
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial__author {
    font-size: 0.8rem;
    color: var(--white-30);
    font-weight: 500;
}

/* =====================
   CONTACT
   ===================== */
.contact-section {
    background: var(--bg);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 14px 0 16px;
}

.contact-left p {
    color: var(--white-60);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-left p strong {
    color: var(--white);
}

.contact-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white-60);
}

.perk span {
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fg label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fg input,
.fg textarea,
.fg select {
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    color: var(--white);
    border-radius: var(--r);
    padding: 12px 16px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--white-30);
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 145, 58, 0.12);
}

.fg textarea {
    resize: vertical;
    min-height: 90px;
}

.form-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-agree input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold);
}

.form-agree label {
    font-size: 0.78rem;
    color: var(--white-30);
    line-height: 1.5;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border-radius: var(--r-lg);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0d0c0b;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--white-60);
    font-size: 0.9rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: #080807;
    padding-top: 60px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer__logo {
    margin-bottom: 14px;
}

.footer__brand p {
    font-size: 0.875rem;
    color: var(--white-60);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--wa);
    color: var(--white);
    border-color: var(--wa);
}

.footer__col h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 18px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul li,
.footer__col ul li a {
    font-size: 0.875rem;
    color: var(--white-60);
}

.footer__col ul li a:hover {
    color: var(--gold);
}

.footer__bottom {
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--white-30);
}

.footer__bottom-inner a {
    color: var(--white-30);
    margin-left: 20px;
}

.footer__bottom-inner a:hover {
    color: var(--gold);
}

/* =====================
   FLOATING WHATSAPP
   ===================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 300;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--wa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #1fb855;
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, 0.7);
    }
}

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-ready [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .safety-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-card--featured {
        grid-column: span 2;
    }

    .dashboard-inner {
        grid-template-columns: 1fr;
    }

    .dashboard-mockup {
        display: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero__trust {
        padding: 16px;
    }

    .trust-item {
        padding: 8px 16px;
    }

    .trust-sep {
        display: none;
    }

    .calc-card {
        grid-template-columns: 1fr;
    }

    .calc-inputs {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .safety-card--featured {
        grid-column: span 1;
    }

    .service-item {
        grid-template-columns: 48px 1fr;
    }

    .service-item__tags {
        display: none;
    }

    .proof-badges {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item__num {
        display: none;
    }
}