/* ─────────────────────────────────────────────
    LOAD FONTS
───────────────────────────────────────────── */
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/manrope-v20-cyrillic_latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/manrope-v20-cyrillic_latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/manrope-v20-cyrillic_latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/manrope-v20-cyrillic_latin-700.woff2') format('woff2');
}

/* ─────────────────────────────────────────────
    VARIABLES & RESET
───────────────────────────────────────────── */
:root {
  --navy:       #1B3A6B;
  --navy-deep:  #0D1F3C;
  --navy-mid:   #243F72;
  --gold:       #C8A96E;
  --gold-light: #DFC090;
  --gold-pale:  #F5EDD8;
  --white:      #FFFFFF;
  --off-white:  #F7F8FC;
  --grey-light: #EEF1F7;
  --grey-mid:   #C8CFDC;
  --grey-text:  #6B7896;
  --border:     #E2E6F0;
  --text:       #1A2340;
  --text-body:  #3A4560;

  --font-display: 'Manrope', system-ui, sans-serif; /*Playfair Display*/
  --font-body:    'Manrope', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(27,58,107,.08);
  --shadow-md:  0 6px 24px rgba(27,58,107,.12);
  --shadow-lg:  0 16px 48px rgba(27,58,107,.16);

  --max-w: 1240px;
  --px: clamp(20px, 5vw, 60px);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

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

/* ─────────────────────────────────────────────
    TYPOGRAPHY UTILITIES
───────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}
.section-title span { color: var(--navy); }
.section-subtitle {
  font-size: 17px;
  color: var(--grey-text);
  line-height: 1.7;
  max-width: 560px;
}

/* ─────────────────────────────────────────────
    BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-light); gap: 12px; }
.btn svg { flex-shrink: 0; }


/* ─────────────────────────────────────────────
    HEADER
───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,31,60,.0);
  backdrop-filter: blur(0px);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.header.scrolled {
  background: rgba(13,31,60,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { color: var(--navy-deep); }
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-text span { color: var(--gold); }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav a:hover, .nav a.active, .nav a.nav-current {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone svg { color: var(--gold); }
.header-right .btn {
  padding: 8px 16px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
/* {{navigation}} generates <ul class="nav"> — override desktop nav styles */
.mobile-menu .nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.mobile-menu .nav li { width: 100%; text-align: center; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: inline-block;
}
.mobile-menu a:hover,
.mobile-menu a.nav-current { background: rgba(255,255,255,.08); color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 10px; right: 18px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ─────────────────────────────────────────────
    BLOCK 1 — HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(27,58,107,.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(200,169,110,.08) 0%, transparent 60%),
    linear-gradient(135deg, #0D1F3C 0%, #162E5A 50%, #0D1F3C 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,.12) 0%, transparent 65%);
  border-radius: 50%;
}

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

/* Hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.25);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 3px 3px;
}
.hero-form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.hero-form-sub {
  font-size: 13px;
  color: var(--grey-text);
  margin-bottom: 24px;
}
.hero-form-sub strong { color: var(--gold); }

.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-text);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-input, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,.08);
}
.form-input::placeholder { color: var(--grey-mid); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7896' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,58,107,.3);
}
.form-privacy {
  font-size: 11px;
  color: var(--grey-text);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-privacy a { color: var(--navy); text-decoration: underline; }


/* ─────────────────────────────────────────────
    BLOCK 2 — STATS
───────────────────────────────────────────── */
.stats {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}


/* ─────────────────────────────────────────────
    SECTION WRAPPER
───────────────────────────────────────────── */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy-deep); }
.section-header {
  margin-bottom: 52px;
}
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-header.center .section-subtitle { margin: 12px auto 0; }
.section-header .section-subtitle { margin-top: 12px; }


/* ─────────────────────────────────────────────
    BLOCK 3 — SERVICES
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: var(--grey-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
}
.service-icon svg { color: var(--white); }
.service-card:hover .service-icon svg { color: var(--navy-deep); }

.service-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
  transition: var(--transition);
}
.service-link svg { transition: transform .2s ease; }
.service-link:hover { color: var(--gold); }
.service-link:hover svg { transform: translateX(4px); }

.services-cta {
  text-align: center;
  margin-top: 40px;
  padding: 28px;
  background: var(--grey-light);
  border-radius: var(--radius-md);
  border: 1px dashed var(--grey-mid);
}
.services-cta p {
  font-size: 15px;
  color: var(--grey-text);
  margin-bottom: 14px;
}
.services-cta p strong { color: var(--text); }


/* ─────────────────────────────────────────────
    BLOCK 4 — HOW WE WORK
───────────────────────────────────────────── */
.steps { background: var(--navy-deep); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.3) 20%, rgba(200,169,110,.3) 80%, transparent);
}
.step-item {
  padding: 0 24px;
  text-align: center;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(200,169,110,.1);
  border: 1.5px solid rgba(200,169,110,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-item:hover .step-number {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
    BLOCK 5 — REVIEWS
───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--grey-mid);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg { color: var(--gold); }
.review-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.review-meta {
  font-size: 12px;
  color: var(--grey-text);
}
.reviews-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.platform-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-text);
  border: 1.5px solid var(--grey-mid);
  border-radius: 100px;
  padding: 8px 16px;
  transition: var(--transition);
}
.platform-link:hover { color: var(--navy); border-color: var(--navy); }


/* ─────────────────────────────────────────────
    BLOCK 6 — TEAM
───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  transition: var(--transition);
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--grey-light) 0%, var(--grey-mid) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--grey-text);
  font-size: 13px;
}
.team-photo-placeholder svg { color: var(--grey-mid); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.team-photo img {
  height: 100%;
  object-fit: cover;
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.team-overlay-btn {
  width: 100%;
  padding: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
}
.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--grey-text);
  margin-bottom: 6px;
}
.team-exp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--grey-light);
  padding: 4px 10px;
  border-radius: 100px;
}


/* ─────────────────────────────────────────────
    BLOCK 7 — CTA FORM SECTION
───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #162E5A 50%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.cta-left .section-title { color: var(--white); }
.cta-left .section-subtitle { color: rgba(255,255,255,.55); max-width: 440px; }

.cta-contacts {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-contact-icon svg { color: var(--gold); }
.cta-contact-label {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cta-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.cta-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.cta-form-card .form-input,
.cta-form-card .form-select {
  background-color: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.cta-form-card .form-input::placeholder { color: rgba(255,255,255,.3); }
.cta-form-card .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
.cta-form-card .form-select option { color: var(--text); background: #fff; }
.cta-form-card .form-label { color: rgba(255,255,255,.5); }
.cta-form-card .form-input:focus,
.cta-form-card .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.1);
}
.cta-form-card textarea.form-input {
  resize: vertical;
  min-height: 80px;
}
.cta-form-card .form-submit {
  background: var(--gold);
  color: var(--navy-deep);
}
.cta-form-card .form-submit:hover {
  background: var(--gold-light);
}
.cta-form-card .form-privacy { color: rgba(255,255,255,.3); }
.cta-form-card .form-privacy a { color: rgba(255,255,255,.5); }


/* ─────────────────────────────────────────────
    BLOCK 8 — FAQ
───────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--grey-mid);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--navy);
}
.faq-item.open .faq-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
}


/* ─────────────────────────────────────────────
    BLOCK 9 — BLOG
───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--grey-mid);
}
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.blog-thumb svg { position: relative; z-index: 1; color: rgba(255,255,255,.2); }
.blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--grey-text);
}
.blog-meta-sep { width: 3px; height: 3px; background: var(--grey-mid); border-radius: 50%; }
.blog-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
  transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--navy); }
.blog-excerpt {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 18px;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.blog-read svg { transition: transform .2s ease; }
.blog-read:hover { color: var(--gold); }
.blog-read:hover svg { transform: translateX(4px); }
.blog-cta { text-align: center; }


/* ─────────────────────────────────────────────
    FLOATING ELEMENTS
───────────────────────────────────────────── */
.float-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-item {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-item:hover { transform: scale(1.1); }
.float-wa { background: #25D366; color: var(--white); }
.float-tg { background: #229ED9; color: var(--white); }
.float-label {
  position: absolute;
  right: 62px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.float-item:hover + .float-label,
.float-item:hover ~ .float-label { opacity: 1; transform: translateX(0); }

/* ─────────────────────────────────────────────
    TOAST NOTIFICATIONS
───────────────────────────────────────────── */
.toast-container { position:fixed;top:24px;right:24px;z-index:9999;display:flex;flex-direction:column;gap:12px;pointer-events:none; }
.toast { display:flex;align-items:flex-start;gap:14px;background:#fff;border-radius:14px;padding:18px 20px;min-width:300px;max-width:400px;box-shadow:0 8px 32px rgba(27,58,107,.18);pointer-events:all;transform:translateX(calc(100% + 32px));opacity:0;transition:transform .35s cubic-bezier(.34,1.56,.64,1),opacity .3s ease; }
.toast.toast-show { transform:translateX(0);opacity:1; }
.toast.toast-hide { transform:translateX(calc(100% + 32px));opacity:0; }
.toast-icon { flex-shrink:0;width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center; }
.toast-success .toast-icon { background:#E8F9EF;color:#1A9E4A; }
.toast-error   .toast-icon { background:#FEF0EF;color:#D93025; }
.toast-body { flex:1;min-width:0; }
.toast-title { font-weight:700;font-size:15px;color:var(--text);margin:0 0 3px; }
.toast-msg { font-size:14px;color:var(--grey-text);line-height:1.5;margin:0; }
.toast-close { flex-shrink:0;background:none;border:none;cursor:pointer;color:var(--grey-text);padding:2px;line-height:1;opacity:.6; }
.toast-close:hover { opacity:1; }
.toast-progress { position:absolute;bottom:0;left:0;height:3px;border-radius:0 0 14px 14px;animation:toast-progress linear forwards; }
.toast-success .toast-progress { background:linear-gradient(90deg,#1A9E4A,#4AC76A); }
.toast-error   .toast-progress { background:linear-gradient(90deg,#D93025,#E85D54); }
@keyframes toast-progress { from { width:100%; } to { width:0%; } }
@media(max-width:480px) {
  .toast-container { top:auto;bottom:80px;right:12px;left:12px; }
  .toast { min-width:0;width:100%; }
}

/* ─────────────────────────────────────────────
    FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal .nav {
  gap: 14px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  transition: var(--transition);
  padding: 0;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); background: none; }


/* ─────────────────────────────────────────────
    RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .hero-form-card { max-width: 480px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::after { display: none; }
  .step-item { padding: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .header .nav { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }
  .header-right .btn { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal .nav { flex-direction: column; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 16px; }
}

/* ─────────────────────────────────────────────
    GUARANTEE STRIP
───────────────────────────────────────────── */
.guarantee-strip {
  background: var(--gold-pale);
  border-top: 1px solid rgba(200,169,110,.25);
  border-bottom: 1px solid rgba(200,169,110,.25);
  padding: 20px 0;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
}
.guarantee-item svg { color: var(--navy); flex-shrink: 0; }
@media (max-width: 768px) {
  .guarantee-inner { gap: 20px; justify-content: flex-start; }
  .guarantee-item { font-size: 13px; }
}


/* ─────────────────────────────────────────────
    PRICING BLOCK
───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--grey-mid);
}
.pricing-card.popular {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-service {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}
.pricing-from { font-size: 13px; color: var(--grey-text); }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.pricing-unit { font-size: 14px; color: var(--grey-text); }
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.4;
}
.pricing-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pricing-note {
  font-size: 12px;
  color: var(--grey-text);
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (max-width: 768px) { .pricing-grid { max-width: 100%; } }


/* ─────────────────────────────────────────────
    CASES BLOCK (кейсы)
───────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--grey-mid);
}
.case-header {
  background: var(--navy-deep);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.2);
  padding: 4px 10px;
  border-radius: 100px;
}
.case-body { padding: 24px; }
.case-situation {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 8px;
}
.case-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-divider {
  height: 1px;
  background: var(--grey-light);
  margin-bottom: 20px;
}
.case-result {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-result-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(27,58,107,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-result-icon svg { color: var(--navy); }
.case-result-label {
  font-size: 11px;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.case-result-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
}
.case-duration {
  font-size: 12px;
  color: var(--grey-text);
  margin-top: 4px;
}
@media (max-width: 1024px) { .cases-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }
@media (max-width: 768px) { .cases-grid { max-width: 100%; } }


/* ─────────────────────────────────────────────
    MOBILE STICKY BAR
───────────────────────────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px;
  gap: 10px;
  height: 70px;
}
.mobile-sticky a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
}
.mobile-sticky-call {
  background: var(--gold);
  color: var(--navy-deep);
}
.mobile-sticky-wa {
  background: #25D366;
  color: var(--white);
}
@media (max-width: 768px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 70px; }
  .float-btn { bottom: 86px; }
}

/* ─────────────────────────────────────────────
PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero { background:var(--navy-deep); position:relative; overflow:hidden; padding:100px 0 60px; }
.page-hero > .container { position:relative; z-index:1; }
.page-hero-inner { padding:40px 0 0; max-width:700px; }
.page-hero-title { font-family:var(--font-display); font-size:clamp(32px,4vw,54px); font-weight:700; color:var(--white); line-height:1.15; margin-bottom:16px; }
.page-hero-sub { font-size:clamp(15px,1.5vw,18px); color:rgba(255,255,255,.6); line-height:1.65; max-width:560px; }
.breadcrumbs { display:flex; align-items:center; gap:8px; font-size:13px; color:rgba(255,255,255,.4); padding-top:88px; }
.breadcrumbs a { color:rgba(255,255,255,.55); transition:color .2s; }
.breadcrumbs a:hover { color:var(--gold); }
.breadcrumbs span { color:rgba(255,255,255,.25); }
.post-meta-hero { display:flex; align-items:center; gap:8px; flex-wrap:wrap; font-size:14px; color:rgba(255,255,255,.5); margin-top:16px; }

/* ─────────────────────────────────────────────
AUTHOR PAGE
───────────────────────────────────────────── */
.author-hero { display:flex; align-items:flex-start; justify-content:space-between; gap:48px; padding:40px 0 0; }
.author-hero-info { flex:1; min-width:0; }
.author-hero-meta { display:flex; flex-wrap:wrap; gap:20px; margin-top:20px; }
.author-meta-item { display:flex; align-items:center; gap:8px; font-size:14px; color:rgba(255,255,255,.55); }
.author-meta-item svg { color:var(--gold); flex-shrink:0; }
.author-meta-item a { color:rgba(255,255,255,.7); transition:color .2s; }
.author-meta-item a:hover { color:var(--gold); }
.author-hero-photo { flex-shrink:0; }
.author-hero-photo img { width:280px; height:280px; object-fit:cover; border-radius:var(--radius-xl); display:block; }
@media(max-width:900px){ .author-hero { flex-direction:column-reverse; align-items:center; text-align:center; } .author-hero-meta { justify-content:center; } .author-hero-photo img { width:200px; height:200px; } }

/* ─────────────────────────────────────────────
SERVICES PAGE
───────────────────────────────────────────── */
.service-card-lg { display:grid; grid-template-columns:80px 1fr; gap:28px; background:var(--white); border:1.5px solid var(--grey-light); border-radius:var(--radius-md); padding:32px; transition:var(--transition); }
.service-card-lg:hover { box-shadow:var(--shadow-md); border-color:var(--grey-mid); }
.service-card-lg-icon { width:80px; height:80px; background:var(--navy); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.service-card-lg-icon svg { color:var(--white); }
.service-card-lg-title { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--text); margin-bottom:8px; }
.service-card-lg-desc { font-size:15px; color:var(--grey-text); line-height:1.6; margin-bottom:16px; }
.service-card-lg-list { display:grid; grid-template-columns:1fr 1fr; gap:8px 24px; margin-bottom:20px; }
.service-card-lg-list li { display:flex; align-items:flex-start; gap:8px; font-size:14px; color:var(--text-body); }
.service-card-lg-list li svg { color:var(--gold); flex-shrink:0; margin-top:2px; }
.services-list { display:flex; flex-direction:column; gap:20px; }
@media(max-width:768px){ .service-card-lg { grid-template-columns:1fr; } .service-card-lg-icon { width:56px; height:56px; } .service-card-lg-list { grid-template-columns:1fr; } }

/* ─────────────────────────────────────────────
ABOUT PAGE
───────────────────────────────────────────── */
.about-story { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-story-text h2 { font-family:var(--font-display); font-size:clamp(26px,3vw,38px); font-weight:700; color:var(--text); margin-bottom:20px; }
.about-story-text p { font-size:16px; color:var(--text-body); line-height:1.75; margin-bottom:16px; }
.about-story-stats { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:32px; }
.about-stat-box { background:var(--grey-light); border-radius:var(--radius-md); padding:20px; text-align:center; }
.about-stat-num { font-family:var(--font-display); font-size:36px; font-weight:700; color:var(--navy); }
.about-stat-num span { color:var(--gold); }
.about-stat-label { font-size:13px; color:var(--grey-text); line-height:1.4; }
.about-visual { background:linear-gradient(135deg,var(--navy-deep),var(--navy-mid)); border-radius:var(--radius-xl); aspect-ratio:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; padding:40px; }
.about-visual svg { color:rgba(200,169,110,.4); }
.about-visual p { color:rgba(255,255,255,.5); font-size:15px; text-align:center; }
.about-visual--photo { padding:0; overflow:hidden; }
.about-visual--photo picture { display:block; width:100%; height:100%; }
.about-visual--photo picture img { width:100%; height:100%; object-fit:cover; display:block; }
.values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.value-card { background:var(--white); border:1.5px solid var(--grey-light); border-radius:var(--radius-md); padding:28px; transition:var(--transition); }
.value-card:hover { box-shadow:var(--shadow-md); border-color:var(--grey-mid); }
.value-icon { width:48px; height:48px; background:var(--navy); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.value-icon svg { color:var(--white); }
.value-title { font-family:var(--font-display); font-size:18px; font-weight:700; color:var(--text); margin-bottom:8px; }
.value-desc { font-size:14px; color:var(--grey-text); line-height:1.6; }
.team-grid-full { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.team-card-full { display:grid; grid-template-columns:160px 1fr; gap:24px; background:var(--white); border:1.5px solid var(--grey-light); border-radius:var(--radius-md); padding:28px; transition:var(--transition); }
.team-card-full:hover { box-shadow:var(--shadow-md); border-color:var(--grey-mid); }
.team-card-full .team-photo { aspect-ratio:3/4; width:160px; border-radius:var(--radius-md); }
.about-photo-placeholder { aspect-ratio:3/4; width:160px; }
.team-bio { font-size:14px; color:var(--grey-text); line-height:1.6; margin-top:10px; }
@media(max-width:1024px){ .about-story { grid-template-columns:1fr; } .values-grid { grid-template-columns:repeat(2,1fr); } .team-grid-full { grid-template-columns:1fr; } }
@media(max-width:600px){ .values-grid { grid-template-columns:1fr; } }
@media(max-width:768px){ .team-card-full { grid-template-columns:1fr; } .about-photo-placeholder { width:100%; aspect-ratio:3/2; } }

/* ─────────────────────────────────────────────
CONTACT PAGE
───────────────────────────────────────────── */
.contacts-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:48px; align-items:start; }
.contacts-info { display:flex; flex-direction:column; gap:20px; }
.contact-block { background:var(--white); border:1.5px solid var(--grey-light); border-radius:var(--radius-md); padding:28px; }
.contact-block-title { font-family:var(--font-display); font-size:18px; font-weight:700; color:var(--text); margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.contact-block-title svg { color:var(--navy); }
.contact-ch { display:flex; align-items:center; gap:12px; padding:12px 0; border-bottom:1px solid var(--grey-light); font-size:15px; }
.contact-ch:last-child { border-bottom:none; padding-bottom:0; }
.contact-ch-icon { width:40px; height:40px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-ch a { font-weight:600; color:var(--navy); transition:var(--transition); }
.contact-ch a:hover { color:var(--gold); }
.contact-ch-desc { font-size:13px; color:var(--grey-text); }
.map-placeholder { background:linear-gradient(135deg,var(--navy-deep),var(--navy-mid)); border-radius:var(--radius-lg); aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:12px; color:rgba(255,255,255,.4); font-size:15px; text-align:center; padding:20px; }
.map-placeholder svg { color:rgba(200,169,110,.35); }
.contact-form-wrap { background:var(--white); border:1.5px solid var(--grey-light); border-radius:var(--radius-md); padding:36px; }
.contact-form-wrap h2 { font-family:var(--font-display); font-size:24px; font-weight:700; color:var(--text); margin-bottom:6px; }
.contact-form-wrap > p { font-size:14px; color:var(--grey-text); margin-bottom:24px; }
.messengers { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:20px; }
.msg-btn { display:flex; align-items:center; gap:10px; padding:14px 16px; border-radius:var(--radius-sm); font-size:14px; font-weight:700; transition:var(--transition); }
.msg-wa { background:#E8F9EF; color:#1a7a3f; }
.msg-wa:hover { background:#25D366; color:var(--white); }
.msg-tg { background:#E3F2FD; color:#1565C0; }
.msg-tg:hover { background:#229ED9; color:var(--white); }
@media(max-width:1024px){ .contacts-grid { grid-template-columns:1fr; } }
@media(max-width:768px){ .messengers { grid-template-columns:1fr; } }

/* ─────────────────────────────────────────────
BLOG PAGE (listing filters)
───────────────────────────────────────────── */
.blog-filters { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:40px; }
.blog-filter-btn { padding:8px 18px; border-radius:100px; font-size:13px; font-weight:600; border:1.5px solid var(--grey-mid); background:transparent; color:var(--grey-text); cursor:pointer; transition:var(--transition); text-decoration:none; }
.blog-filter-btn:hover,.blog-filter-active { background:var(--navy); color:var(--white); border-color:var(--navy); }
.blog-grid-9 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:48px; }
.blog-pagination { display:flex; justify-content:center; gap:8px; margin-bottom:60px; }
.blog-page-btn { width:40px; height:40px; border-radius:var(--radius-sm); border:1.5px solid var(--grey-mid); background:transparent; font-size:14px; font-weight:600; color:var(--grey-text); cursor:pointer; transition:var(--transition); display:flex; align-items:center; justify-content:center; text-decoration:none; }
.blog-page-btn:hover,.blog-page-active { background:var(--navy); color:var(--white); border-color:var(--navy); }
.blog-subscribe { background:var(--navy-deep); border-radius:var(--radius-lg); padding:48px; text-align:center; }
.blog-subscribe h2 { font-family:var(--font-display); font-size:clamp(22px,2.5vw,32px); color:var(--white); margin-bottom:12px; }
.blog-subscribe p { color:rgba(255,255,255,.5); margin-bottom:28px; }
.blog-sub-form { display:flex; gap:12px; max-width:440px; margin:0 auto; }
.blog-sub-form input { flex:1; padding:13px 16px; border-radius:var(--radius-sm); border:none; font-size:15px; }
.blog-sub-form button { padding:13px 24px; background:var(--gold); color:var(--navy-deep); font-weight:700; border:none; border-radius:var(--radius-sm); cursor:pointer; transition:var(--transition); white-space:nowrap; }
.blog-sub-form button:hover { background:var(--gold-light); }
@media(max-width:1024px){ .blog-grid-9 { grid-template-columns:repeat(2,1fr); } }
@media(max-width:768px){ .blog-grid-9 { grid-template-columns:1fr; } .blog-sub-form { flex-direction:column; } }

/* ─────────────────────────────────────────────
404 PAGE
───────────────────────────────────────────── */
.err-page { min-height:100vh; display:flex; align-items:center; background:var(--navy-deep); position:relative; overflow:hidden; }
.err-bg { position:absolute; inset:0; background-image:linear-gradient(rgba(200,169,110,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(200,169,110,.03) 1px,transparent 1px); background-size:60px 60px; }
.err-inner { position:relative; z-index:2; text-align:center; padding:40px 20px; width:100%; }
.err-code { font-family:var(--font-display); font-size:clamp(100px,20vw,180px); font-weight:700; color:transparent; -webkit-text-stroke:2px rgba(200,169,110,.2); line-height:1; margin-bottom:8px; }
.err-title { font-family:var(--font-display); font-size:clamp(24px,3vw,36px); color:var(--white); margin-bottom:16px; }
.err-desc { font-size:17px; color:rgba(255,255,255,.5); max-width:460px; margin:0 auto 40px; line-height:1.65; }
.err-actions { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-bottom:48px; }
.err-links { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.err-link { padding:8px 18px; border-radius:100px; border:1.5px solid rgba(255,255,255,.15); color:rgba(255,255,255,.5); font-size:14px; transition:var(--transition); }
.err-link:hover { border-color:var(--gold); color:var(--gold); }

/* ─────────────────────────────────────────────
GHOST POST CONTENT STYLES
───────────────────────────────────────────── */
.gh-content { font-size:17px; line-height:1.8; color:var(--text-body); }
.gh-content h2 { font-family:var(--font-display); font-size:clamp(22px,2.5vw,30px); font-weight:700; color:var(--text); margin:48px 0 20px; }
.gh-content h3 { font-family:var(--font-display); font-size:clamp(18px,2vw,24px); font-weight:700; color:var(--text); margin:36px 0 16px; }
.gh-content h4 { font-size:18px; font-weight:700; color:var(--text); margin:28px 0 12px; }
.gh-content p { margin-bottom:20px; }
.gh-content ul, .gh-content ol { margin:20px 0 20px 24px; }
.gh-content li { margin-bottom:8px; }
.gh-content ul li { list-style:disc; }
.gh-content ol li { list-style:decimal; }
.gh-content blockquote { border-left:4px solid var(--gold); padding:16px 24px; margin:28px 0; background:var(--grey-light); border-radius:0 var(--radius-sm) var(--radius-sm) 0; font-style:italic; color:var(--text); font-size:18px; line-height:1.6; }
.gh-content a { color:var(--navy); text-decoration:underline; text-decoration-color:var(--gold); text-underline-offset:3px; transition:color .2s; }
.gh-content a:hover { color:var(--gold); }
.gh-content img { max-width:100%; border-radius:var(--radius-md); margin:28px 0; }
.gh-content figure { margin:28px 0; }
.gh-content figcaption { text-align:center; font-size:14px; color:var(--grey-text); margin-top:8px; }
.gh-content table { width:100%; border-collapse:collapse; margin:28px 0; font-size:15px; }
.gh-content th { background:var(--navy); color:var(--white); padding:12px 16px; text-align:left; }
.gh-content td { padding:12px 16px; border-bottom:1px solid var(--grey-light); }
.gh-content tr:nth-child(even) td { background:var(--grey-light); }
.gh-content code { font-family:monospace; background:var(--grey-light); padding:2px 6px; border-radius:4px; font-size:0.9em; color:var(--navy); }
.gh-content pre { background:var(--navy-deep); border-radius:var(--radius-md); padding:24px; overflow-x:auto; margin:28px 0; }
.gh-content pre code { background:none; color:rgba(255,255,255,.85); padding:0; }
.gh-content hr { border:none; border-top:2px solid var(--grey-light); margin:40px 0; }

/* ── Post layout with sidebar ── */
.post-layout-wrap { padding-top:60px; padding-bottom:80px; }
.post-layout { display:grid; grid-template-columns:1fr 300px; gap:60px; align-items:start; }
.post-main {}
.post-feature-image { margin-bottom:40px; }
.post-feature-image picture { display:block; border-radius:var(--radius-lg); overflow:hidden; }
.post-feature-image figcaption { text-align:center; font-size:13px; color:var(--grey-text); padding:8px 0 0; }
.post-tags { display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-top:40px; padding-top:32px; border-top:1px solid var(--grey-light); }
.post-tags-label { font-size:13px; color:var(--grey-text); font-weight:600; }
.post-tag-link { padding:6px 14px; background:var(--grey-light); border-radius:100px; font-size:13px; font-weight:600; color:var(--grey-text); transition:var(--transition); }
.post-tag-link:hover { background:var(--navy); color:var(--white); }
.post-author { margin-top:40px; padding:28px; background:var(--grey-light); border-radius:var(--radius-md); display:flex; gap:20px; align-items:flex-start; }
.post-author a { flex-shrink: 0; }
.post-author-avatar { width:72px; height:72px; border-radius:50%; background:var(--navy); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.post-author-avatar--img { object-fit:cover; }
.post-author-label { font-size:12px; color:var(--grey-text); font-weight:600; text-transform:uppercase; letter-spacing:.05em; margin-bottom:4px; }
.post-author-name { font-family:var(--font-display); font-size:18px; font-weight:700; color:var(--text); margin-bottom:6px; transition:color .2s; }
.post-author-name:hover { color:var(--gold); }
.post-author-bio { font-size:14px; color:var(--text-body); line-height:1.6; margin:0; }

/* Sidebar */
.post-sidebar { position:sticky; top:100px; display:flex; flex-direction:column; gap:20px; }
.sidebar-cta { background:var(--navy-deep); border-radius:var(--radius-md); padding:28px; text-align:center; }
.sidebar-cta-icon { width:52px; height:52px; background:rgba(200,169,110,.15); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; color:var(--gold); }
.sidebar-cta h3 { font-family:var(--font-display); font-size:17px; color:var(--white); margin-bottom:10px; line-height:1.3; }
.sidebar-cta p { font-size:13px; color:rgba(255,255,255,.5); margin-bottom:20px; line-height:1.5; }
.sidebar-cta .btn { width:100%; justify-content:center; font-size:14px; padding:12px 16px; }
.sidebar-card { background:var(--white); border:1.5px solid var(--grey-light); border-radius:var(--radius-md); padding:24px; }
.sidebar-card-title { font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--text); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.sidebar-card-title svg { color:var(--navy); flex-shrink:0; }
.toc-list { list-style:none; display:flex; flex-direction:column; gap:0; padding:0; margin:0; }
.toc-item { display:flex; gap:10px; padding:7px 0; border-bottom:1px solid var(--grey-light); font-size:14px; }
.toc-item:last-child { border-bottom:none; }
.toc-num { font-weight:700; color:var(--gold); font-family:var(--font-display); flex-shrink:0; width:18px; }
.toc-item a { color:var(--text-body); transition:color .2s; line-height:1.4; }
.toc-item a:hover { color:var(--navy); }
.sidebar-share { display:flex; flex-direction:column; gap:8px; }
.share-btn { display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:var(--radius-sm); font-size:14px; font-weight:600; transition:var(--transition); }
.share-wa { background:#E8F9EF; color:#1a7a3f; }
.share-wa:hover { background:#25D366; color:var(--white); }
.share-tg { background:#E3F2FD; color:#1565C0; }
.share-tg:hover { background:#229ED9; color:var(--white); }
.share-vk { background:#EEF1F7; color:#1B3A6B; }
.share-vk:hover { background:#1B3A6B; color:var(--white); }
@media(max-width:1024px) {
.post-layout { grid-template-columns:1fr; }
.post-sidebar { position:static; }
}

/* ── Service Single Page ── */
.svc-hero { position:relative; padding:80px 0 60px; background:linear-gradient(135deg,#0D1F3C 0%,#1B3A6B 100%); overflow:hidden; }
.svc-hero > .container { position:relative; z-index:1; }
.svc-hero-inner { position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:start; }
.svc-hero-badge { display:inline-flex;align-items:center;gap:8px;background:rgba(196,160,80,.15);border:1px solid rgba(196,160,80,.3);border-radius:20px;padding:6px 14px;font-size:13px;font-weight:600;color:var(--gold-light);margin-bottom:16px; }
.svc-hero-title { font-family:var(--font-display);font-size:clamp(32px,4vw,52px);font-weight:700;color:#fff;line-height:1.15;margin:0 0 20px; }
.svc-hero-desc { font-size:17px;color:rgba(255,255,255,.8);line-height:1.7;margin:0 0 32px;max-width:620px; }
.svc-hero-stats { display:flex;gap:32px;flex-wrap:wrap; }
.svc-hero-stat strong { display:block;font-family:var(--font-display);font-size:28px;font-weight:700;color:var(--gold-light); }
.svc-hero-stat span { font-size:13px;color:rgba(255,255,255,.65); }
.svc-hero-cta-box { background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:28px;min-width:260px; }
.svc-hero-cta-box h3 { font-size:17px;font-weight:600;color:#fff;margin:0 0 8px; }
.svc-hero-cta-box p { font-size:14px;color:rgba(255,255,255,.7);margin:0 0 20px; }
.svc-hero-cta-box .btn { width:100%;justify-content:center;margin-bottom:10px; }
.svc-layout { display:grid;grid-template-columns:1fr 320px;gap:48px;align-items:start; }
.svc-sidebar { position:sticky;top:90px;display:flex;flex-direction:column;gap:20px; }
.sidebar-price-card { background:#fff;border:1px solid var(--border);border-radius:16px;padding:24px; }
.sidebar-price-card h3 { font-size:17px;font-weight:700;color:var(--text);margin:0 0 16px; }
.price-rows { display:flex;flex-direction:column;gap:10px; }
.price-row { display:flex;justify-content:space-between;align-items:center;font-size:14px; }
.price-row-name { color:var(--grey-text); }
.price-row-val { font-weight:600;color:var(--text); }
.price-divider { height:1px;background:var(--border);margin:8px 0; }
.sidebar-form { background:linear-gradient(135deg,var(--navy),var(--navy-deep));border-radius:16px;padding:24px; }
.sidebar-form h3 { color:#fff;font-size:17px;font-weight:700;margin:0 0 6px; }
.sidebar-form p { color:rgba(255,255,255,.75);font-size:14px;margin:0 0 20px; }
.sidebar-form .form-input { background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2);color:#fff; }
.sidebar-form .form-input::placeholder { color:rgba(255,255,255,.5); }
.sidebar-form .form-submit { background:var(--gold);color:#fff;width:100%; justify-content: center; }
.sidebar-docs { background:#fff;border:1px solid var(--border);border-radius:16px;padding:24px; }
.sidebar-docs h3 { font-size:16px;font-weight:700;color:var(--text);margin:0 0 14px; }
.doc-list { list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px; }
.doc-list li { display:flex;align-items:center;gap:10px;font-size:14px;color:var(--grey-text); }
.doc-list li svg { color:var(--gold);flex-shrink:0; }
.sub-svc-grid { display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:24px; }
.sub-svc-card { background:#fff;border:1px solid var(--border);border-radius:12px;padding:20px;transition:border-color .2s,box-shadow .2s; }
.sub-svc-card:hover { border-color:var(--gold);box-shadow:0 4px 20px rgba(196,160,80,.12); }
.sub-svc-icon { width:40px;height:40px;border-radius:10px;background:linear-gradient(135deg,#EEF1F7,#fff);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;margin-bottom:12px; }
.sub-svc-title { font-weight:700;font-size:15px;color:var(--text);margin:0 0 6px; }
.sub-svc-desc { font-size:13px;color:var(--grey-text);line-height:1.6;margin:0 0 12px; }
.sub-svc-link { font-size:13px;font-weight:600;color:var(--gold);text-decoration:none;display:inline-flex;align-items:center;gap:4px; }
.sub-svc-link:hover { color:var(--navy); }
.svc-steps { counter-reset:svc-step;list-style:none;padding:0;margin:24px 0 0; }
.svc-steps li { counter-increment:svc-step;display:flex;gap:20px;padding:20px 0;border-bottom:1px solid var(--border); }
.svc-steps li:last-child { border-bottom:none; }
.svc-step-num { flex-shrink:0;width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--navy),var(--navy-deep));color:#fff;font-family:var(--font-display);font-size:18px;font-weight:700;display:flex;align-items:center;justify-content:center; }
.svc-step-num::before { content:counter(svc-step); }
.svc-step-body h4 { font-weight:700;font-size:16px;color:var(--text);margin:0 0 6px; }
.svc-step-body p { font-size:14px;color:var(--grey-text);line-height:1.6;margin:0; }
.svc-checklist { list-style:none;padding:0;margin:16px 0 0; }
.svc-checklist li { display:flex;align-items:flex-start;gap:12px;padding:10px 0;border-bottom:1px solid var(--border);font-size:15px;color:var(--text); }
.svc-checklist li:last-child { border-bottom:none; }
.svc-checklist li::before { content:"";flex-shrink:0;width:20px;height:20px;border-radius:50%;background:linear-gradient(135deg,var(--gold-light),var(--gold));background-image:url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-size:12px;background-repeat:no-repeat;background-position:center;margin-top:2px; }
.svc-adv-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px; }
.svc-adv-card { background:linear-gradient(135deg,#F8F9FC,#fff);border:1px solid var(--border);border-radius:12px;padding:24px;text-align:center; }
.svc-adv-num { font-family:var(--font-display);font-size:36px;font-weight:700;color:var(--gold);margin-bottom:8px; }
.svc-adv-label { font-size:14px;color:var(--grey-text);line-height:1.5; }
.svc-faq { margin-top:24px; }
.svc-faq-item { border:1px solid var(--border);border-radius:12px;overflow:hidden;margin-bottom:12px; }
.svc-faq-q { font-weight:600;font-size:16px;color:var(--text);padding:18px 20px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px; }
.svc-faq-q svg { flex-shrink:0;transition:transform .3s; }
.svc-faq-item.open .svc-faq-q svg { transform:rotate(180deg); }
.svc-faq-a { padding:0 20px 18px;font-size:15px;color:var(--grey-text);line-height:1.7; }
.svc-cases { display:flex;flex-direction:column;gap:16px;margin-top:24px; }
.svc-case-card { background:#fff;border:1px solid var(--border);border-radius:12px;padding:20px;display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:start; }
.svc-case-icon { width:44px;height:44px;border-radius:10px;background:linear-gradient(135deg,var(--navy),var(--navy-deep));display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.svc-case-icon svg { color:#fff; }
.svc-case-body h4 { font-weight:700;font-size:15px;color:var(--text);margin:0 0 4px; }
.svc-case-body p { font-size:14px;color:var(--grey-text);line-height:1.6;margin:0 0 8px; }
.svc-case-result { display:inline-block;font-size:13px;font-weight:600;color:var(--gold);background:rgba(196,160,80,.1);border-radius:6px;padding:3px 10px; }
.section-title-sm { font-family:var(--font-display);font-size:clamp(22px,3vw,30px);font-weight:700;color:var(--text);margin:0; }
@media(max-width:900px) {
.svc-layout { grid-template-columns:1fr; }
.svc-sidebar { position:static; }
.svc-hero-inner { grid-template-columns:1fr; }
.svc-hero-cta-box { display:none; }
.sub-svc-grid { grid-template-columns:1fr; }
.svc-adv-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px) {
.svc-adv-grid { grid-template-columns:1fr; }
}

/* ── Koenig card width classes (required by Ghost) ── */
.kg-width-wide { margin-left: calc(50% - 50vw + 24px); margin-right: calc(50% - 50vw + 24px); width: auto; max-width: calc(100vw - 48px); }
.kg-width-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; max-width: 100vw; }
.kg-image { max-width: 100%; }
.kg-image-card { margin: 28px 0; }
.kg-image-card img { border-radius: var(--radius-md); }
.kg-gallery-card { margin: 28px 0; }
.kg-gallery-container { display: flex; flex-wrap: wrap; gap: 8px; }
.kg-gallery-image img { max-width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.kg-embed-card { margin: 28px 0; }
.kg-embed-card iframe { border-radius: var(--radius-md); }
.kg-bookmark-card { margin: 28px 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 20px; flex: 1; }
.kg-bookmark-title { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.kg-bookmark-description { font-size: 13px; color: var(--grey-text); }
.kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-callout-card { margin: 28px 0; display: flex; gap: 16px; background: var(--grey-light); border-radius: var(--radius-md); padding: 20px; }
.kg-callout-emoji { font-size: 24px; line-height: 1; }
.kg-toggle-card { margin: 28px 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.kg-toggle-heading { padding: 16px 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; }
.kg-toggle-content { padding: 0 20px 16px; }
