/* ===========================
   DESIGN TOKENS — Light Apple theme
   =========================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-tertiary: #fafafa;
    --bg-card: #ffffff;
    --bg-dark: #1d1d1f;
    --accent: #a2845e;
    --accent-dark: #8b6f3a;
    --accent-hover: #b8956a;
    --accent-glow: rgba(162, 132, 94, 0.12);
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #86868b;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-blur: blur(24px);
    --glass-border: rgba(0,0,0,0.06);
    --border-light: rgba(0,0,0,0.06);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.1);
    --radius-card: 20px;
    --radius-btn: 980px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1120px;
    --header-h: 52px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================
   RESET
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.58;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
blockquote { margin: 0; }

/* ===========================
   LOADER
   =========================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo);
}

.loader.hidden { opacity: 0; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__inner .logo-text { display: inline-flex; align-items: center; margin-bottom: 40px; font-size: 28px; color: var(--text-primary); }

.loader__bar {
    width: 180px;
    height: 2px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.loader__progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    transition: width 0.2s ease;
}

.loader__text {
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 140px 0;
    position: relative;
}

.section--dark, .section--dark-2 {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.section--light {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.section__eyebrow {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.025em;
    line-height: 1.08;
    color: var(--text-primary);
}

.section__subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 72px;
    line-height: 1.5;
}

/* ===========================
   BUTTONS — Apple pill style
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.005em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 40px 4px var(--accent-glow);
    transform: translateY(-1px);
}

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

.btn--outline:hover {
    background: var(--accent-glow);
}

.btn--outline-light {
    border: 1.5px solid var(--text-secondary);
    color: var(--text-primary);
    background: transparent;
}

.btn--outline-light:hover {
    border-color: var(--text-primary);
    background: rgba(0,0,0,0.03);
}

/* Focus states — keyboard accessibility */
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.nav__link:focus-visible,
.footer__link:focus-visible,
.bento-card__link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.messenger-link:focus-visible,
.social-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 50%;
}

.faq__question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
    border-radius: 14px;
}

.header__logo:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 12px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 4px 8px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.03em;
}

.lang-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.lang-btn--active {
    background: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
}

.lang-btn--active:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn--lg { padding: 17px 44px; font-size: 17px; }

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.5s var(--ease-out-expo);
}

.header.scrolled {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.header.header--hidden { transform: translateY(-100%); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 2px;
}

.logo-icon {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
}

.header__nav .nav__list { display: flex; gap: 28px; }

.nav__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.nav__link:hover { color: var(--text-primary); }

.header__cta { padding: 8px 20px; font-size: 13px; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================
   HERO — Light, clean
   =========================== */
.hero {
    position: relative;
    height: 500vh;
    background: var(--bg-primary);
}

.hero__noise {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.hero__canvas {
    position: sticky;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    background: var(--bg-primary);
}

/* Gold accent line — disabled */
.hero__accent-line { display: none; }

/* Fixed UI layer */
.hero__ui {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 5;
    pointer-events: none;
    display: none;
}

.hero__ui > * { pointer-events: auto; }

.hero__headline {
    position: absolute;
    top: 50%;
    left: max(24px, calc(50% - 540px));
    transform: translateY(-50%);
    max-width: 440px;
}

.hero__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.hero__gold-rule {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 24px;
    opacity: 0.5;
}

.hero__title {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.0;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255,255,255,0.9), 0 0 60px rgba(255,255,255,0.5);
}

.hero__subtitle {
    font-size: clamp(15px, 1.8vw, 19px);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 36px;
    line-height: 1.65;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stage labels — removed */

/* Stats */
.hero__stats {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 48px;
    opacity: 0;
}

.stat { text-align: center; }

.stat__number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.stat__label {
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: max(24px, calc(50% - 540px));
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
}

.hero__scroll-hint svg { color: var(--text-tertiary); }

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero__scroll-hint svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ===========================
   SERVICES — Bento
   =========================== */
.services { background: var(--bg-secondary); overflow: hidden; }

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.bento-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 36px 30px;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.bento-card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: var(--shadow-hover);
}

.bento-card--featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    padding: 48px 36px;
    background: var(--bg-dark);
    color: #fff;
    border: none;
}

.bento-card--featured .bento-card__title { font-size: 24px; color: #fff; }
.bento-card--featured .bento-card__text { font-size: 15px; max-width: 340px; color: rgba(255,255,255,0.6); }
.bento-card--featured .bento-card__icon { color: var(--accent-hover); }
.bento-card--featured .bento-card__link { color: var(--accent-hover); }

.bento-card__icon { color: var(--accent); flex-shrink: 0; }
.bento-card__title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.bento-card__text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.bento-card__link {
    display: inline-block;
    margin-top: auto;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent);
}

.bento-card__link:hover { color: var(--accent-hover); }

/* ===========================
   WHY US
   =========================== */
.why { background: var(--bg-primary); overflow: hidden; }

.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.why__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease-out-expo);
}

.why__item:hover {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.why__icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent-glow);
    color: var(--accent);
}

.why__title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.why__text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ===========================
   PROCESS
   =========================== */
.process { background: var(--bg-secondary); overflow: hidden; }

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.process__step {
    padding: 36px 24px 28px;
    border-radius: var(--radius-card);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.process__step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.process__number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(162,132,94,0.3) 0%, rgba(162,132,94,0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.process__step-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.process__step-text { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--bg-primary); overflow: hidden; }

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__content .section__title { text-align: left; margin-bottom: 24px; }
.about__content .section__eyebrow { text-align: left; }

.about__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.about__text:last-of-type { margin-bottom: 0; }

.about__highlights {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.about__highlight { text-align: left; }

.about__highlight-num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.about__highlight-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
    min-height: 360px;
}

/* ===========================
   REVIEWS
   =========================== */
.reviews { background: var(--bg-secondary); overflow: hidden; }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.review-card__stars { display: flex; gap: 2px; color: var(--accent); }
.review-card__text { font-size: 15px; line-height: 1.6; color: var(--text-secondary); flex: 1; }
.review-card__author { font-size: 13px; font-weight: 600; color: var(--text-primary); }

.review-screenshot {
    display: block;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid var(--border-light);
}
.review-screenshot:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.review-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(162,132,94,0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-banner .section__title { color: #fff; }
.cta-banner__inner { position: relative; z-index: 1; }

.cta-banner__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    color: #fff;
}

.cta-banner__text { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }

.cta-banner__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-banner .btn--primary { color: var(--bg-dark); }
.cta-banner .btn--outline-light { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-banner .btn--outline-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

/* ===========================
   CONTACTS + FORM
   =========================== */
.contacts { background: var(--bg-primary); overflow: hidden; padding-bottom: 80px; }

.contacts__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacts__form-wrapper .section__title {
    text-align: left;
    margin-bottom: 32px;
    font-size: clamp(28px, 4vw, 40px);
}

.form { display: flex; flex-direction: column; gap: 20px; }

.form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 16px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-primary);
}

.form__input::placeholder { color: var(--text-tertiary); }
.form__input.is-error { border-color: #ff3b30; box-shadow: 0 0 0 3px rgba(255,59,48,0.1); }
.form__input.is-success { border-color: #34c759; }
.form__textarea { resize: vertical; min-height: 110px; }
.form__submit { width: 100%; border: none; }
.form__submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form__status { font-size: 14px; font-weight: 500; min-height: 20px; margin-top: 12px; }
.form__status--success { color: #34c759; }
.form__status--error { color: #ff3b30; }

.contacts__heading { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.contacts__heading--gap { margin-top: 32px; }

.contacts__list { display: flex; flex-direction: column; gap: 16px; }

.contacts__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.contacts__item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contacts__item a { color: var(--text-primary); }
.contacts__item a:hover { color: var(--accent); }

.contacts__messengers, .contacts__social { display: flex; gap: 10px; }

.messenger-link, .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.messenger-link:hover, .social-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
}

.footer .logo-text { color: #fff; display: inline-flex; align-items: center; }
.footer__tagline { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer__list { display: flex; gap: 24px; }
.footer__link { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__link:hover { color: var(--accent); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__social a:hover { color: var(--accent); }
.footer__copy { width: 100%; text-align: center; font-size: 12px; color: rgba(255,255,255,0.2); margin-top: 16px; }

/* ===========================
   MOBILE STICKY CTA
   =========================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    z-index: 999;
    transform: translateY(100%);
    transition: transform var(--transition);
    border-top: 1px solid var(--glass-border);
}

.mobile-cta.visible { transform: translateY(0); }
.mobile-cta__btn { width: 100%; }

/* ===========================
   FAQ
   =========================== */
.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq__item[open] {
    box-shadow: var(--shadow-md);
}

.faq__question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===========================
   MAP (inside contacts)
   =========================== */
.contacts__map {
    grid-column: 1 / -1;
    margin-top: 20px;
    border-radius: var(--radius-card);
    overflow: hidden;
    line-height: 0;
}

.map-section__iframe {
    width: 100%;
    height: 300px;
    display: block;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.5s ease;
}

.map-section__iframe:hover {
    filter: grayscale(0);
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.will-animate {
    opacity: 0;
    transform: translateY(40px);
}

.will-animate.is-visible,
.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__content.will-animate { transform: translateX(-40px); }
.about__visual.will-animate { transform: translateX(40px); }

/* ===========================
   PARALLAX
   =========================== */
.parallax-bg {
    position: absolute;
    inset: -20%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.parallax-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.parallax-bg__glow--1 { width: 500px; height: 500px; background: rgba(162,132,94,0.06); top: 10%; right: -10%; }
.parallax-bg__glow--2 { width: 400px; height: 400px; background: rgba(162,132,94,0.04); bottom: 10%; left: -10%; }

/* ===========================
   MOBILE NAV
   =========================== */
@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0; right: 0;
        width: 100%;
        height: 100vh; height: 100dvh;
        background: rgba(255,255,255,0.97);
        -webkit-backdrop-filter: var(--glass-blur);
        backdrop-filter: var(--glass-blur);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 999;
    }

    .header__nav.open { opacity: 1; visibility: visible; }

    .header__nav .nav__list { flex-direction: column; gap: 32px; text-align: center; }
    .nav__link { font-size: 22px; color: var(--text-primary); }
    .header__cta { display: none; }
    .burger { display: flex; }
    .lang-switcher { margin-left: auto; margin-right: 12px; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .section { padding: 100px 0; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card--featured { grid-column: 1 / 3; grid-row: auto; }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .about__inner { grid-template-columns: 1fr; gap: 48px; }
    .contacts__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    :root { --header-h: 48px; }
    .section { padding: 80px 0; }
    .section__title { margin-bottom: 16px; }
    .section__subtitle { margin-bottom: 48px; }
    .container { padding: 0 20px; }

    .hero__headline {
        position: absolute;
        top: auto; bottom: 0;
        left: 0; right: 0;
        transform: none;
        max-width: none;
        text-align: center;
        padding: 40px 24px 5vh;
        background: linear-gradient(to top, rgba(255,255,255,0.97) 50%, rgba(255,255,255,0.85) 75%, transparent 100%);
    }

    .hero__title { text-shadow: none; }
    .hero__subtitle { text-shadow: none; }
    .hero__eyebrow { margin-bottom: 10px; }
    .hero__gold-rule { margin: 0 auto 14px; }
    .hero__buttons { justify-content: center; flex-direction: column; align-items: center; }
    .hero__stats { gap: 24px; bottom: auto; top: calc(var(--header-h) + 12px); left: 50%; transform: translateX(-50%); }
    .hero__scroll-hint { display: none; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--featured { grid-column: auto; }
    .why__grid { grid-template-columns: 1fr; }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: 1fr; }
    .contacts__form-wrapper .section__title { text-align: center; }
    .about__content .section__title { text-align: center; }
    .about__content .section__eyebrow { text-align: center; }
    .about__highlights { gap: 32px; justify-content: center; }
    .about__image { min-height: 240px; }
    .footer__inner { flex-direction: column; text-align: center; }
    .footer__list { flex-wrap: wrap; justify-content: center; }
    .mobile-cta { display: block; }
    .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .btn--lg { padding: 15px 32px; font-size: 16px; width: 100%; }
    .process__grid { grid-template-columns: 1fr; }
    .about__highlights { flex-direction: column; gap: 20px; }
}
