:root {
    --bg: #0e0e0e;
    --surface: #1a1a1a;
    --surface-2: #242424;
    --accent: #f97316;
    --accent-light: #fb923c;
    --accent-glow: rgba(249, 115, 22, 0.15);
    --text: #f5f5f5;
    --text-muted: #a3a3a3;
    --text-dim: #737373;
    --border: #2a2a2a;
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 18px;
}

.nav-logo:hover {
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--text);
    background: var(--surface);
    text-decoration: none;
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
}

.lang-switch {
    color: var(--text-muted) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    border: 1px solid var(--border) !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
}

.lang-switch:hover {
    color: var(--text) !important;
    border-color: var(--text-dim) !important;
    background: var(--surface-2) !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero h1 em {
    color: var(--accent);
    font-style: italic;
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-images img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    border: 1px solid var(--border);
}

.hero-images img:first-child {
    height: 320px;
    grid-column: 1 / -1;
}

.hero-images img:nth-child(2),
.hero-images img:nth-child(3) {
    height: 200px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 32px rgba(249, 115, 22, 0.4);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 14px;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text-dim);
    background: var(--surface);
}

/* ---- SECTIONS ---- */
section {
    padding: 100px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ---- PAGE HEADER (subpages) ---- */
.page-header {
    padding-top: 140px;
    padding-bottom: 40px;
}

.page-header .section-title {
    margin-bottom: 12px;
}

.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text-dim);
    font-size: 14px;
}

.breadcrumb span {
    color: var(--text-dim);
    font-size: 14px;
    margin: 0 8px;
}

.breadcrumb .current {
    color: var(--text-muted);
}

/* ---- ABOUT / SERVICES ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ---- PRICE ---- */
.price-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    margin: 24px 0 8px;
    letter-spacing: -2px;
}

.price-amount span {
    font-size: 24px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0;
}

.price-per {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.price-features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

/* ---- GALLERY ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

/* ---- CTA ---- */
.cta-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- INFO BLOCKS ---- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p,
.info-block li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.info-block ul,
.info-block ol {
    padding-left: 20px;
}

.info-block li {
    margin-bottom: 6px;
}

.info-block a {
    color: var(--accent);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

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

/* ---- LEGAL TEXT ---- */
.legal-text {
    max-width: 800px;
}

.legal-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 16px;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-text ul,
.legal-text ol {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 12px;
}

/* ---- FOOTER ---- */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
    }
    .hero-images {
        order: -1;
    }
    .hero-images img:first-child {
        height: 240px;
    }
    .hero-images img:nth-child(2),
    .hero-images img:nth-child(3) {
        height: 160px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid img {
        height: 200px;
    }
    .nav-links {
        display: none;
    }
    .burger {
        display: flex;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-images {
        grid-template-columns: 1fr;
    }
    .hero-images img:nth-child(3) {
        display: none;
    }
    .price-card {
        padding: 32px 24px;
    }
}
