/* ===== CSS RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  /* Palette — bright selling, construction-warm */
  --orange: #FF6A1A;        /* primary CTA */
  --orange-deep: #E55400;
  --orange-soft: #FFF1E8;
  --yellow: #FFC83D;        /* accent on dark */
  --ink: #14181F;           /* deep almost-black */
  --ink-2: #2A323D;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --line: #E5E7EB;
  --line-2: #1F2630;        /* on dark */
  --bg: #FFFFFF;
  --bg-cream: #FAF7F2;
  --bg-dark: #14181F;
  --bg-dark-2: #1B2129;
  --bg-accent: #FF6A1A;
  --white: #FFFFFF;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 7rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 24, 31, 0.06), 0 2px 8px rgba(20, 24, 31, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 24, 31, 0.08), 0 12px 28px rgba(20, 24, 31, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 24, 31, 0.12), 0 24px 60px rgba(20, 24, 31, 0.14);
  --shadow-orange: 0 10px 30px rgba(255, 106, 26, 0.35);

  /* Type */
  --display: 'Unbounded', 'Manrope', sans-serif;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section--cream {
  background: var(--bg-cream);
}
.section--accent {
  background:
    radial-gradient(ellipse at top right, rgba(255, 106, 26, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(255, 138, 71, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0E1218 0%, #1A1F2A 100%);
  color: var(--white);
}

/* ===== SECTION HEAD ===== */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  padding: 6px 14px;
  background: var(--orange-soft);
  border-radius: 999px;
}
.eyebrow--light {
  color: var(--yellow);
  background: rgba(255, 200, 61, 0.15);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title--light { color: var(--white); }
.section-sub {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  line-height: 1.6;
}
.section--dark .section-sub,
.section--accent .section-sub { color: rgba(255, 255, 255, 0.85); }
.accent { color: var(--orange); }
.accent-yellow { color: var(--yellow); }
.muted { color: var(--muted); font-weight: 500; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.22s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-sm { padding: 0.6rem 1.1rem; font-size: 14px; }
.btn-lg { padding: 1.1rem 2rem; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 106, 26, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.55); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.section--dark .btn-outline,
.section--accent .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.section--dark .btn-outline:hover,
.section--accent .btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-accent { color: var(--orange); }
.logo-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}
.site-nav {
  display: flex;
  gap: 1.8rem;
}
.site-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.15s;
  position: relative;
}
.site-nav a:hover { color: var(--orange); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.header-phone svg { color: var(--orange); }
.header-cta { display: none; }

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .header-cta { display: inline-flex; }
}
@media (max-width: 640px) {
  .header-phone span { display: none; }
  .logo-sub { display: none; }
  .header-inner { gap: 0.6rem; padding-top: 10px; padding-bottom: 10px; }
  .logo-main { font-size: 16px; }
  .header-cta { padding: 0.55rem 0.85rem; font-size: 13px; }
  .container { padding: 0 18px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(20, 24, 31, 0.92) 0%, rgba(20, 24, 31, 0.78) 45%, rgba(20, 24, 31, 0.4) 100%),
    linear-gradient(180deg, rgba(20, 24, 31, 0.2) 0%, rgba(20, 24, 31, 0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-content { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  margin-bottom: 1.75rem;
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 106, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 26, 0); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero-title .muted {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.65em;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.01em;
}
.accent-line {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  max-width: 600px;
  margin-bottom: 2.25rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
  max-width: 580px;
}
.hero-feat {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
}
.feat-num {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.feat-lbl {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-gift {
  display: inline-block;
  padding: 12px 18px;
  background: rgba(255, 200, 61, 0.15);
  border: 1px dashed rgba(255, 200, 61, 0.5);
  border-radius: var(--r-md);
  font-size: 14.5px;
  color: var(--yellow);
}
.hero-gift strong { color: var(--white); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

@media (max-width: 640px) {
  .hero-features { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .scroll-hint { display: none; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--ink);
  color: var(--white);
  padding: 1.75rem 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trust-item strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
@media (max-width: 640px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all 0.28s cubic-bezier(.2, .8, .2, 1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card--featured {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
  border-color: var(--ink);
  grid-row: span 2;
  position: relative;
}
.service-card--featured::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  z-index: -1;
}
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: var(--r-md);
  margin-bottom: 1.25rem;
}
.service-card--featured .service-icon {
  background: rgba(255, 106, 26, 0.18);
  color: var(--orange);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.service-card--featured p { color: rgba(255, 255, 255, 0.75); }
.service-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: auto; }
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  padding: 2rem 1.75rem;
  background: var(--bg-dark-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  position: relative;
  transition: all 0.25s ease;
}
.process-step:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.process-step p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* ===== PRICES ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.price-card {
  padding: 2rem 1.75rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card--featured:hover { transform: scale(1.03) translateY(-3px); }
.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--muted);
}
.price-card--featured .price-amount { color: rgba(255, 255, 255, 0.6); }
.price-amount strong {
  font-size: 2.5rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-card--featured .price-amount strong { color: var(--white); }
.price-amount span { font-size: 0.95rem; }
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.price-card li {
  font-size: 14.5px;
  padding-left: 26px;
  position: relative;
  color: var(--ink-2);
}
.price-card--featured li { color: rgba(255, 255, 255, 0.82); }
.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background: var(--orange-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l2.5 2.5L12 5' stroke='%23FF6A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.price-card--featured li::before { background-color: rgba(255, 106, 26, 0.2); }

.price-table {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--line);
}
.price-table h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  padding: 14px 4px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.price-table th {
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-table td:last-child { font-weight: 700; color: var(--orange); text-align: right; }
.price-note {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-3px); }
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.portfolio-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card--big {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.portfolio-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 24, 31, 0.92) 80%);
  color: var(--white);
  transform: translateY(20%);
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
}
.portfolio-card:hover .portfolio-meta { transform: translateY(0); }
.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.portfolio-meta h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.portfolio-meta p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
}
.portfolio-cta { text-align: center; }
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card--big { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--big { grid-column: auto; }
}

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.adv-card {
  padding: 1.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  transition: all 0.25s ease;
  position: relative;
}
.adv-card:hover {
  background: rgba(255, 106, 26, 0.08);
  border-color: rgba(255, 106, 26, 0.5);
  transform: translateY(-3px);
}
.adv-num {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.adv-card h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.adv-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
@media (max-width: 1000px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .adv-grid { grid-template-columns: 1fr; } }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--yellow);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-card blockquote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: normal;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.review-author strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
}
.review-author span {
  font-size: 12.5px;
  color: var(--muted);
}
.review-card--highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  border-color: transparent;
  justify-content: center;
  text-align: center;
}
.review-card--highlight p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.review-big-num {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  color: var(--yellow);
}
.review-link {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.review-link:hover { background: var(--white); color: var(--orange); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text .section-title { text-align: left; }
.about-text .eyebrow { display: inline-block; }
.about-text p {
  margin-top: 1.25rem;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats > div {
  display: flex;
  flex-direction: column;
}
.about-stats strong {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.about-stats span {
  font-size: 13px;
  color: var(--muted);
}
.about-card {
  background: var(--orange-soft);
  border-radius: var(--r-xl);
  position: relative;
  border: 1px solid rgba(255, 106, 26, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #14181F;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-card:hover .about-photo img {
  transform: scale(1.03);
}
.about-photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(20, 24, 31, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 106, 26, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-photo-badge strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.about-photo-badge span {
  color: var(--yellow, #FFC83D);
  font-size: 13px;
  font-weight: 600;
}
.about-quote {
  padding: 1.75rem 1.75rem 2rem;
}
.about-quote-mark {
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.about-card p {
  font-size: 16px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4 / 4.2; }
  .about-photo img { object-position: center 20%; }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-left .section-title { text-align: left; }
.contact-left .eyebrow { display: inline-block; }
.contact-sub {
  margin-top: 1.25rem;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.contact-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  transition: all 0.2s ease;
}
a.contact-line:hover { border-color: var(--orange); background: rgba(255, 106, 26, 0.1); }
.contact-line svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-line strong {
  display: block;
  font-size: 15.5px;
  color: var(--white);
  font-weight: 700;
}
.contact-line small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  padding: 2.5rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.form-sub {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.field {
  display: block;
  margin-bottom: 1.1rem;
}
.field > span {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field em {
  font-style: normal;
  color: var(--muted-2);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: #FAFAFA;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: all 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-policy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success svg { color: #10B981; margin: 0 auto 1rem; }
.form-success h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.form-success p { color: var(--muted); font-size: 15px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.75rem; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0C0F14;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.logo--footer .logo-main { color: var(--white); }
.logo--footer .logo-sub { color: rgba(255, 255, 255, 0.5); }
.footer-tag {
  margin-top: 1rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}
.site-footer h5 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.site-footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer li, .site-footer a { font-size: 14px; transition: color 0.15s; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2, .8, .2, 1), transform 0.7s cubic-bezier(.2, .8, .2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .pulse { animation: none; }
  .scroll-hint span { animation: none; }
}

/* ============================================================
   QUIZ FORM — пошаговый калькулятор
   ============================================================ */
.quiz-form {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
}
.quiz-header { margin-bottom: 28px; }
.quiz-header h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #0f172a;
  line-height: 1.2;
}
.quiz-header .form-sub {
  color: #475569;
  font-size: 15px;
  margin: 0 0 18px;
}
.quiz-progress {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quiz-progress-bar {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.quiz-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--quiz-progress, 20%);
  background: linear-gradient(90deg, #FF6A1A 0%, #FF8A3D 100%);
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-progress-text {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

.quiz-step {
  display: none;
  animation: quizFadeIn 0.35s ease;
}
.quiz-step--active { display: block; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-options--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option-card {
  display: block;
  background: #f8fafc;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 18px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
}
.quiz-option-card:hover {
  background: #fff;
  border-color: #FFD0B0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 26, 0.12);
}
.quiz-option-card input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-option-card:has(input:checked) {
  background: #fff7f0;
  border-color: #FF6A1A;
  box-shadow: 0 8px 24px rgba(255, 106, 26, 0.18);
}
.quiz-option-icon { font-size: 32px; margin-bottom: 8px; }
.quiz-option-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.quiz-option-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
.quiz-option-price {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #FF6A1A;
}

.quiz-option-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quiz-option-row input {
  width: 22px;
  height: 22px;
  accent-color: #FF6A1A;
  flex-shrink: 0;
}
.quiz-option-row:hover {
  background: #fff;
  border-color: #FFD0B0;
}
.quiz-option-row:has(input:checked) {
  background: #fff7f0;
  border-color: #FF6A1A;
}
.quiz-option-row .quiz-option-title { text-align: left; margin: 0 0 2px; }
.quiz-option-row .quiz-option-desc { text-align: left; }

/* Слайдер площади */
.quiz-slider-wrap {
  background: #f8fafc;
  border-radius: 18px;
  padding: 28px 24px 20px;
  margin-bottom: 20px;
}
.quiz-slider-value {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #FF6A1A;
  line-height: 1;
  margin-bottom: 22px;
}
.quiz-slider-value .quiz-slider-unit {
  font-size: 20px;
  color: #94a3b8;
  font-weight: 600;
  margin-left: 4px;
}
.quiz-slider {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #FF6A1A var(--slider-fill, 20%), #e2e8f0 var(--slider-fill, 20%));
  border-radius: 999px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.quiz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 4px solid #FF6A1A;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(255, 106, 26, 0.3);
  transition: transform 0.15s ease;
}
.quiz-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.quiz-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: #fff;
  border: 4px solid #FF6A1A;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(255, 106, 26, 0.3);
}
.quiz-slider-range {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}
.quiz-quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quiz-quick-pick {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.18s ease;
}
.quiz-quick-pick:hover {
  border-color: #FF6A1A;
  color: #FF6A1A;
  background: #fff7f0;
}
.quiz-quick-pick.is-active {
  background: #FF6A1A;
  border-color: #FF6A1A;
  color: #fff;
}

/* Результат расчёта */
.quiz-result {
  background: linear-gradient(135deg, #FF6A1A 0%, #FF8A3D 100%);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 16px 40px rgba(255, 106, 26, 0.3);
}
.quiz-result-label {
  font-size: 14px;
  opacity: 0.92;
  margin-bottom: 8px;
  font-weight: 600;
}
.quiz-result-price {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.quiz-result-note {
  font-size: 13px;
  opacity: 0.88;
  line-height: 1.45;
}

/* Согласие */
.quiz-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  cursor: pointer;
}
.quiz-consent input {
  width: 18px;
  height: 18px;
  accent-color: #FF6A1A;
  flex-shrink: 0;
  margin-top: 2px;
}
.quiz-consent a { color: #FF6A1A; text-decoration: underline; }

/* Навигация */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}
.quiz-nav .btn-ghost {
  background: transparent;
  color: #64748b;
  border: none;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.quiz-nav .btn-ghost:hover { background: #f1f5f9; color: #0f172a; }
.quiz-btn-next, .quiz-btn-submit { margin-left: auto; }

/* Мобильная адаптация квиза */
@media (max-width: 640px) {
  .quiz-form { padding: 24px 18px; border-radius: 20px; }
  .quiz-header h3 { font-size: 22px; }
  .quiz-options--grid { grid-template-columns: 1fr; }
  .quiz-option-card { padding: 16px 14px; }
  .quiz-slider-value { font-size: 40px; }
  .quiz-result-price { font-size: 24px; }
}

/* ============================================================
   FLOATING MESSENGER BUTTONS
   ============================================================ */
.float-messengers {
  position: fixed;
  right: 18px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 95;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28); }
.float-btn--wa { background: #25D366; }
.float-btn--tg { background: #229ED9; }
.float-btn--vk { background: #0077FF; }
.float-btn svg { width: 28px; height: 28px; }
.float-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.35;
  z-index: -1;
  animation: floatPulse 2.2s ease-out infinite;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 640px) {
  .float-messengers { right: 12px; bottom: 14px; gap: 10px; }
  .float-btn { width: 52px; height: 52px; }
  .float-btn svg { width: 26px; height: 26px; }
}

/* ============================================================
   COOKIES BANNER
   ============================================================ */
.cookies-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 100;
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookies-banner.is-visible { transform: translateY(0); }
.cookies-banner-text {
  flex: 1;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}
.cookies-banner-text a { color: #FF6A1A; text-decoration: underline; }
.cookies-banner-btn {
  background: #FF6A1A;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.cookies-banner-btn:hover { background: #E85C0F; }
@media (max-width: 640px) {
  .cookies-banner { flex-direction: column; align-items: stretch; padding: 16px; gap: 12px; }
  .cookies-banner-btn { width: 100%; }
}

/* Fix: атрибут hidden должен скрывать элементы даже когда явно задан display */
[hidden] { display: none !important; }
