/* ============================================================
   main.css — Александр | Инженер по производственному оборудованию
   ============================================================ */

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

:root {
  --bg:          #0c0f14;
  --bg2:         #111520;
  --bg3:         #161c27;
  --surface:     #1a2130;
  --border:      rgba(255,255,255,0.07);
  --amber:       #e8a020;
  --amber-dim:   rgba(232,160,32,0.12);
  --amber-glow:  rgba(232,160,32,0.07);
  --text:        #e2e8f0;
  --muted:       #7a8a9e;
  --radius:      10px;
  --radius-lg:   18px;
  --trans:       0.22s ease;
}

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

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

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

/* ── Typography ───────────────────────────────────────────── */
.font-heading { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.font-mono    { font-family: 'Roboto Mono', monospace; }

h1, h2, h3 { line-height: 1.2; }

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: #0c0f14;
}
.btn-primary:hover { background: #f0b030; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.35); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }

.btn-ghost {
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(232,160,32,0.25);
}
.btn-ghost:hover { background: rgba(232,160,32,0.2); }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,15,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}

.nav--scrolled { background: rgba(12,15,20,0.98); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav__logo span { color: var(--amber); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  padding: 10px 20px;
  font-size: 0.875rem;
}

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

/* ── Mobile nav ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 20px;
  }
  .nav__links.open { display: flex; }
  .nav__cta { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.055) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Hero inner grid ── */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

/* ── Eyebrow ── */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  white-space: nowrap;
}
.hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── H1 ── */
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1.06;
  margin-bottom: 20px;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

/* ── Subtitle ── */
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

/* ── Feature list ── */
.hero__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
}
.hero__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}
.hero__feat-check {
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTAs ── */
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* ── Price bar ── */
.hero__pricebar {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__priceitem {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__priceitem strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}
.hero__priceitem span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero__price-sep {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

/* ── Photo column ── */
.hero__photo {
  position: relative;
}

/* Photo card */
.photo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-card__live {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(12,15,20,0.88);
  backdrop-filter: blur(10px);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.pulse-dot {
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-anim 2s infinite;
}
@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ── SECTION common ───────────────────────────────────────── */
section { padding: 80px 0; }
section + section { border-top: 1px solid var(--border); }

.section-tag {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before { content: '//'; opacity: 0.6; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 48px;
}

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust {
  background: var(--bg2);
  padding: 60px 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.trust__item {
  text-align: center;
  padding: 36px 20px;
  background: var(--surface);
  position: relative;
}
.trust__item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.trust__item:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }

.trust__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--amber);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.trust__label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 140px;
  margin: 0 auto;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.service-card a.service-card {
  cursor: pointer;
}

.service-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
}

.service-card__link {
  font-size: 0.8rem;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap var(--trans);
}
.service-card:hover .service-card__link { gap: 8px; }

a.service-card-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}

.services__more {
  text-align: center;
  margin-top: 8px;
}

/* ── WHY ME ───────────────────────────────────────────────── */
.why { background: var(--bg2); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--trans);
}

.why-card:hover {
  border-color: rgba(232,160,32,0.25);
  background: var(--surface);
}

.why-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--amber-dim);
  line-height: 1;
  margin-bottom: 12px;
  border: 1px solid rgba(232,160,32,0.15);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--amber);
}

.why-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.why-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how { background: var(--bg); }

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

.how__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
  opacity: 0.3;
  z-index: 0;
}

.step {
  padding: 32px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 1.5px solid rgba(232,160,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--amber);
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--bg2); }

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

.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__text strong {
  color: var(--text);
}

.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chip {
  padding: 6px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── CASES ────────────────────────────────────────────────── */
.cases { background: var(--bg); }

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

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-card__photo {
  height: 220px;
  background: var(--bg3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.case-card__photo .icon { font-size: 2.4rem; }

.case-card__body {
  padding: 20px;
}

.case-card__body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.case-card__body p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--bg2); }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item.open { border-color: rgba(232,160,32,0.25); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 0.975rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  gap: 16px;
  transition: var(--trans);
}

.faq-item__q:hover { color: var(--amber); }

.faq-item__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--amber);
  transition: transform var(--trans);
  line-height: 1;
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}

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

.faq-item__a p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing { background: var(--bg); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card--featured {
  border-color: var(--amber);
  background: var(--bg3);
  position: relative;
}

.price-card--featured::before {
  content: 'Популярно';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0c0f14;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

.price-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.price-card__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--amber);
  letter-spacing: 0.03em;
  line-height: 1;
}

.price-card__sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -8px;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}

.price-card__features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { background: var(--bg2); }

.testimonials__empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  margin: 0 auto;
}

.testimonials__empty .icon { font-size: 2.5rem; margin-bottom: 16px; }
.testimonials__empty p { color: var(--muted); font-size: 0.95rem; }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-section { background: var(--bg); }

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

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}

.blog-card:hover {
  border-color: rgba(232,160,32,0.25);
  transform: translateY(-4px);
}

.blog-card__meta {
  padding: 8px 16px;
  background: var(--bg3);
  font-size: 0.75rem;
  color: var(--muted);
  font-family: 'Roboto Mono', monospace;
  border-bottom: 1px solid var(--border);
}

.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
}

.blog-card__read {
  font-size: 0.8rem;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, #c87820 100%);
  padding: 80px 0;
}

.cta-banner__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #0c0f14;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(12,15,20,0.7);
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: #0c0f14;
  color: var(--amber);
}
.cta-banner .btn-primary:hover { background: #1a2130; }

.cta-banner .btn-outline {
  color: #0c0f14;
  border-color: rgba(12,15,20,0.3);
}
.cta-banner .btn-outline:hover { background: rgba(12,15,20,0.1); }

.cta-banner__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { background: var(--bg2); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--trans);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--amber); }

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

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  color: #22c55e;
  font-size: 1rem;
  font-weight: 600;
}

/* Contact sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--trans);
}

.contact-info__card:hover { border-color: rgba(232,160,32,0.25); }

.contact-info__card a {
  color: var(--text);
  transition: color var(--trans);
}

.contact-info__card a:hover { color: var(--amber); }

.contact-info__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__detail strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-info__detail span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--amber); }

.footer__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contacts a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer__contacts a:hover { color: var(--amber); }

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--bg);
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--muted);
  padding-bottom: 20px;
}

.breadcrumb__inner a { transition: color var(--trans); }
.breadcrumb__inner a:hover { color: var(--amber); }
.breadcrumb__inner .sep { opacity: 0.4; }
.breadcrumb__inner .current { color: var(--text); }

/* ── SERVICE PAGE HERO ────────────────────────────────────── */
.service-hero {
  background: var(--bg);
  padding: 0 0 60px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero__inner {
  max-width: 800px;
}

.service-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--text);
}

.service-hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 28px;
}

/* ── ARTICLE ──────────────────────────────────────────────── */
.article { background: var(--bg); }

.article__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.article__content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 36px 0 14px;
}

.article__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}

.article__content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.article__content ul li {
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.6;
}

.article__content strong { color: var(--text); }

.article__lead {
  font-size: 1.1rem;
  color: var(--text);
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Author box */
.author-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

.author-box img {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
}

.author-box__text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-box__text span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Article sidebar */
.article__sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.sidebar-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.sidebar-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-card ul li a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--trans);
}
.sidebar-card ul li a:hover { color: var(--amber); }

/* ── BLOG LISTING ─────────────────────────────────────────── */
.blog-listing { background: var(--bg); }

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

.coming-soon {
  opacity: 0.5;
  cursor: default;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--bg3);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--muted);
  border: 1px solid var(--border);
}

.blog-badge--new {
  background: var(--amber-dim);
  color: var(--amber);
  border-color: rgba(232,160,32,0.2);
}

/* ── ANIMATION ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── SERVICES OVERVIEW ────────────────────────────────────── */
.services-overview { background: var(--bg); }

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

.svc-overview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--trans);
  display: block;
  text-decoration: none;
  color: inherit;
}

.svc-overview-card:hover {
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-4px);
}

.svc-overview-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.svc-overview-card h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.svc-overview-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.svc-overview-card .arrow { font-size: 0.8rem; color: var(--amber); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { order: -1; }
  .photo-card img { height: 400px; }
  .hero__features { grid-template-columns: 1fr; }
  .hero__pricebar { flex-direction: column; }
  .hero__price-sep { width: 100%; height: 1px; align-self: auto; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .trust__item:nth-child(2) { border-radius: 0; }
  .trust__item:nth-child(3) { border-radius: 0; }
  .trust__item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .how__steps::before { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { order: -1; }
  .about__photo img { height: 340px; }
  .cases__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .article__layout { grid-template-columns: 1fr; }
  .article__sidebar { position: static; }
  .services-overview__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }
  .hero h1 { font-size: 2.2rem; }
  .photo-card img { height: 340px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog-listing__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-radius: 0 !important; }
  .trust__item:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .trust__item:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; }
  .services-overview__grid { grid-template-columns: 1fr; }

}
