:root {
    --bg: #080808;
    --bg-soft: #121212;
    --surface: #161616;
    --surface-light: #f6f6f6;
    --text: #f2f2f2;
    --text-muted: #b7b7b7;
    --dark-text: #171717;
    --accent: #f59e0b;
    --accent-soft: #ffcb70;
    --border: rgba(255, 255, 255, 0.14);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}

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

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section-padding {
    padding: clamp(68px, 10vw, 120px) 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(8px);
    background: rgba(8, 8, 8, 0.85);
    border-bottom: 1px solid var(--border);
}

.header-row {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

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

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: #ffffff;
}

.brand-text {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.header-nav a:hover {
    color: var(--text);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.lang-switch a {
    min-width: 36px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 8px;
    border-radius: 999px;
    color: var(--text-muted);
}

.lang-switch a.active {
    color: #111111;
    background: var(--accent-soft);
}

.hero {
    position: relative;
    overflow: clip;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28)),
        url("https://images.unsplash.com/photo-1526392060635-9d6019884377?auto=format&fit=crop&w=1800&q=80") center/cover;
    filter: saturate(110%);
}

.hero::after {
    content: "";
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    right: -22vw;
    top: -20vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.32), transparent 65%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
}

.hero-copy h1 {
    margin: 10px 0 14px;
    font-size: clamp(1.9rem, 4.4vw, 3.5rem);
    line-height: 1.12;
    font-family: "Sora", sans-serif;
    max-width: 14ch;
}

.hero-copy p {
    margin: 0;
    color: #e0e0e0;
    max-width: 54ch;
    font-size: clamp(1rem, 2.2vw, 1.16rem);
}

.eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.hero-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-points {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-points span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: #ececec;
    font-size: 0.85rem;
}

.phone-card {
    margin-inline: auto;
    max-width: 320px;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 233, 0.94));
    color: var(--dark-text);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.phone-card img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin-bottom: 16px;
}

.phone-card h3 {
    margin: 0 0 6px;
    font-family: "Sora", sans-serif;
}

.phone-card p {
    margin: 0 0 16px;
    color: #3a3a3a;
}

.btn {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ffbe4a);
    color: #131313;
    border-color: rgba(255, 214, 140, 0.75);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-small {
    padding: 8px 14px;
    font-size: 0.84rem;
}

.light {
    background: var(--surface-light);
    color: var(--dark-text);
}

.dark {
    background: var(--bg-soft);
}

.section-head {
    max-width: 760px;
}

.section-head h2 {
    margin: 10px 0 12px;
    font-family: "Sora", sans-serif;
    line-height: 1.2;
    font-size: clamp(1.7rem, 3.8vw, 2.8rem);
}

.section-head p {
    margin: 0;
    color: color-mix(in srgb, currentColor 70%, transparent);
}

.cards-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.feature-card {
    padding: 24px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid #e7e7e7;
    box-shadow: 0 10px 24px rgba(10, 10, 10, 0.07);
}

.feature-icon {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    color: #8a5a00;
    background: #ffefcf;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
}

.feature-card p {
    margin: 0;
    color: #3f3f3f;
}

.center-cta {
    margin-top: 22px;
}

.split-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.check-list {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.check-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.25);
}

.accent-line {
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    color: #f6d28d;
}

.image-panel {
    border-radius: 24px;
    min-height: 280px;
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15)),
        url("../img/padel-court-freepik.jpg") center/cover;
    border: 1px solid var(--border);
}

.image-panel-city {
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.16)),
        url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1300&q=80") center/cover;
}

.lead-form {
    margin-top: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(20px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.03);
}

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

.lead-form label {
    display: grid;
    gap: 7px;
    font-size: 0.95rem;
}

.lead-form span {
    color: #dbdbdb;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.5);
    color: #ffffff;
    padding: 12px 14px;
    font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.lead-form small {
    color: #ff9b8c;
}

.full-width {
    grid-column: 1 / -1;
}

.form-errors {
    margin-top: 12px;
    color: #ff9b8c;
}

.form-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.form-actions p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.93rem;
}

.success-banner {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(116, 207, 157, 0.6);
    background: rgba(21, 84, 53, 0.35);
    color: #c8ffd8;
}

.photo-credit {
    margin: 10px 0 0;
    font-size: 0.82rem;
    color: #adadad;
}

.photo-credit a {
    color: #e5c17c;
    text-decoration: underline;
}

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

.footer-grid {
    display: grid;
    gap: 20px;
}

.footer-brand {
    margin-bottom: 10px;
}

.site-footer h4 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}

.site-footer p {
    margin: 0;
    color: var(--text-muted);
}

.site-footer a {
    display: block;
    margin-bottom: 7px;
    color: #efefef;
}

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

[dir="rtl"] .check-list li {
    padding-left: 0;
    padding-right: 24px;
}

[dir="rtl"] .check-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .accent-line {
    border-left: none;
    border-right: 3px solid var(--accent);
    padding-left: 0;
    padding-right: 14px;
}

[dir="rtl"] .form-actions {
    justify-content: flex-start;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 720px) {
    .header-nav {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1.1fr 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
