/* ============================================
   НАВИГАТОР — Таможенное оформление и ВЭД
   Стили лендинга
   ============================================ */

/* ====== CSS-переменные (бирюзовая → тёмная палитра) ====== */
:root {
  /* Основная палитра */
  --color-accent: #14b8a6;          /* бирюзовый */
  --color-accent-light: #2dd4bf;
  --color-accent-lighter: #5eead4;
  --color-accent-soft: #99f6e4;
  --color-accent-pale: #ccfbf1;
  --color-accent-bg: #f0fdfa;

  /* Тёмная палитра */
  --color-dark: #04201f;            /* самый тёмный */
  --color-dark-2: #0a2e2c;
  --color-dark-3: #0f3b3a;          /* основной тёмный */
  --color-dark-4: #134e4a;          /* тёмный с бирюзой */

  /* Нейтральные */
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-white: #ffffff;

  /* Градиенты */
  --grad-accent: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 50%, #0f3b3a 100%);
  --grad-dark: linear-gradient(135deg, #0f3b3a 0%, #04201f 100%);
  --grad-hero: linear-gradient(135deg, #04201f 0%, #0a2e2c 50%, #0f3b3a 100%);

  /* Тени */
  --shadow-sm: 0 1px 2px rgba(4, 32, 31, 0.06);
  --shadow-md: 0 4px 12px rgba(4, 32, 31, 0.08);
  --shadow-lg: 0 10px 30px rgba(4, 32, 31, 0.12);
  --shadow-accent: 0 10px 30px rgba(20, 184, 166, 0.25);

  /* Радиусы */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Шрифты */
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ====== Базовые сбросы и типографика ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark-3);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-dark-3);
}

p {
  margin: 0 0 1em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====== Контейнер ====== */
.container {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ====== Кнопки ====== */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background: var(--color-dark-3);
  border-color: var(--color-dark-3);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(15, 59, 58, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent-lighter);
  color: var(--color-accent-lighter);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark-3);
  color: var(--color-white);
  border-color: var(--color-dark-3);
}

.btn-dark:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-accent-lighter);
  transform: translateY(-2px);
}

/* ====== Верхняя полоса ====== */
.top-bar {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
  color: var(--color-accent-lighter);
}

.top-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.top-info i {
  color: var(--color-accent);
  margin-right: 6px;
}

/* ====== Шапка ====== */
.header {
  background: var(--color-white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border);
}

.logo-img {
  height: 56px;
  width: auto;
  transition: transform 0.2s ease;
}

.logo-img:hover {
  transform: scale(1.02);
}

.navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-dark-3);
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.2s ease;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

.navbar .nav-link:hover {
  color: var(--color-accent);
}

.navbar .nav-link:hover::after {
  width: 70%;
}

.phone-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark-3) !important;
  background: var(--color-accent-bg);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-accent-pale);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.phone-link i {
  color: var(--color-accent);
  font-size: 18px;
}

.phone-link:hover {
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.phone-link:hover i {
  color: var(--color-white);
}

.navbar-toggler {
  border: 1px solid var(--color-accent-pale);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

/* ====== Hero ====== */
.hero {
  position: relative;
  color: var(--color-white);
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-lighter);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--color-accent-lighter);
  position: relative;
}

.text-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 580px;
}

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

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.hero-bullets i {
  color: var(--color-accent-lighter);
  font-size: 18px;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(94, 234, 212, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--color-accent-lighter);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* ====== Универсальные секции ====== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-light {
  background: var(--color-white);
}

.section-dark {
  background: var(--grad-dark);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-gradient {
  background: linear-gradient(135deg, #0f3b3a 0%, #134e4a 100%);
  color: rgba(255, 255, 255, 0.85);
}

.section-gradient .section-title,
.section-gradient h2,
.section-gradient h3,
.section-gradient h4 {
  color: var(--color-white);
}

.section-accent {
  background: var(--color-accent);
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  color: var(--color-white);
}

.section-accent .section-title,
.section-accent h2,
.section-accent h3,
.section-accent h4 {
  color: var(--color-white);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-eyebrow.light {
  color: var(--color-accent-lighter);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title.light {
  color: var(--color-white);
}

.section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.75);
}

/* ====== Карточки услуг ====== */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-bg), var(--color-accent-pale));
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.05) rotate(-5deg);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--color-border);
  padding-top: 18px;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.service-list li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-size: 16px;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* ====== О компании ====== */
.about-features {
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(94, 234, 212, 0.3);
  color: var(--color-accent-lighter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.about-feature h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--color-accent-pale);
}

/* ====== Преимущества ====== */
.advantage {
  position: relative;
  padding: 28px 24px 28px 70px;
  background: var(--color-accent-bg);
  border: 1px solid var(--color-accent-pale);
  border-radius: var(--radius-md);
  height: 100%;
  transition: all 0.3s ease;
}

.advantage:hover {
  background: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.advantage-num {
  position: absolute;
  left: 20px;
  top: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.advantage:hover .advantage-num {
  opacity: 1;
  transform: scale(1.1);
}

.advantage h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.advantage p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ====== Процесс ====== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}

.process-step {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(94, 234, 212, 0.2);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(94, 234, 212, 0.1);
  border-color: var(--color-accent-lighter);
  transform: translateY(-4px);
}

.process-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.35);
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-lighter);
  font-size: 24px;
  opacity: 0.6;
}

/* ====== Форма обратной связи ====== */
.callback-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.callback-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.callback-list i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--color-white);
  font-size: 22px;
  font-weight: bold;
}

.callback-form {
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(4, 32, 31, 0.25);
  color: var(--color-text);
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark-3);
  margin-bottom: 8px;
}

.form-control {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  background: var(--color-white);
  color: var(--color-text);
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
  outline: none;
}

.form-control::placeholder {
  color: #9ca3af;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

.form-note a {
  color: var(--color-accent);
  text-decoration: underline;
}

.callback-success {
  background: var(--color-white);
  padding: 60px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(4, 32, 31, 0.25);
  text-align: center;
  color: var(--color-text);
}

.callback-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-accent-bg);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.callback-success h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-dark-3);
}

.callback-success p {
  color: var(--color-text-muted);
  margin: 0;
}

/* ====== Контакты ====== */
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  background: var(--color-accent-bg);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.08) rotate(-5deg);
}

.contact-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--color-dark-3);
}

.contact-card p {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-card p a {
  color: var(--color-dark-3);
  font-weight: 600;
  font-family: var(--font-heading);
}

.contact-card p a:hover {
  color: var(--color-accent);
}

.contact-card small {
  color: var(--color-text-muted);
  font-size: 13px;
}

/* ====== Footer ====== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 24px;
}

.footer-logo {
  height: 56px;
  margin-bottom: 18px;
  filter: brightness(1.15);
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}

.footer h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-list i {
  color: var(--color-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--color-accent-lighter);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(94, 234, 212, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--color-accent-lighter);
}

/* ====== Плавающая кнопка "Наверх" ====== */
.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-size: 22px;
  box-shadow: var(--shadow-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  cursor: pointer;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--color-dark-3);
  transform: translateY(-3px);
}

/* ====== Анимация появления ====== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Адаптив ====== */
@media (max-width: 1199.98px) {
  .section {
    padding: 70px 0;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
  .process-arrow {
    display: none;
  }
  .process-arrow:nth-of-type(5) {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .top-bar {
    font-size: 12px;
    padding: 8px 0;
  }
  .top-info {
    gap: 14px;
  }
  .header {
    padding: 10px 0;
  }
  .logo-img {
    height: 48px;
  }
  .navbar-collapse {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }
  .navbar .nav-link {
    padding: 10px 0 !important;
  }
  .navbar .nav-link::after {
    display: none;
  }
  .phone-link {
    margin-top: 12px;
    justify-content: center;
    width: 100%;
  }
  .navbar-nav {
    padding-bottom: 8px;
  }
  .hero {
    padding: 50px 0 70px;
  }
  .section {
    padding: 60px 0;
  }
  .hero-stats {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-bullets {
    flex-direction: column;
    gap: 8px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero-stat {
    padding: 18px 12px;
  }
  .hero-stat-value {
    font-size: 28px;
  }
  .hero-stat-label {
    font-size: 12px;
  }
  .section {
    padding: 50px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .callback-form {
    padding: 26px 22px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-bottom {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 15px;
  }
  .hero-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
  .service-card,
  .advantage,
  .contact-card {
    padding: 24px 20px;
  }
}
