/* =============================================
   SAUNA NA WYMIAR — main.css
   Styl: naturalne rzemiosło, ciepłe, spokojne
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg:          #F7F4EF;
  --bg2:         #EDE8DF;
  --surface:     #FFFFFF;
  --border:      rgba(30,26,22,0.10);
  --border-md:   rgba(30,26,22,0.18);
  --text:        #1E1A16;
  --muted:       rgba(30,26,22,0.52);
  --accent:      #7B5C3E;
  --accent-lt:   #C4A882;
  --accent-bg:   rgba(123,92,62,0.07);
  --white:       #FFFFFF;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', sans-serif;
  --max:         1160px;
  --radius:      12px;
  --shadow:      0 2px 20px rgba(30,26,22,0.08);
  --shadow-lg:   0 8px 48px rgba(30,26,22,0.13);
  --transition:  0.3s ease;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
strong { color: var(--text); font-weight: 600; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--bg { background: var(--bg2); }
.section--white { background: var(--surface); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.section-title { margin-bottom: 20px; }
.section-lead { max-width: 580px; font-size: 1.1rem; margin-bottom: 52px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: #6a4e34;
  border-color: #6a4e34;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,92,62,0.28);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-lt);
}
.btn--outline:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-md);
  padding: 12px 24px;
  font-size: 0.85rem;
}
.btn--ghost:hover { background: var(--bg2); }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.topbar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(30,26,22,0.09); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.site-logo span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 100px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.current { color: var(--text); background: var(--bg2); }
.header-cta { margin-left: 12px; }

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

/* ---- HERO ---- */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,168,130,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--accent-lt);
}
.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}
.hero-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-micro {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-micro::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent-lt);
}
.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-badge-item .dot {
  width: 7px; height: 7px;
  background: var(--accent-lt);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg2);
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  background: linear-gradient(145deg, #EDE8DF, #E2D9CC);
}
.hero-image-placeholder svg { opacity: 0.35; }
.hero-image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ---- PRICE SECTION ---- */
.price-section { padding: 80px 0; background: var(--surface); }
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border-md);
  border-radius: 20px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.price-tag {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.price-tag-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; font-style: italic; }
.price-text { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.price-list { display: flex; flex-direction: column; gap: 10px; }
.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.price-list li::before {
  content: '—';
  color: var(--accent-lt);
  font-weight: 700;
}

/* ---- REASONS ---- */
.reasons-section { padding: 100px 0; }
.reasons-text { max-width: 520px; }
.reasons-text h2 { margin-bottom: 20px; }
.reasons-text p { margin-bottom: 36px; }

/* ---- FOR WHOM ---- */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}
.forwhom-card {
  background: var(--surface);
  padding: 36px 40px;
  transition: background var(--transition);
}
.forwhom-card:hover { background: var(--bg2); }
.forwhom-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--border-md);
  margin-bottom: 14px;
  line-height: 1;
}
.forwhom-card h4 { margin-bottom: 10px; color: var(--text); }
.forwhom-card p { font-size: 0.92rem; }

/* ---- ADVANTAGES ---- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.advantage-item {
  padding: 36px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.advantage-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.advantage-icon {
  width: 44px; height: 44px;
  background: var(--accent-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.advantage-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.advantage-item h4 { margin-bottom: 10px; }
.advantage-item p { font-size: 0.92rem; }

/* ---- WHAT YOU GET ---- */
.standard-section { padding: 100px 0; background: var(--bg2); }
.standard-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.standard-list { display: flex; flex-direction: column; gap: 0; }
.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.standard-item:first-child { padding-top: 0; }
.standard-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-lt);
  min-width: 28px;
  padding-top: 1px;
}

/* ---- STEPS ---- */
.steps-section { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 48px;
  right: 48px;
  height: 1.5px;
  background: var(--border-md);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--accent-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}
.step-item h4 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.84rem; }

/* ---- OBJECTIONS / FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--border-md);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--accent);
}
.faq-item.open .faq-toggle { background: var(--accent); color: var(--white); border-color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 200px; padding-top: 16px; }
.faq-answer p { font-size: 0.97rem; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg2);
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #E9E3D8, #D4CAB8);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 16px;
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(30,26,22,0.55));
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  font-style: italic;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 100px 0; background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- FORM SECTION ---- */
.form-section { padding: 100px 0; }
.form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.form-left {
  padding: 64px 56px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-left .section-label { color: rgba(255,255,255,0.6); }
.form-left h2 { color: var(--white); margin-bottom: 16px; }
.form-left p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.form-trust { display: flex; flex-direction: column; gap: 10px; }
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.form-trust-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.form-right { padding: 64px 56px; }
.form-right h3 { font-size: 1.2rem; margin-bottom: 28px; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border-md);
  border-radius: 9px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select { cursor: pointer; }
.form-field.required label::after { content: ' *'; color: var(--accent); }
.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checkbox-field input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.checkbox-field label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 9px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}
.form-submit-btn:hover {
  background: #6a4e34;
  transform: translateY(-2px);
}
.form-micro {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
}
.form-micro a { color: var(--accent); font-weight: 600; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: var(--text);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.cta-strip p {
  color: rgba(247,244,239,0.6);
  margin-bottom: 28px;
}
.cta-strip .btn--primary {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  color: var(--text);
}
.cta-strip .btn--primary:hover { background: #d4bc97; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--text);
  color: rgba(247,244,239,0.7);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { color: var(--bg); font-size: 1.5rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(247,244,239,0.55); max-width: 260px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-lt);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(247,244,239,0.45);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(247,244,239,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--bg); }
.footer-bottom {
  border-top: 1px solid rgba(247,244,239,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(247,244,239,0.35);
}

/* ---- MOBILE STICKY CTA ---- */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(30,26,22,0.12);
}
.mobile-sticky .btn { flex: 1; justify-content: center; }

/* ---- SUBPAGE HERO ---- */
.subpage-hero {
  padding: 80px 0 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.subpage-hero .container { max-width: 760px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent-lt); }
.subpage-hero h1 { margin-bottom: 16px; }
.subpage-hero .lead { font-size: 1.1rem; color: var(--muted); max-width: 600px; }

/* ---- CONTENT SECTIONS ---- */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--bg2); }
.content-max { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.content-max h2 { margin-bottom: 18px; }
.content-max p { margin-bottom: 20px; }
.content-max p:last-child { margin-bottom: 0; }
.content-cta-box {
  background: var(--accent-bg);
  border: 1px solid rgba(123,92,62,0.15);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.content-cta-box p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 500;
}

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info p { margin-bottom: 24px; }
.contact-phone-big {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}

/* ---- THANK YOU PAGE ---- */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-icon {
  width: 80px; height: 80px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}
.thankyou-section h1 { margin-bottom: 16px; }
.thankyou-section p { max-width: 520px; margin: 0 auto 28px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ---- SCHEMA / HIDDEN ---- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .price-card { grid-template-columns: 1fr; gap: 28px; padding: 40px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { aspect-ratio: 16/9; order: -1; }
  .hero-badges { flex-wrap: wrap; gap: 12px; }

  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; border-radius: 8px; padding: 11px 16px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-header { position: relative; }

  .forwhom-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .standard-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .form-wrapper { grid-template-columns: 1fr; }
  .form-left { padding: 40px 32px; }
  .form-right { padding: 40px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-cta-box { flex-direction: column; align-items: flex-start; }

  .mobile-sticky { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 60px 0 48px; }
  .hero-ctas { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .price-card { padding: 28px 24px; }
  .form-left, .form-right { padding: 32px 24px; }
}
