:root {
  --bg-color: #F8F9F9;
  --white: #FFFFFF;
  --primary-green: #06402B;
  --primary-hover: #042e1f;
  --text-main: #1C2023;
  --text-muted: #6B7276;
  --border-color: #E6EAEA;
  --gold: #C09247;
  --radius: 16px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.06);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select { font-family: inherit; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.text-green { color: var(--primary-green) !important; }
.text-gold { color: var(--gold) !important; }
.center { text-align: center; }

/* TYPOGRAPHY */
h1 { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px; }
h2 { font-size: 36px; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.section-title { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.section-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }
.section-desc.center { margin-left: auto; margin-right: auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 52px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background-color: var(--primary-green); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(6,64,43,0.2); }
.btn-outline { background-color: var(--white); color: var(--primary-green); border-color: var(--primary-green); }
.btn-outline:hover { background-color: #f0fdf4; }
.btn-large { height: 64px; padding: 0 48px; font-size: 18px; font-weight: 700; border-radius: 12px; }
.btn-full { width: 100%; height: 56px; font-size: 16px; }
.btn-wa { color: var(--primary-green); }

/* HEADER */
.header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
}
.header-inner {
  height: 72px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 44px; height: 44px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 16px; font-weight: 800; color: var(--gold); letter-spacing: 0.05em; }
.logo-subtitle { font-size: 9px; font-weight: 700; color: var(--text-main); letter-spacing: 0.02em; }
.nav { display: flex; gap: 32px; }
.nav a { font-size: 14px; font-weight: 600; color: var(--text-main); transition: color 0.2s; }
.nav a:hover { color: var(--primary-green); }
.header-right { display: flex; align-items: center; gap: 24px; }
.header-socials { display: flex; align-items: center; gap: 12px; }
.header-social-link { color: var(--text-main); display: flex; align-items: center; justify-content: center; transition: color 0.2s; }
.header-social-link:hover { color: var(--primary-green); }
.header-phone { font-size: 15px; font-weight: 700; color: var(--text-main); }
.header-phone:hover { color: var(--primary-green); }
.header-right .btn { height: 40px; padding: 0 20px; font-size: 14px; border-radius: 6px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); }

/* HERO WRAPPER */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(248,249,249,0) 0%, rgba(248,249,249,1) 100%);
  z-index: 5;
  pointer-events: none;
}
.hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}
.hero-gradient-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(248,249,249,1) 0%, rgba(248,249,249,0.9) 35%, rgba(248,249,249,0) 65%);
  z-index: 2;
}

/* HERO CONTENT */
.hero { flex: 1; display: flex; align-items: center; position: relative; z-index: 10; padding: 140px 0 60px; }
.hero-inner { width: 100%; display: flex; }
.hero-content { max-width: 800px; }
.hero-content h1 { font-size: 46px; margin-bottom: 24px; }
.hero-content .lead { font-size: 20px; color: var(--text-main); font-weight: 500; margin-bottom: 40px; line-height: 1.6; }

.hero-features { display: flex; gap: 24px; margin-bottom: 40px; }
.hero-feature { display: flex; align-items: center; gap: 12px; }
.feature-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(6, 64, 43, 0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-text span { font-family: system-ui, -apple-system, sans-serif; font-size: 15px; font-weight: 500; line-height: 1.4; display: block; color: var(--text-muted); letter-spacing: 0.3px; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.hero-actions .btn-outline { border: 1px solid var(--primary-green); background: transparent; }
.hero-actions .btn svg { margin-right: 8px; }
.hero-gift-trigger { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 12px 20px; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.3); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.hero-gift-trigger span { font-size: 14px; color: var(--text-main); line-height: 1.4; }
.hero-gift-trigger b { color: var(--gold, #c79a45); font-weight: 700; }




/* BENEFITS */
.benefits { padding: 100px 0; background: var(--bg-color); }
.benefits-split { display: flex; gap: 80px; align-items: center; }
.benefits-image { flex: 1; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 48px rgba(0,0,0,0.06); position: relative; }
.benefits-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; display: block; }
.benefits-content { flex: 1; }
.benefits-content .section-title { text-align: left; }
.benefits-content .section-desc { text-align: left; margin-left: 0; }
.benefits-list { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.benefit-list-item { display: flex; gap: 24px; align-items: flex-start; }
.benefit-list-item .b-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(6, 64, 43, 0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-list-item .b-icon svg { width: 28px; height: 28px; }
.benefit-list-item .b-text h3 { font-size: 20px; margin-bottom: 8px; }
.benefit-list-item .b-text p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 991px) {
  .benefits-split { flex-direction: column; gap: 48px; }
  .benefits-content .section-title, .benefits-content .section-desc { text-align: center; margin: 0 auto 20px; }
}

/* PROCESS */
.process { padding: 100px 0; background: var(--bg-color); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; z-index: 2; padding-top: 20px; }
.process-card {
  background: var(--white);
  color: var(--text-main);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 32px rgba(0,0,0,0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.06);
}
.process-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
}
.process-card h3 { font-size: 24px; margin-bottom: 24px; color: var(--text-main); }
.process-checklist { list-style: none; padding: 0; margin: 0; position: relative; z-index: 2; }
.process-checklist li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-size: 15px; color: var(--text-muted); line-height: 1.5; font-weight: 500; }
.process-checklist li:last-child { margin-bottom: 0; }
.process-checklist li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(6,64,43,0.05); color: var(--primary-green); font-size: 13px; font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* MODELS */
.models { 
  padding: 120px 0; 
  background-color: var(--bg-color); 
  position: relative; 
}
.models h2 { color: var(--text-main); position: relative; z-index: 1; text-align: center; }
.models p.section-desc { color: var(--text-muted); position: relative; z-index: 1; text-align: center; margin: 0 auto 60px; }
.models-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 40px; position: relative; z-index: 1; }

.model-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 32px;
  display: flex;
  position: relative;
  padding: 48px;
  color: var(--text-main);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: rgba(199, 154, 69, 0.3);
}
.model-num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(199, 154, 69, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  z-index: 10;
  background: var(--white);
}
.model-img-wrapper { flex: 0 0 200px; display: flex; align-items: center; justify-content: center; margin-right: 40px; z-index: 2; position: relative; }
.model-img-wrapper img { 
  width: 100%; height: auto; max-height: 260px; object-fit: contain; 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}
.model-card:hover .model-img-wrapper img { transform: scale(1.1) translateY(-10px); }

.model-info { flex: 1; display: flex; flex-direction: column; z-index: 2; position: relative; align-items: flex-start; }
.model-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(199, 154, 69, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.model-info h3 { font-size: 32px; margin-bottom: 12px; color: var(--text-main); font-weight: 800; letter-spacing: -1px; }
.model-info p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }

.model-stats { 
  display: flex; 
  justify-content: space-between; 
  gap: 16px; 
  border-top: 1px solid rgba(0,0,0,0.06); 
  padding-top: 24px; 
  margin-top: auto; 
  width: 100%;
}
.model-stats div { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.model-stats dt { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }
.model-stats dd { font-size: 15px; font-weight: 800; color: var(--text-main); }
.models-note { display: flex; align-items: center; justify-content: center; gap: 12px; background: rgba(6, 64, 43, 0.03); border: 1px solid rgba(6, 64, 43, 0.1); padding: 20px; border-radius: 12px; font-size: 14px; color: var(--text-main); position: relative; z-index: 1; }
.models-note svg { stroke: var(--gold, #c79a45); }

/* LEAD MAGNET */
.lead-magnet { padding: 80px 0; background: var(--bg-color, #f8f9f9); }
.magnet-inner { background: var(--white, #fff); border-radius: 32px; border: 1px solid var(--border-color); padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 60px; box-shadow: 0 20px 40px rgba(0,0,0,0.02); }
.magnet-content { flex: 1; max-width: 540px; }
.magnet-tag { display: inline-block; padding: 6px 12px; background: rgba(212,175,55,0.1); color: var(--gold, #c79a45); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 6px; margin-bottom: 24px; }
.magnet-content h2 { font-size: 32px; margin-bottom: 24px; line-height: 1.2; }
.magnet-list { list-style: none; padding: 0; margin: 0 0 32px 0; }
.magnet-list li { font-size: 15px; color: var(--text-muted); margin-bottom: 12px; padding-left: 24px; position: relative; }
.magnet-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--primary-green, #06402B); font-weight: 900; }
.magnet-form { display: flex; gap: 12px; margin-bottom: 12px; }
.magnet-form input { flex: 1; height: 52px; padding: 0 20px; border: 1px solid var(--border-color); border-radius: 12px; font-size: 15px; outline: none; transition: border-color 0.3s; }
.magnet-form input:focus { border-color: var(--primary-green, #06402B); }
.magnet-form .btn { height: 52px; border-radius: 12px; padding: 0 32px; white-space: nowrap; }

/* PDF Mockup */
.magnet-image { flex: 0 0 400px; display: flex; justify-content: center; align-items: center; }
.pdf-mockup { width: 260px; height: 360px; position: relative; perspective: 1000px; transform: rotate(-5deg); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; }
.magnet-inner:hover .pdf-mockup { transform: rotate(0deg) scale(1.05); }
.pdf-cover { position: absolute; inset: 0; background: var(--primary-green, #06402B); border-radius: 8px 16px 16px 8px; box-shadow: -5px 10px 20px rgba(0,0,0,0.15), inset 2px 0 5px rgba(255,255,255,0.2); padding: 40px 30px; display: flex; flex-direction: column; color: #fff; z-index: 2; transform-origin: left center; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.magnet-inner:hover .pdf-cover { transform: rotateY(-15deg); }
.pdf-logo { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold, #c79a45); margin-bottom: auto; }
.pdf-title { font-size: 24px; font-weight: 800; line-height: 1.2; margin-top: auto; margin-bottom: 40px; }
.pdf-pages { position: absolute; top: 5px; right: -10px; bottom: 5px; left: 0; background: #fff; border-radius: 8px 12px 12px 8px; box-shadow: 2px 0 5px rgba(0,0,0,0.1); z-index: 1; border: 1px solid #eee; }
.pdf-pages::before { content: ''; position: absolute; top: 0; right: 4px; bottom: 0; width: 1px; background: #ddd; }

/* SERVICE */
.service { padding: 100px 0; background: var(--bg-color); }
.service-inner { display: flex; gap: 60px; align-items: center; }
.service-image-col { flex: 0 0 45%; }
.service-img { border-radius: 24px; width: 100%; height: 600px; object-fit: cover; box-shadow: var(--shadow-md); }
.service-content { flex: 1; }
.service-content h2 { font-size: 36px; margin-bottom: 48px; max-width: 500px; }
.service-items { display: flex; flex-direction: column; gap: 32px; }
.s-item { display: flex; gap: 20px; align-items: flex-start; }
.s-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--primary-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s-text h3 { font-size: 18px; margin-bottom: 8px; }
.s-text p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* CASES */
.cases { padding: 100px 0; background: var(--bg-color); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.case-card { border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.case-img { width: 100%; height: 240px; object-fit: cover; }
.case-body { padding: 32px 24px; }
.case-body .tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: inline-block; }
.case-body h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.3; }
.case-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* REVIEWS */
.reviews-section { padding: 100px 0; background: var(--bg-color); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.review-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.review-stars { display: flex; gap: 4px; margin-bottom: 24px; }
.review-text { font-size: 15px; color: var(--text-muted); line-height: 1.6; font-style: italic; margin-bottom: 32px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 16px; margin-top: auto; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 24px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #eee; }
.review-author-info h4 { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.review-author-info p { font-size: 13px; color: var(--text-muted); }

/* PREMIUM CONTACTS */
.contacts-section { padding: 100px 0 120px; background: var(--bg-color); }
.contacts-premium-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(6, 64, 43, 0.15);
  background: var(--primary-green);
}
.contacts-premium-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.contacts-premium-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}
.contacts-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(6, 64, 43, 0.95) 0%, rgba(4, 46, 31, 0.8) 100%);
}
.contacts-premium-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  padding: 80px;
  align-items: center;
}
.contacts-info-premium { flex: 1; color: var(--white); }
.contacts-info-premium .eyebrow { color: var(--gold); margin-bottom: 16px; font-weight: 700; letter-spacing: 0.1em; }
.contacts-info-premium h2 { font-size: 40px; margin-bottom: 24px; line-height: 1.1; color: var(--white); }
.contacts-desc-premium { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.6; max-width: 480px; }
.contacts-messengers-premium { display: flex; gap: 16px; margin-bottom: 40px; }
.messenger-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 16px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.messenger-btn:hover { transform: translateY(-3px); }
.tg-btn { background: #2AABEE; color: #fff; box-shadow: 0 10px 20px rgba(42, 171, 238, 0.3); }
.max-btn { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.max-btn:hover { background: rgba(255,255,255,0.2); }
.contacts-phone-premium { display: flex; flex-direction: column; gap: 8px; }
.contacts-phone-premium span { font-size: 13px; color: rgba(255,255,255,0.5); }
.contacts-phone-premium a { font-size: 24px; font-weight: 800; color: var(--white); text-decoration: none; transition: color 0.2s; }
.contacts-phone-premium a:hover { color: var(--gold); }

.contacts-form-premium {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 1);
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.contacts-form-premium h3 { font-size: 24px; margin-bottom: 32px; color: var(--text-main); font-weight: 800; }
.form-group-premium { margin-bottom: 20px; }
.form-group-premium input, .form-group-premium select {
  width: 100%; height: 56px; padding: 0 20px;
  background: var(--bg-color); border: 1px solid transparent;
  border-radius: 16px; font-size: 15px; color: var(--text-main);
  transition: all 0.3s;
}
.form-group-premium input:focus, .form-group-premium select:focus {
  background: var(--white) !important; border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(199, 154, 69, 0.1) !important; outline: none;
}
.btn-premium-submit {
  width: 100%; height: 60px;
  background: var(--primary-green); color: var(--white);
  border: none; border-radius: 16px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  margin-top: 12px; transition: background 0.3s;
}
.btn-premium-submit:hover { background: var(--gold) !important; color: #fff !important; }
.form-note-premium { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 20px; line-height: 1.5; }

/* FOOTER */
.footer { background: var(--white); padding: 32px 0 24px; border-top: 1px solid var(--border-color); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; margin-bottom: 24px; }
.footer-brand { display: flex; align-items: center; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contacts { display: flex; align-items: center; gap: 24px; }
.f-phone { font-size: 15px; font-weight: 700; color: var(--text-main); text-decoration: none; }
.f-phone:hover { color: var(--primary-green); }
.f-city { font-size: 13px; color: var(--text-muted); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-color); font-size: 12px; color: #a0a5a8; }
.footer-bottom a { color: #a0a5a8; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-main); }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-inner { flex-direction: column; }
  .hero-image-wrapper { width: 100%; }
  .benefits-grid { flex-wrap: wrap; }
  .benefits-title-card { flex: 1 1 100%; margin-bottom: 24px; }
  .benefit-card { flex: 1 1 calc(50% - 12px); }
  .models-grid { grid-template-columns: 1fr; }
  .service-inner { flex-direction: column; }
  .service-image-col { width: 100%; }
  .service-img { height: 400px; }
  .contacts-premium-content { flex-direction: column; padding: 48px; gap: 48px; }
  .contacts-form-premium { flex: 1 1 100%; width: 100%; }
  .magnet-inner { flex-direction: column; gap: 40px; padding: 40px; }
  .magnet-content { max-width: 100%; }
  .magnet-form { flex-direction: column; }
}

@media (max-width: 768px) {
  .header { padding: 0 12px; top: 12px; }
  .header-inner { height: 52px; padding: 0 12px; }
  .logo { gap: 8px; }
  .logo-img { width: 26px; height: 26px; }
  .logo-title { font-size: 14px; }
  .logo-subtitle { display: none; }
  .nav, .header-phone, .header-right .btn { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-wrapper { min-height: 100svh; }
  .hero { padding: 76px 0 10px; }
  h1 { font-size: 24px; margin-bottom: 8px; line-height: 1.1; }
  h2 { font-size: 28px; }
  .hero-content .lead { font-size: 13px; margin-bottom: 12px; line-height: 1.4; }
  .hero-features { flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .feature-icon { width: 28px; height: 28px; }
  .feature-icon svg { width: 14px; height: 14px; }
  .feature-text span { font-size: 12px; }
  .hero-actions { flex-direction: column; gap: 6px; margin-bottom: 0; }
  .hero-actions .btn { width: 100%; height: 42px; font-size: 13px; }
  .hero-gift-trigger { margin-top: 12px; padding: 6px 12px; }
  .hero-gift-trigger span { font-size: 11px; }
  .benefit-card { flex: 1 1 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .model-card { flex-direction: column; padding: 24px; }
  .model-img-wrapper { margin-right: 0; margin-bottom: 24px; }
  .cases-grid { grid-template-columns: 1fr; }
  .hero-bg-image { background-position: right center; }
  .service-img { height: 320px; }
  .case-img { height: 220px; }
  .portfolio-img-wrapper { height: 220px; }
  .faq-layout { flex-direction: column; }
  .faq-cta { width: 100%; flex: 1; }
  .contacts-premium-content { padding: 32px 20px; gap: 32px; }
  .contacts-form-premium { padding: 32px 20px; }
  .contacts-messengers-premium { flex-direction: column; width: 100%; gap: 12px; }
  .contacts-messengers-premium a { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-contacts { flex-direction: column; align-items: center; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .magnet-inner { padding: 24px; }
  .magnet-image { flex: 0 0 auto; width: 100%; margin-top: 20px; }
  .pdf-mockup { margin: 0 auto; }
}

/* SCROLL ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
