/* ===== VARIABLES ===== */
:root {
  --dark:    #1C140C;
  --forest:  #5C3D11;
  --sage:    #8B6914;
  --mint:    #C49840;
  --cream:   #F5EAD5;
  --warm:    #FAF7F2;
  --white:   #FFFFFF;
  --gold:    #C49840;
  --goldlt:  #E8C97A;
  --gold-dk: #A6801E;
  --text:    #2D1F0F;
  --muted:   #7A6248;
  --border:  #E4D8C5;

  --font-serif: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  --shadow:    0 4px 24px rgba(28, 20, 12, 0.08);
  --shadow-md: 0 12px 48px rgba(28, 20, 12, 0.13);
  --shadow-lg: 0 24px 80px rgba(28, 20, 12, 0.18);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--warm);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-serif); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

/* ===== SECTION COMMON ===== */
.sec-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  box-shadow: 0 8px 28px rgba(196, 152, 64, 0.36);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-phone {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-phone:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.btn-wa:hover {
  background: #1ebd5a;
  border-color: #1ebd5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-tg {
  background: #229ED9;
  color: #fff;
  border: 2px solid #229ED9;
}
.btn-tg:hover {
  background: #1a8dbf;
  border-color: #1a8dbf;
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--gold);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  box-shadow: 0 8px 28px rgba(196, 152, 64, 0.32);
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav-logo-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.nav-logo-sub {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--gold-dk); }

.btn-nav {
  background: var(--gold);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-xs);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-nav:hover {
  background: var(--gold-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196, 152, 64, 0.32);
}
.btn-nav-tg {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-nav-tg:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 152, 64, 0.22);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mob-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(16px);
  z-index: 199;
  padding: 24px 32px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(28, 20, 12, 0.10);
}
.mob-menu.open { display: flex; }

.mob-link {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mob-link:hover { color: var(--gold); }

.mob-phone {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 0 10px;
}

.btn-mob {
  background: var(--gold);
  color: #fff;
  padding: 15px;
  border-radius: var(--radius-xs);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 6px;
  transition: background 0.15s;
}
.btn-mob:hover { background: var(--gold-dk); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--warm) 0%, var(--cream) 60%, #EDE0C8 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(196, 152, 64, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(107, 78, 30, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(196, 152, 64, 0.10);
  border: 1px solid rgba(196, 152, 64, 0.28);
  color: var(--sage);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-perk-ico {
  width: 34px; height: 34px;
  background: rgba(196, 152, 64, 0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero right column */
.hero-right {
  position: relative;
}

.hero-photo-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero-deco {
  position: absolute;
  bottom: -24px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.hero-deco-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(196, 152, 64, 0.15), rgba(196, 152, 64, 0.04));
  border: 1px solid rgba(196, 152, 64, 0.26);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-deco strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.hero-deco span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== TRUST SECTION ===== */
.trust {
  background: var(--white);
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
  border-radius: var(--radius-sm);
  background: var(--warm);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.trust-item:hover {
  border-color: rgba(196, 152, 64, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 152, 64, 0.11);
  border-radius: 10px;
}

.trust-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-body strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.trust-body span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ===== METHODS ===== */
.methods { background: var(--warm); }

.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.method-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.method-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.method-card-body {
  padding: 24px 22px 28px;
}
.method-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.method-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.method-card ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.method-card ul li {
  font-size: 0.84rem;
  color: var(--forest);
  font-weight: 500;
  padding-left: 16px;
  position: relative;
}
.method-card ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  display: block;
}

.service-benefits {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.service-benefits li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  font-size: 0.84rem;
  color: var(--forest);
  font-weight: 500;
}

.service-benefits li::before {
  content: '\2022';
  color: #c08a4b;
  position: absolute;
  left: 0;
}

/* ===== INDICATIONS ===== */
.indications { background: var(--cream); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how { background: var(--warm); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(196, 152, 64, 0.30);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== BENEFITS ===== */
.benefits {
  background: linear-gradient(135deg, #2A1C0D 0%, #1C140C 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.benefits-sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefits-check {
  width: 28px; height: 28px;
  background: rgba(196, 152, 64, 0.18);
  border: 1px solid rgba(196, 152, 64, 0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--goldlt);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefits-list li strong {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
}
.benefits-list li span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

/* ===== ABOUT ===== */
.about { background: var(--warm); }

.about-grid {
  max-width: 780px;
  margin: 0 auto;
}

.about-content { padding-top: 0; }
.about-role {
  font-size: 0.92rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.about-desc {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 26px;
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.about-facts li span {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.safety-block {
  background: rgba(196, 152, 64, 0.06);
  border: 1px solid rgba(196, 152, 64, 0.20);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 24px;
}
.safety-block h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.safety-block p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ===== PRICES ===== */
.prices { background: var(--warm); }

.prices-table {
  max-width: 800px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  justify-content: space-between;
}
.price-row:last-child { border-bottom: none; }

.price-row--highlight {
  background: linear-gradient(135deg, rgba(196, 152, 64, 0.07), rgba(196, 152, 64, 0.02));
  border-left: 3px solid var(--gold);
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-info strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.price-info span {
  font-size: 0.84rem;
  color: var(--muted);
}

.price-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
  text-align: right;
}
.price-row--highlight .price-val {
  color: var(--gold);
  font-size: 1.15rem;
}

.prices-cta { text-align: left; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.15s, box-shadow 0.15s;
}
a.contact-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.contact-ico {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-label {
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.contact-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.msg-btns {
  display: flex;
  gap: 12px;
}

/* ===== FORM ===== */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.91rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  tab-index: -1;
}

.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-row label span {
  color: var(--gold);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--warm);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 152, 64, 0.14);
}
.form-row textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 600;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 52px 0;
  border-top: 1px solid rgba(200, 176, 128, 0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
  line-height: 1.55;
}
.footer-legal {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.55;
  max-width: 500px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--goldlt); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--dark);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  border-left: 3px solid var(--gold);
  max-width: 320px;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE: 1100px ===== */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== RESPONSIVE: 960px ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-left { order: 1; }
  .hero-right { order: 2; max-width: 480px; margin: 0 auto; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-perks { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-deco { left: 0; bottom: -20px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .steps::before { display: none; }

  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; gap: 44px; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
}

/* ===== RESPONSIVE: 640px ===== */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .trust { padding: 36px 0; }
  .hero { padding: 110px 0 72px; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-item { padding: 16px 14px; gap: 10px; }

  .cards-grid { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .price-val { text-align: left; }

  .msg-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }

  .form-wrap { padding: 28px 20px; }

  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-deco { display: none; }

  .toast { left: 16px; right: 16px; bottom: 16px; }
}

/* ===== RESPONSIVE: 420px ===== */
@media (max-width: 420px) {
  .hero h1 { font-size: 1.85rem; }
  .sec-title { font-size: 1.55rem; }
  .trust-grid { grid-template-columns: 1fr; }
}
