/* ── Design Tokens ── */
:root {
  --bg-dark: #0D1225;
  --bg-light: #FBF6EF;
  --bg-white: #FFFFFF;
  --bg-footer: #17140F;
  --gold: #C9A977;
  --gold-dim: rgba(201, 169, 119, 0.2);
  --text-dark: #17140F;
  --text-body: #4C4B49;
  --text-light: #FFFFFF;
  --text-muted: #7F7E7A;
  --border: #E3E3E2;
  --radius: 8px;
  --radius-lg: 12px;
  --section-pad: 100px 0;
  --transition: 0.25s ease;
  --shadow-01: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-02: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-04: 0 16px 48px rgba(0,0,0,0.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body { font-family: 'DM Sans', sans-serif; font-size: 18px; line-height: 1.667; color: var(--text-dark); background: var(--bg-white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* ── Typography ── */
h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5vw, 72px); line-height: 1.1; font-weight: 400; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 48px); line-height: 1.2; font-weight: 400; }
h3 { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2vw, 24px); line-height: 1.4; font-weight: 400; }
h4 { font-family: 'Playfair Display', serif; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.4; font-weight: 400; }
h6 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
p { font-size: 17px; line-height: 1.75; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.gold { color: var(--gold); }

/* ── Gold decorative line ── */
.gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.gold-line--center { margin-left: auto; margin-right: auto; }
.gold-line--light { background: var(--gold); }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .gold-line { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── Section backgrounds ── */
.section-neutral { background: var(--bg-light); padding: var(--section-pad); }
.section-white { background: var(--bg-white); padding: var(--section-pad); }
.section-dark { background: var(--bg-dark); padding: var(--section-pad); color: var(--text-light); }
#when.section-white { background: url('images/desk.jpg') no-repeat center center / cover; position: relative; }
#when.section-white::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.93); }
#when.section-white .container { position: relative; z-index: 2; }

/* ── Eyebrow ── */
.eyebrow { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 600; transition: filter var(--transition), transform var(--transition); cursor: pointer; }
.btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--text-dark); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold-dim); }

/* GSAP initial states — set via JS only to avoid invisible content if JS fails */

/* ── Topbar ── */
.topbar { background: var(--bg-dark); padding: 10px 0; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); font-family: 'DM Sans', sans-serif; transition: color var(--transition); }
.topbar__item:hover { color: var(--gold); }
.topbar__item svg { flex-shrink: 0; }

/* ── Nav ── */
#nav { background: var(--bg-white); box-shadow: var(--shadow-01); position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--transition); }
#nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
#site-header { position: sticky; top: 0; z-index: 1000; }
.topbar { position: relative; }
.nav__inner { display: flex; align-items: center; gap: 32px; padding: 0 32px; height: 72px; max-width: 1200px; margin: 0 auto; }
.nav__logo { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text-dark); flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; }
.nav__link { font-size: 15px; font-weight: 500; color: var(--text-body); transition: color var(--transition); }
.nav__link:hover { color: var(--gold); }
.nav__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }
.nav__cta { padding: 10px 24px; font-size: 15px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.nav__burger span { display: block; height: 2px; background: var(--text-dark); transition: transform var(--transition), opacity var(--transition); border-radius: 2px; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile-menu { display: none; flex-direction: column; gap: 0; background: var(--bg-white); border-top: 1px solid var(--border); }
.nav__mobile-menu.open { display: flex; }
.nav__mobile-link { color: var(--text-dark); font-size: 16px; padding: 16px 32px; border-bottom: 1px solid var(--border); font-weight: 500; }
.nav__mobile-link.btn { margin: 16px 32px; border-radius: 4px; text-align: center; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}
@media (max-width: 600px) {
  .topbar { display: none; }
}

/* ── Hero ── */
.hero { display: grid; grid-template-columns: 60% 40%; height: calc(100vh - 110px); }
.hero__left { background: var(--bg-light); display: flex; align-items: center; justify-content: flex-start; padding: 80px 32px 80px max(24px, calc((100vw - 1200px) / 2 + 24px)); position: relative; overflow: hidden; height: 100%; }
.hero__left-content { width: 100%; max-width: 580px; display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 2; }
.hero__left-content::before { content: ''; position: absolute; inset: -25%; background: url('images/notebook.png') no-repeat center center / contain; pointer-events: none; z-index: -1; }
.hero__title { color: #FBF6EF; letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero__desc { color: rgba(251,246,239,0.85); max-width: 440px; font-size: 17px; line-height: 1.75; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__right { background: var(--bg-dark); position: relative; display: flex; align-items: center; justify-content: center; padding: 80px 40px; height: 100%; overflow: hidden; }
.hero__right-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,18,37,0.6) 0%, rgba(13,18,37,0.2) 100%); z-index: 1; pointer-events: none; }
.hero__stats { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; }
.hero__stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(201,169,119,0.25); border-radius: var(--radius); padding: 28px 24px; backdrop-filter: blur(8px); }
.hero__stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero__left { padding: 56px 32px 40px; height: auto; background: var(--bg-dark); min-height: calc(100dvh - 72px); justify-content: center; }
  .hero__left-content { margin-left: 0; padding-left: 0; max-width: 100%; }
  .hero__left-content::before { display: none; }
  .hero__title { text-shadow: none; }
  .hero__desc { color: rgba(255,255,255,0.7); }
  .hero__right { display: none; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }
}
@media (max-width: 540px) {
  .hero__left { padding: 56px 20px 40px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__stat { padding: 20px 16px; }
  .hero__stat-num { font-size: 28px; }
}

/* ── About ── */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about__text p { color: var(--text-body); }
.about__photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-02); }

.extract__photos { display: flex; gap: 24px; justify-content: center; margin-bottom: 48px; }
.extract__photo { width: 46%; max-width: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow-02); object-fit: contain; background: var(--bg-white); }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { min-height: 240px; height: 300px; order: -1; }
  .extract__photos { flex-direction: column; align-items: center; }
  .extract__photo { width: 100%; max-width: 480px; }
}

/* ── When ── */
.when__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 32px; }
.when__header-left h2 { margin-top: 0; }
.when__desc { color: var(--text-body); max-width: 420px; font-size: 16px; margin-top: 12px; }
.when__cta { flex-shrink: 0; }
.when__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.when__card { border: 1px solid var(--border); padding: 36px 28px; display: flex; flex-direction: column; gap: 12px; transition: background var(--transition), box-shadow var(--transition); position: relative; }
.when__card:hover { background: var(--bg-light); box-shadow: var(--shadow-02); z-index: 1; }
.when__card-top { width: 40px; height: 2px; background: var(--gold); margin-bottom: 8px; }
.when__card h4 { color: var(--text-dark); font-size: 20px; }
.when__card p { font-size: 15px; color: var(--text-body); line-height: 1.55; flex: 1; }
.when__link { font-size: 14px; color: var(--gold); font-weight: 600; transition: gap var(--transition); margin-top: auto; }
.when__link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .when__header { flex-direction: column; align-items: flex-start; }
  .when__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .when__grid { grid-template-columns: 1fr; }
}

/* ── Apostille ── */
.apostille__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.apostille__img-frame { border: 2px solid var(--gold); border-radius: var(--radius); padding: 8px; }
.apostille__img { border-radius: calc(var(--radius) - 2px); width: 100%; }
.apostille__content { display: flex; flex-direction: column; gap: 20px; }
.apostille__content h2 { color: var(--text-light); }
.apostille__content p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.75; }
.apostille__list { display: flex; flex-direction: column; gap: 14px; }
.apostille__item { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.apostille__check { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 900px) {
  .apostille__inner { grid-template-columns: 1fr; gap: 40px; }
  .apostille__image { width: 100%; }
  .apostille__img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-02); }
}

/* ── Testimonials ── */
.testimonial__featured { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-02); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; margin-bottom: 48px; }
.testimonial__featured-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: var(--text-dark); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.testimonial__blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--text-dark); max-width: 720px; }
.testimonial__featured-author { font-size: 15px; color: var(--text-muted); }
.testimonials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.testimonial__card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-01); display: flex; flex-direction: column; gap: 16px; transition: box-shadow var(--transition); }
.testimonial__card:hover { box-shadow: var(--shadow-02); }
.testimonial__quote-icon { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--gold); line-height: 1; height: 32px; display: flex; align-items: flex-end; }
.testimonial__text { font-size: 15px; color: var(--text-body); line-height: 1.65; flex: 1; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--text-dark); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.testimonial__name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.testimonial__city { font-size: 13px; color: var(--text-muted); }
.testimonial__rating { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.testimonial__score { white-space: nowrap; }
.testimonial__count { white-space: nowrap; }
.testimonial__stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.testimonial__score { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text-dark); font-weight: 600; }
.testimonial__count { font-size: 14px; color: var(--text-muted); }
.testimonials__dots { display: none; }

@media (max-width: 768px) {
  .testimonial__featured { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .testimonials__slider-wrap { overflow: hidden; }
  .testimonials__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 8px 20px 16px; scroll-padding-left: 20px; margin: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonial__card { flex: 0 0 calc(100% - 40px); scroll-snap-align: start; }
  .testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; margin-bottom: 32px; }
}

/* ── FAQ ── */
.faq__inner { max-width: 800px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text-dark); }
.faq__question:hover span { color: var(--gold); }
.faq__chevron { flex-shrink: 0; color: var(--gold); transition: transform 0.3s ease; }
.faq__question[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }
.faq__answer p { padding: 0 0 24px; color: var(--text-body); font-size: 16px; line-height: 1.7; }

/* ── Pricing ── */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; align-items: start; }
.pricing__card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-01); transition: transform var(--transition), box-shadow var(--transition); }
.pricing__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-02); }
.pricing__card--featured { background: var(--bg-dark); color: var(--text-light); border-color: transparent; box-shadow: var(--shadow-04); }
.pricing__card--featured:hover { transform: translateY(-6px); }
.pricing__badge-featured { font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.pricing__tier { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.pricing__card--featured .pricing__tier { color: rgba(255,255,255,0.5); }
.pricing__title { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.pricing__card--featured .pricing__title { color: var(--text-light); }
.pricing__price { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--text-muted); }
.pricing__card--featured .pricing__price { color: rgba(255,255,255,0.6); }
.pricing__amount { font-size: 42px; color: var(--gold); line-height: 1; }
.pricing__features { display: flex; flex-direction: column; gap: 10px; flex: 1; padding-top: 8px; border-top: 1px solid var(--border); }
.pricing__card--featured .pricing__features { border-top-color: rgba(255,255,255,0.1); }
.pricing__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-body); line-height: 1.4; }
.pricing__card--featured .pricing__features li { color: rgba(255,255,255,0.75); }
.pricing__check { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.pricing__cta { width: 100%; margin-top: 8px; }
.pricing__trust { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.pricing__trust span { font-size: 14px; color: var(--text-muted); }

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__card--featured { transform: none; }
  .pricing__card--featured:hover { transform: translateY(-4px); }
}

/* ── Order Form ── */
.order__inner { display: grid; grid-template-columns: 40% 60%; gap: 64px; align-items: start; }
.order__info { display: flex; flex-direction: column; gap: 24px; }
.order__title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); color: var(--text-light); line-height: 1.2; }
.order__desc { color: rgba(255,255,255,0.6); font-size: 16px; }
.order__contacts { display: flex; flex-direction: column; gap: 14px; }
.order__contact { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.75); font-size: 16px; transition: color var(--transition); }
.order__contact:hover { color: var(--gold); }
.order__form-wrap { background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); min-width: 0; }
.order-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.form-required { color: var(--gold); }
.form-input { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 15px; color: var(--text-dark); background: var(--bg-white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,119,0.15); }
.form-input.error { border-color: #DC2B2B; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237F7E7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: var(--bg-white); padding-right: 44px; cursor: pointer; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.form-checkbox-label { font-size: 14px; color: var(--text-body); line-height: 1.5; }
.form-error { font-size: 13px; color: #DC2B2B; min-height: 16px; }
.form-note { font-size: 13px; color: var(--text-muted); }
.form-submit { width: 100%; padding: 16px; font-size: 16px; border-radius: 4px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-privacy { font-size: 13px; color: var(--text-muted); text-align: center; }
.form-message { padding: 14px 18px; border-radius: var(--radius); font-size: 15px; font-weight: 500; }
.form-message--success { background: #DEF2E6; color: #11845B; border: 1px solid #7FDCA4; }
.form-message--error { background: #FFEFF0; color: #DC2B2B; border: 1px solid #FFBEC2; }

@media (max-width: 1270px) {
  .order__inner { grid-template-columns: 1fr; gap: 40px; }
  .order__form-wrap { padding: 28px 20px; }
}

/* ── Footer ── */
.footer { background: var(--bg-footer); padding: 80px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 64px; }
.footer__col--brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-light); }
.footer__brand-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.footer__socials { display: flex; gap: 12px; margin-top: 4px; }
.footer__social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: border-color var(--transition), color var(--transition); }
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title { color: var(--gold); margin-bottom: 20px; display: block; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__link:hover { color: var(--gold); }
.footer__contacts-list { display: flex; flex-direction: column; gap: 10px; }
.footer__contacts-list li { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 24px; }

@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}


/* ── Hero weights image ── */
.hero__weights { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; z-index: 0; }

/* ── Hero accent ── */
.hero__accent { font-size: 18px; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; }
.hero__images-stack { position: relative; width: 100%; height: 480px; z-index: 2; flex-shrink: 0; }
.hero__doc { position: absolute; border-radius: 4px; box-shadow: 0 24px 60px rgba(0,0,0,0.7); width: 55%; max-width: 280px; display: block; }
.hero__doc--back { left: 4%; top: 6%; transform: rotate(-5deg); z-index: 3; filter: brightness(0.75); }
.hero__doc--front { right: 4%; top: 20%; transform: rotate(3deg); z-index: 4; }

/* ── Pricing cards ── */
.pricing__slider-wrap { margin-bottom: 32px; }
.pricing__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; padding: 12px 4px; }
.pricing__currency { font-size: 20px; font-family: 'DM Sans', sans-serif; color: var(--text-muted); }
.pricing__card--featured .pricing__currency { color: rgba(255,255,255,0.5); }
.pricing__note { text-align: center; font-size: 15px; color: var(--text-muted); }
.pricing__note strong { color: var(--text-dark); }
.pricing__dots { display: none; justify-content: center; gap: 8px; margin-top: 16px; }
.pricing__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background var(--transition); }
.pricing__dot--active { background: var(--gold); }

/* ── Form extras ── */
.form-checkboxes { display: flex; flex-direction: column; gap: 10px; }
.form-radio-group { display: flex; gap: 24px; flex-wrap: wrap; }
.form-radio-group--wrap { gap: 12px 32px; }
.form-radio { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 15px; color: var(--text-dark); }
.form-radio input { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.form-radio--disabled { opacity: 0.35; pointer-events: none; }
.form-radio--hidden { display: none; }
.form-radio-price { color: var(--gold); font-size: 13px; font-weight: 600; margin-left: 4px; }
.form-file { padding: 10px 16px; cursor: pointer; font-size: 14px; }
.order__help { font-size: 14px; color: rgba(255,255,255,0.45); font-style: italic; margin-top: -8px; }
.order__trust { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.order__trust-item { display: flex; align-items: center; gap: 16px; }
.order__trust-item span { font-size: 15px; color: rgba(255,255,255,0.7); }

/* ── Global responsive ── */
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 900px) {
  .pricing__cards { grid-template-columns: repeat(2, 1fr); }
  .pricing__card--featured { transform: none; }
  .pricing__card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .pricing__slider-wrap { overflow: hidden; }
  .pricing__cards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 8px 20px 16px; scroll-padding-left: 20px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .pricing__cards::-webkit-scrollbar { display: none; }
  .pricing__card { flex: 0 0 100%; scroll-snap-align: start; }
  .pricing__card--featured { transform: none; }
  .pricing__dots { display: flex; }
}
