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

:root {
  --clr-bg: #ece6dc;
  --clr-bg-warm: #f2ece3;
  --clr-bg-card: #f5f0e8;
  --clr-bg-dark: #1e150f;
  --clr-bg-darker: #140e09;
  --clr-text: #2c1810;
  --clr-text-light: #6b5a4a;
  --clr-text-muted: #9a8a7a;
  --clr-accent: #8b4513;
  --clr-accent-hover: #a0522d;
  --clr-accent-glow: rgba(139, 69, 19, 0.25);
  --clr-gold: #c4a265;
  --clr-gold-light: #d4b87a;
  --clr-border: #c4a882;
  --clr-border-light: #d9ccb8;
  --clr-white: #ffffff;
  --clr-ua-blue: #0057b7;
  --clr-ua-yellow: #ffd700;
  --clr-telegram: #0088cc;
  --clr-viber: #7360f2;
  --clr-whatsapp: #25d366;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(30, 21, 15, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 21, 15, 0.1);
  --shadow-lg: 0 16px 48px rgba(30, 21, 15, 0.14);
  --shadow-xl: 0 24px 64px rgba(30, 21, 15, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(236, 230, 220, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(236, 230, 220, 0.96);
  box-shadow: 0 4px 30px rgba(30, 21, 15, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 0;
}

.header-inner .logo {
  flex-shrink: 0;
}

.header-inner .nav {
  flex: 1;
  justify-content: center;
}

.header-inner .btn-header {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-shield {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.15;
  white-space: nowrap;
}

.logo-desc {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-light);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav a:hover { color: var(--clr-text); }
.nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  border-radius: 10px;
  transition: background var(--transition);
}

.burger:hover { background: rgba(139, 69, 19, 0.06); }

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--clr-border-light);
  background: var(--clr-bg-warm);
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  padding: 14px 0;
  font-weight: 500;
  color: var(--clr-text-light);
  border-bottom: 1px solid var(--clr-border-light);
  font-size: 1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--clr-bg-dark);
  color: var(--clr-white);
}

.btn-primary:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-accent-glow);
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-bg-dark);
}

.btn-white:hover {
  background: var(--clr-bg-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 12px 28px;
}

.btn-accent:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
}

.btn-header {
  background: var(--clr-bg-dark);
  color: var(--clr-white);
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-header:hover { background: var(--clr-accent); }

.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('/assets/img/hero-bg.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,21,15,0.88) 0%, rgba(30,21,15,0.65) 40%, rgba(30,21,15,0.75) 100%);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139, 69, 19, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, transparent 70%, rgba(236, 230, 220, 1) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(196, 162, 101, 0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 50px;
  width: 100%;
}

.hero-left {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(139, 69, 19, 0.15);
  border: 1px solid rgba(196, 162, 101, 0.3);
  border-radius: 50px;
  color: var(--clr-gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-ua-yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-accent {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  padding: 24px 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  max-width: 600px;
}

.stat { display: flex; flex-direction: column; align-items: center; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-scroll span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 28px 0;
  background: var(--clr-bg-warm);
  border-bottom: 1px solid var(--clr-border-light);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-light);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--clr-accent);
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-inline {
  margin-bottom: 28px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(139, 69, 19, 0.08);
  border: 1px solid rgba(139, 69, 19, 0.12);
  border-radius: 50px;
  color: var(--clr-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-tag-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: var(--clr-gold-light);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 0.92rem;
  color: var(--clr-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Services ===== */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card-inner {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  position: relative;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover .service-card-inner {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-border);
  background: var(--clr-white);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(139, 69, 19, 0.08), rgba(139, 69, 19, 0.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(196, 162, 101, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--clr-accent);
  transition: color var(--transition);
}

.service-card:hover .service-icon-wrap svg {
  color: var(--clr-white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  flex-grow: 0;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.65;
  flex-grow: 1;
}

.service-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--clr-accent);
}

/* ===== Warm cinematic band (CTA + About share one bg) ===== */
.dark-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--clr-text);
  background: var(--clr-bg-warm);
}

.dark-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/assets/img/dark-band-bg.jpg') center/cover no-repeat;
  opacity: 0.38;
  filter: sepia(0.35) saturate(0.9) contrast(1.05);
}

.dark-band-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(196, 162, 101, 0.22), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(139, 69, 19, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(242, 236, 227, 0.55) 0%, rgba(236, 230, 220, 0.45) 100%);
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  padding: 72px 0 48px;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 480px;
  line-height: 1.7;
}

/* ===== About ===== */
.about {
  position: relative;
  padding: 48px 0 88px;
}

.about-container {
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
}

.about-content .section-tag {
  margin-bottom: 18px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--clr-text);
}

.about-content p {
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-lead {
  font-size: 1.12rem !important;
  color: var(--clr-text) !important;
  font-weight: 500;
  margin-bottom: 18px !important;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  background: var(--clr-white);
  padding: 14px 22px 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-sm);
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
}

.about-badge-icon svg {
  width: 22px;
  height: 22px;
}

.about-badge-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 3px;
}

.about-badge-sub {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.35;
}

/* ===== Advantages ===== */
.advantages {
  padding: 88px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(196, 162, 101, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-accent);
}

.advantage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.advantage-card p {
  font-size: 0.92rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ===== Process ===== */
.process {
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-white);
  position: relative;
  z-index: 2;
}

.process-step-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-border), var(--clr-border-light));
  z-index: 1;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--clr-bg-warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.faq-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-left p {
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--clr-border);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.faq-question span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--clr-text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--clr-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.75;
}

/* ===== Price ===== */
.price-section {
  padding: 24px 0 40px;
}

.price-banner {
  background: var(--clr-bg-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.price-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(139, 69, 19, 0.2), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(196, 162, 101, 0.15), transparent 50%);
  opacity: 0.8;
}

.price-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
}

.price-left {
  flex-shrink: 0;
}

.price-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-gold);
}

.price-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.price-right {
  flex-grow: 1;
}

.price-note {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 400px;
}

/* ===== Contact ===== */
.contact {
  padding: 80px 0 96px;
  position: relative;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
  background: url('/assets/img/cta-bg.webp') center/cover no-repeat;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,21,15,0.92), rgba(30,21,15,0.85) 60%, var(--clr-bg) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--clr-white);
  line-height: 1.3;
}

.contact-info > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.messengers {
  margin-bottom: 36px;
}

.messengers h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.messenger-buttons {
  display: flex;
  gap: 10px;
}

.messenger-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-white);
  transition: all var(--transition);
}

.messenger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.messenger-btn svg { width: 20px; height: 20px; }
.messenger-btn.telegram { background: var(--clr-telegram); }
.messenger-btn.viber { background: var(--clr-viber); }
.messenger-btn.whatsapp { background: var(--clr-whatsapp); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
}

.contact-item-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-value {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ===== Form ===== */
.contact-form-wrapper {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.form-price-badge {
  background: var(--clr-bg-dark);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.form-price-label {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.9;
  white-space: nowrap;
}

.form-price-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-gold);
  white-space: nowrap;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-light);
  margin-bottom: 8px;
}

.required { color: var(--clr-accent); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--clr-text);
  background: var(--clr-bg-warm);
  border: 1.5px solid var(--clr-border-light);
  border-radius: var(--radius);
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 4px var(--clr-accent-glow);
  background: var(--clr-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-muted);
  font-weight: 300;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

/* ===== Floating Messengers ===== */
.floating-messengers {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.floating-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-bg-dark), var(--clr-accent));
  color: var(--clr-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(30, 21, 15, 0.3);
  transition: all var(--transition);
  position: relative;
}

.floating-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.floating-toggle:hover::before { opacity: 0.4; }
.floating-toggle:hover { transform: scale(1.05); }

.floating-toggle svg { width: 24px; height: 24px; transition: all var(--transition); }
.floating-icon-close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.5); }

.floating-messengers.active .floating-icon-chat { opacity: 0; transform: rotate(90deg) scale(0.5); }
.floating-messengers.active .floating-icon-close { opacity: 1; transform: rotate(0) scale(1); }

.floating-items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all var(--transition);
}

.floating-items.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 50px;
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.floating-item:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-lg);
}

.floating-item svg { width: 24px; height: 24px; flex-shrink: 0; }

.floating-label {
  font-size: 0.82rem;
  font-weight: 600;
  padding-right: 6px;
  white-space: nowrap;
}

.floating-item.telegram { background: var(--clr-telegram); }
.floating-item.viber { background: var(--clr-viber); }
.floating-item.whatsapp { background: var(--clr-whatsapp); }

/* ===== Footer ===== */
.footer {
  background: var(--clr-bg-darker);
  padding: 48px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-shield {
  background: rgba(255,255,255,0.08);
}

.footer-brand .logo-shield svg { color: var(--clr-gold); }
.footer-brand .logo-name { color: var(--clr-white); }
.footer-brand .logo-desc { color: rgba(255,255,255,0.35); }

.footer-brand > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.footer-social-link:hover svg { color: var(--clr-white); }

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  padding: 7px 0;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--clr-white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

.footer-flag {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
}

.flag-blue {
  width: 24px;
  height: 8px;
  background: var(--clr-ua-blue);
}

.flag-yellow {
  width: 24px;
  height: 8px;
  background: var(--clr-ua-yellow);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.services-grid [data-aos]:nth-child(1) { transition-delay: 0s; }
.services-grid [data-aos]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-aos]:nth-child(3) { transition-delay: 0.2s; }
.services-grid [data-aos]:nth-child(4) { transition-delay: 0.3s; }
.services-grid [data-aos]:nth-child(5) { transition-delay: 0.4s; }
.services-grid [data-aos]:nth-child(6) { transition-delay: 0.5s; }

.advantages-grid [data-aos]:nth-child(1) { transition-delay: 0s; }
.advantages-grid [data-aos]:nth-child(2) { transition-delay: 0.1s; }
.advantages-grid [data-aos]:nth-child(3) { transition-delay: 0.2s; }
.advantages-grid [data-aos]:nth-child(4) { transition-delay: 0.3s; }
.advantages-grid [data-aos]:nth-child(5) { transition-delay: 0.4s; }
.advantages-grid [data-aos]:nth-child(6) { transition-delay: 0.5s; }

.process-grid [data-aos]:nth-child(1) { transition-delay: 0s; }
.process-grid [data-aos]:nth-child(2) { transition-delay: 0.15s; }
.process-grid [data-aos]:nth-child(3) { transition-delay: 0.3s; }
.process-grid [data-aos]:nth-child(4) { transition-delay: 0.45s; }

.faq-right [data-aos]:nth-child(1) { transition-delay: 0s; }
.faq-right [data-aos]:nth-child(2) { transition-delay: 0.08s; }
.faq-right [data-aos]:nth-child(3) { transition-delay: 0.16s; }
.faq-right [data-aos]:nth-child(4) { transition-delay: 0.24s; }
.faq-right [data-aos]:nth-child(5) { transition-delay: 0.32s; }
.faq-right [data-aos]:nth-child(6) { transition-delay: 0.4s; }

/* ===== Responsive ===== */

/* Desktop-narrow / Small laptop (1200px) */
@media (max-width: 1200px) {
  .container { padding-left: 28px; padding-right: 28px; }
  .services { padding: 64px 0; }
  .advantages { padding: 72px 0; }
  .process { padding: 64px 0; }
  .faq { padding: 64px 0; }
  .contact { padding: 64px 0 80px; }
  .cta-banner { padding: 56px 0 36px; }
  .about { padding: 36px 0 72px; }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .nav { display: none; }
  .btn-header { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-content { flex-direction: column; text-align: center; align-items: center; }
  .cta-text p { margin: 0 auto; }
  .price-content { flex-direction: column; text-align: center; }
  .price-divider { width: 60px; height: 1px; }
  .price-right { display: flex; flex-direction: column; align-items: center; }
  .price-note { text-align: center; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-step-line { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { text-align: center; }
  .faq-left .btn { margin: 20px auto 0; }
  .about-layout { grid-template-columns: 1fr; }
  .about-content h2 { font-size: 1.7rem; }
}

/* Mobile / Large mobile (768px) */
@media (max-width: 768px) {
  .container { padding-left: 28px; padding-right: 28px; }
  .nav { display: none; }
  .btn-header { display: none; }
  .burger { display: flex; }

  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .btn-lg { padding: 14px 26px; font-size: 0.95rem; }

  .hero-content { padding-top: 120px; padding-bottom: 48px; min-height: auto; }
  .hero-badge { padding: 7px 14px; font-size: 0.72rem; gap: 8px; margin-bottom: 16px; letter-spacing: 0.3px; }
  .hero-badge-dot { width: 6px; height: 6px; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.15rem); line-height: 1.15; margin-bottom: 14px; }
  .hero-sub { font-size: 0.94rem; line-height: 1.6; margin-bottom: 22px; }
  .hero-actions { gap: 10px; }
  .hero-stats-bar { flex-direction: column; gap: 14px; max-width: 100%; padding: 18px 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-scroll { display: none; }

  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.35rem, 4.5vw, 1.6rem); }

  .services { padding: 48px 0; }
  .advantages { padding: 56px 0; }
  .process { padding: 48px 0; }
  .faq { padding: 48px 0; }
  .contact { padding: 48px 0 64px; }
  .cta-banner { padding: 40px 0 28px; }
  .about { padding: 28px 0 56px; }

  .trust-bar { padding: 20px 0; }
  .trust-items { gap: 18px 24px; flex-wrap: wrap; justify-content: center; }
  .trust-item { font-size: 0.88rem; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .advantage-card { padding: 24px 22px; }
  .advantage-card h3 { font-size: 1.05rem; }

  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-step { padding: 0 16px; }
  .process-step h3 { font-size: 1.08rem; }

  .faq-item { border-radius: var(--radius); }
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }

  .about-content h2 { font-size: clamp(1.45rem, 5.5vw, 1.75rem); }
  .about-lead { font-size: 1.02rem !important; }
  .about-content p { font-size: 0.95rem; }
  .about-badge { margin-top: 24px; padding: 12px 18px 12px 14px; }
  .about-badge-title { font-size: 0.92rem; }
  .about-badge-sub { font-size: 0.74rem; }

  .cta-content { gap: 22px; }
  .cta-text h2 { font-size: clamp(1.3rem, 5vw, 1.55rem); }
  .cta-text p { font-size: 0.98rem; }

  .contact-bg { display: none; }
  .contact-info h2 { color: var(--clr-text); }
  .contact-info > p { color: var(--clr-text-light); }
  .messengers h4 { color: var(--clr-text-muted); }
  .contact-item-label { color: var(--clr-text-muted); }
  .contact-item-value { color: var(--clr-text); }
  .contact-item-icon { background: rgba(139, 69, 19, 0.08); }
  .contact-item-icon svg { color: var(--clr-accent); }
  .contact .section-tag-light { background: rgba(139, 69, 19, 0.08); border-color: rgba(139, 69, 19, 0.12); color: var(--clr-accent); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .messenger-buttons { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .price-banner { padding: 32px 22px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .floating-messengers { bottom: 16px; right: 16px; }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
  .container { padding-left: 22px; padding-right: 22px; }
  .header-inner { height: 60px; }
  .logo { gap: 8px; }
  .logo-shield { width: 44px; height: 44px; }
  .logo-name { font-size: 0.82rem; }
  .logo-desc { font-size: 0.6rem; }

  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .btn-lg { padding: 13px 22px; font-size: 0.92rem; }

  .hero-content { padding-top: 100px; padding-bottom: 40px; }
  .hero-badge { padding: 6px 12px; font-size: 0.7rem; margin-bottom: 14px; }
  .hero h1 { font-size: 1.65rem; line-height: 1.15; margin-bottom: 12px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats-bar { padding: 16px; gap: 12px; }

  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 1.35rem; }
  .section-tag { padding: 5px 12px; font-size: 0.72rem; }

  .services { padding: 40px 0; }
  .advantages { padding: 44px 0; }
  .process { padding: 40px 0; }
  .faq { padding: 40px 0; }
  .contact { padding: 40px 0 52px; }
  .cta-banner { padding: 32px 0 22px; }
  .about { padding: 22px 0 48px; }

  .service-card-inner { padding: 24px 20px; }
  .advantage-card { padding: 22px 20px; border-radius: var(--radius-lg); }
  .advantage-card h3 { font-size: 1rem; }
  .advantage-card p { font-size: 0.88rem; }

  .process-step-num { width: 48px; height: 48px; font-size: 1.15rem; margin-bottom: 18px; }
  .process-step h3 { font-size: 1.02rem; }
  .process-step p { font-size: 0.86rem; }

  .about-content h2 { font-size: 1.35rem; }
  .about-lead { font-size: 0.98rem !important; }
  .about-content p { font-size: 0.92rem; line-height: 1.65; }

  .cta-text h2 { font-size: 1.25rem; }
  .cta-text p { font-size: 0.92rem; }

  .contact-form-wrapper { padding: 22px; border-radius: var(--radius-lg); }
  .form-price-badge { padding: 12px 14px; gap: 6px; }
  .form-price-label { font-size: 0.82rem; }
  .form-price-amount { font-size: 0.95rem; }

  .faq-question { padding: 14px 16px; font-size: 0.92rem; }
  .faq-answer p { font-size: 0.9rem; }
}

/* Very small phones (360px) */
@media (max-width: 360px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .logo-shield { width: 38px; height: 38px; }
  .logo-name { font-size: 0.74rem; }
  .logo-desc { font-size: 0.56rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.86rem; }
  .hero-badge { padding: 5px 10px; font-size: 0.68rem; }
  .section-header h2 { font-size: 1.2rem; }
  .about-content h2 { font-size: 1.2rem; }
  .advantage-card { padding: 20px 18px; }
  .contact-form-wrapper { padding: 18px; }
  .form-price-badge { padding: 10px 12px; gap: 4px; }
  .form-price-label { font-size: 0.74rem; }
  .form-price-amount { font-size: 0.86rem; }
  .btn-lg { padding: 12px 20px; font-size: 0.9rem; }
}
