:root {
    --orange-vivid: #FF6B2C;
    --orange-warm: #FF8C42;
    --orange-pale: #FFE8D6;
    --orange-bg: #FFF3EB;
    --peach: #FFDAB9;
    --dark: #1A1A2E;
    --dark-soft: #2D2D44;
    --text: #1A1A2E;
    --text-mid: #555566;
    --text-light: #8888AA;
    --white: #FFFFFF;
    --radius: 16px;
    --font: 'Montserrat', sans-serif;
    --font-accent: 'Lora', serif;
    --transition: 0.35s ease;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text); overflow-x: hidden; }

/* TOPBAR */
.topbar { background: var(--dark); color: white; padding: 0.6rem 2rem; display: flex; justify-content: center; gap: 2rem; font-size: 0.8rem; }
.topbar a { color: var(--orange-warm); text-decoration: none; font-weight: 500; }
.topbar span { color: rgba(255,255,255,0.5); }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: white; padding: 0.8rem 2rem; box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.2rem; font-weight: 800; color: var(--orange-vivid); text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-logo span { font-weight: 300; color: var(--text-light); }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--orange-vivid); }
.nav-cta { padding: 0.7rem 1.5rem; background: var(--orange-vivid); color: white; border-radius: 50px; text-decoration: none; font-size: 0.82rem; font-weight: 600; transition: all var(--transition); min-height: 44px; display: inline-flex; align-items: center; }
.nav-cta:hover { background: var(--orange-warm); transform: translateY(-1px); }

/* HERO SPLIT */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; }
.hero-left { background: linear-gradient(135deg, var(--orange-vivid) 0%, var(--orange-warm) 100%); color: white; display: flex; align-items: center; padding: 4rem; }
.hero-left-inner { max-width: 500px; }
.hero-tag { display: inline-block; padding: 0.3rem 1rem; background: rgba(255,255,255,0.15); border-radius: 50px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.hero h1 span { font-family: var(--font-accent); font-weight: 400; font-style: italic; display: block; font-size: 0.7em; opacity: 0.9; }
.hero-left p { font-size: 1rem; font-weight: 300; opacity: 0.9; margin-bottom: 2rem; line-height: 1.7; }
.hero-btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2.5rem; min-height: 48px; background: white; color: var(--orange-vivid); border-radius: 50px; font-weight: 700; text-decoration: none; transition: all var(--transition); }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.hero-phone-block { margin-top: 2rem; }
.hero-phone-block a { color: white; font-size: 1.4rem; font-weight: 700; text-decoration: none; letter-spacing: 0.02em; }
.hero-phone-block small { display: block; font-size: 0.75rem; opacity: 0.7; margin-top: 0.3rem; }
.hero-right { background: url('https://images.pexels.com/photos/3373716/pexels-photo-3373716.jpeg?w=1200') center/cover; position: relative; }
.hero-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--orange-warm) 0%, transparent 30%); }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--orange-vivid); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--dark); line-height: 1.2; }
.section-sub { color: var(--text-light); font-size: 1rem; font-weight: 300; margin-top: 0.5rem; }

/* FEATURES ROW */
.features { background: var(--orange-bg); }
.features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-box { text-align: center; padding: 2rem 1.5rem; }
.feature-num { font-size: 2.5rem; font-weight: 800; color: var(--orange-vivid); opacity: 0.3; margin-bottom: 0.5rem; }
.feature-box h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-box p { font-size: 0.85rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; }

/* PRICE GRID */
.price-section { background: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.price-item { background: var(--orange-bg); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: all var(--transition); border: 2px solid transparent; }
.price-item:hover { border-color: var(--orange-vivid); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(255,107,44,0.1); }
.price-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; min-height: 2.5em; display: flex; align-items: center; justify-content: center; }
.price-item .price { font-size: 1.6rem; font-weight: 800; color: var(--orange-vivid); }
.price-item .price small { font-size: 0.7rem; font-weight: 400; color: var(--text-light); }
.price-item.male { background: var(--dark); color: white; }
.price-item.male .price { color: var(--orange-warm); }
.price-item.male h4 { color: white; }

/* CERTS */
.certs-section { background: var(--orange-bg); }
.certs-flex { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cert-frame { width: 220px; background: white; border-radius: var(--radius); padding: 0.8rem; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all var(--transition); cursor: pointer; }
.cert-frame:hover { transform: rotate(-1deg) scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.cert-frame img { width: 100%; border-radius: 8px; display: block; }
.cert-frame p { text-align: center; font-size: 0.7rem; color: var(--text-light); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* REVIEWS */
.reviews-section { background: var(--white); }
.reviews-scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.r-card { border: 1px solid #eee; border-radius: var(--radius); padding: 1.5rem; transition: all var(--transition); }
.r-card:hover { border-color: var(--orange-vivid); }
.r-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.r-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.r-name { font-weight: 600; font-size: 0.85rem; }
.r-loc { font-size: 0.75rem; color: var(--text-light); }
.r-stars { color: var(--orange-vivid); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.r-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* CONTACT */
.contact-section { background: var(--dark); color: white; }
.contact-section .section-tag { color: var(--orange-warm); }
.contact-section .section-title { color: white; }
.contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.contact-box { text-align: center; padding: 2rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); }
.contact-box h4 { color: var(--orange-warm); margin-bottom: 0.5rem; font-size: 0.9rem; }
.contact-box p { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
.contact-box a { color: var(--orange-warm); text-decoration: none; font-weight: 600; font-size: 1.1rem; }

/* FOOTER */
footer { background: #111122; padding: 2rem; text-align: center; }
footer p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ANIM */
.anim { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* LIGHTBOX */
.lb { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; cursor: pointer; }
.lb.open { display: flex; }
.lb img { max-width: 85%; max-height: 85vh; border-radius: 12px; }
.lb-close { position: fixed; top: 1.2rem; right: 1.5rem; z-index: 10000; width: 44px; height: 44px; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; color: white; font-size: 1.5rem; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background 0.3s; }
.lb-close:hover { background: rgba(255,255,255,0.3); }
.lb.open + .lb-close { display: flex; }

/* BURGER */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 200; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px auto; transition: all 0.3s ease; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-cta-phone { display: none; }
.nav-cta-desktop { display: inline-flex; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-scroll { grid-template-columns: 1fr 1fr; }
    .contact-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 2.5rem 1.5rem; padding-top: calc(2.5rem + env(safe-area-inset-top, 0px)); }
    .hero-right { min-height: 300px; }
    .hero-right::after { background: linear-gradient(180deg, var(--orange-warm) 0%, transparent 40%); }
    .hero h1 { font-size: 2rem; }
    .hero-left p { font-size: 0.9rem; }
    .hero-btn { padding: 1rem 2rem; font-size: 0.9rem; min-height: 48px; }
    .hero-phone-block a { font-size: 1.5rem; }

    .burger { display: flex; }
    .nav-cta-desktop { display: none; }
    .nav-cta-phone { display: inline-flex; font-size: 0.85rem; padding: 0.6rem 1.4rem; min-height: 44px; }
    .nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: white; flex-direction: column; align-items: center; justify-content: center;
        gap: 2rem; z-index: 150;
    }
    .nav-links.show { display: flex; }
    .nav-links a { font-size: 1.2rem; min-height: 44px; display: flex; align-items: center; }
    .nav-inner { position: relative; z-index: 200; }

    .section { padding: 3rem 1.2rem; }
    .topbar { flex-wrap: wrap; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 0.75rem; text-align: center; }
    .features-row { grid-template-columns: 1fr; gap: 1rem; }
    .feature-box { padding: 1.5rem 1rem; }
    .price-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .price-item { padding: 1.2rem 0.8rem; }
    .price-item h4 { font-size: 0.85rem; min-height: 2em; }
    .price-item .price { font-size: 1.3rem; }
    .certs-flex { flex-direction: column; align-items: center; }
    .cert-frame { width: 260px; }
    .reviews-scroll { grid-template-columns: 1fr; gap: 1rem; }
    .r-name { font-size: 0.9rem; }
    .r-loc { font-size: 0.8rem; }
    .r-text { font-size: 0.9rem; }
    .contact-box { padding: 1.5rem; }
    .contact-box a { font-size: 1.3rem; }
    .section-title { font-size: 1.6rem; }

    .lb img { max-width: 95%; max-height: 80vh; }
    .lb-close { top: 0.8rem; right: 0.8rem; }

    nav { padding-left: max(1rem, env(safe-area-inset-left, 0px)); padding-right: max(1rem, env(safe-area-inset-right, 0px)); }
    .topbar { padding-left: max(1rem, env(safe-area-inset-left, 0px)); padding-right: max(1rem, env(safe-area-inset-right, 0px)); }
}
@media (max-width: 400px) {
    .price-grid { grid-template-columns: 1fr; }
    .hero-left { padding: 2rem 1rem; }
    .topbar { flex-direction: column; gap: 0.3rem; }
}
@media (max-width: 768px) and (orientation: landscape) {
    .hero-right { min-height: 200px; }
    .hero-left { padding: 1.5rem; }
}
