/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg: #FAF7F4;
  --clr-bg-alt: #F3ECE6;
  --clr-bg-dark: #2C1F1F;
  --clr-primary: #8B4D6B;
  --clr-primary-light: #B5728E;
  --clr-primary-dark: #6A3353;
  --clr-accent: #C9A96E;
  --clr-accent-light: #DEC48E;
  --clr-text: #2C2020;
  --clr-text-muted: #6B5656;
  --clr-border: #DDD0C8;
  --font-main: 'Raleway', 'Segoe UI', sans-serif;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(44,32,32,0.08);
  --shadow-md: 0 6px 24px rgba(44,32,32,0.12);
  --shadow-lg: 0 12px 48px rgba(44,32,32,0.16);
  --transition: 0.25s ease;
  --max-w: 1140px;
  --section-pad: clamp(64px, 8vw, 100px) 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  border: 2px solid var(--clr-primary);
  box-shadow: 0 4px 16px rgba(139,77,107,0.35);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,77,107,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--clr-accent);
  color: #fff;
  border: 2px solid var(--clr-accent);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.btn-accent:hover {
  background: #b8945a;
  border-color: #b8945a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.45);
}
.btn-lg { padding: 18px 48px; font-size: 17px; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,244,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-primary);
  letter-spacing: 0.02em;
}

.site-nav { display: flex; align-items: center; gap: 32px; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--clr-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF7F4 0%, #F0E6EF 50%, #FAF7F4 100%);
  padding-top: 68px;
}

.hero-bg-shape {
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 52%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  z-index: 0;
}
.hero-bg-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 30%, rgba(240,230,239,0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,77,107,0.1);
  color: var(--clr-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(139,77,107,0.2);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--clr-text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--clr-primary);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
}

/* ===== SECTION HEADINGS ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--clr-text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

/* ===== FOR WHOM ===== */
.for-whom {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.whom-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.whom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.whom-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.whom-card:hover::before { transform: scaleX(1); }

.whom-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(139,77,107,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.whom-card h3 { font-size: 17px; margin-bottom: 8px; }
.whom-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; }

/* ===== WHAT'S INSIDE ===== */
.inside {
  padding: var(--section-pad);
  background: var(--clr-bg);
}

.inside-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.inside-visual { position: relative; }
.inside-visual img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.inside-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.inside-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.inside-badge-label { font-size: 12px; opacity: 0.85; margin-top: 4px; }

.modules-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.module-item:hover { border-color: var(--clr-primary-light); box-shadow: var(--shadow-sm); }
.module-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--clr-primary);
  font-weight: 700;
  min-width: 32px;
  line-height: 1;
  padding-top: 2px;
}
.module-text h4 { font-size: 15px; margin-bottom: 4px; }
.module-text p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.process {
  padding: var(--section-pad);
  background: var(--clr-bg-dark);
  color: #fff;
}
.process .section-title { color: #fff; }
.process .section-sub { color: rgba(255,255,255,0.65); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-primary);
  border: 3px solid var(--clr-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139,77,107,0.5);
}
.step-item h3 { font-size: 15px; color: #fff; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== RESULTS ===== */
.results {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
}

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

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.result-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.result-item:hover { box-shadow: var(--shadow-sm); border-color: var(--clr-primary-light); }
.result-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(139,77,107,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary);
  font-size: 16px;
}
.result-item p { font-size: 15px; color: var(--clr-text); line-height: 1.6; padding-top: 4px; }

.results-visual img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: var(--section-pad);
  background: var(--clr-bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.portfolio-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-card:hover img { transform: scale(1.05); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--clr-border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--clr-primary);
  opacity: 0.25;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--clr-text);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--clr-primary);
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--clr-border);
}
.author-name { font-size: 14px; font-weight: 600; }
.author-city { font-size: 12px; color: var(--clr-text-muted); margin-top: 2px; }

.stars { color: var(--clr-accent); font-size: 13px; margin-bottom: 6px; letter-spacing: 2px; }

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad);
  background: var(--clr-bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--clr-primary-light); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--clr-primary); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 18px;
  font-weight: 300;
  color: var(--clr-primary);
}
.faq-item.open .faq-icon {
  background: var(--clr-primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 22px; }

/* ===== OFFER & LEAD FORM ===== */
.offer {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.offer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.offer-text { color: #fff; }
.offer-text .section-tag {
  color: var(--clr-accent-light);
  background: rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 50px;
}
.offer-text .section-title { color: #fff; }
.offer-text .section-sub { color: rgba(255,255,255,0.8); }

.offer-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.offer-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.perk-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
}

.offer-form-wrap {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--clr-text);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--clr-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139,77,107,0.12);
}
.form-control::placeholder { color: #b0a0a0; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--clr-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-consent a { color: var(--clr-primary); text-decoration: underline; }
.form-submit { width: 100%; }

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad);
  background: var(--clr-bg-alt);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.about-photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { font-size: 15px; color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 14px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--clr-text-muted); margin-top: 4px; line-height: 1.4; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 20px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand .logo-name { color: #fff; font-size: 20px; }
.footer-brand p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.footer-legal strong { color: rgba(255,255,255,0.5); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--clr-bg-dark);
  border-top: 2px solid var(--clr-primary);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 640px;
  flex: 1;
  min-width: 220px;
}
.cookie-text a { color: var(--clr-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 24px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--clr-primary-dark); }
.cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FAF7F4, #F0E6EF);
  padding: 40px 20px;
  text-align: center;
}
.success-card {
  max-width: 520px;
  width: 100%;
  background: #fff;
  border-radius: calc(var(--radius) + 8px);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(139,77,107,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 40px;
}
.success-card h1 {
  font-size: 2rem;
  color: var(--clr-text);
  margin-bottom: 14px;
}
.success-card p {
  font-size: 16px;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--clr-bg);
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal-content h1 {
  font-size: 2rem;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--clr-border);
}
.legal-content h2 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 28px 0 10px;
}
.legal-content p,
.legal-content li {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--clr-primary); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--clr-primary);
  font-weight: 600;
  margin-bottom: 36px;
  transition: gap var(--transition);
}
.legal-back:hover { gap: 12px; }
.legal-back span { font-size: 18px; }

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }
  .hero-text { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-bg-shape { display: none; }

  .inside-layout,
  .results-grid,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inside-badge { right: 16px; bottom: 16px; }
  .about-photo-badge { right: 16px; bottom: 16px; }
  .results-visual { order: -1; }
  .results-visual img { aspect-ratio: 16/9; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card:first-child { grid-row: span 1; }

  .offer-layout { grid-template-columns: 1fr; gap: 40px; }
  .offer-form-wrap { padding: 32px 28px; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .process-steps::before { display: none; }
  .process-steps { gap: 32px; }
  .step-item { flex-direction: row; text-align: left; gap: 16px; }
  .step-circle { margin-bottom: 0; }
}

@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(250,247,244,0.98);
    backdrop-filter: blur(12px);
    padding: 24px 20px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--clr-border);
    z-index: 99;
  }
  .nav-links.open a { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-cta.open { display: block; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .offer-form-wrap { padding: 28px 20px; }
  .success-card { padding: 40px 24px; }
}

@media (min-width: 600px) and (max-width: 900px) {
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
