/* БАЗОВЫЕ ПЕРЕМЕННЫЕ (НЕ ЦВЕТА) */
:root {
  --radius-xl: 20px;
  --radius-full: 999px;
  --gap-lg: 32px;
  --gap-md: 20px;
  --gap-sm: 12px;
  --max-width: 1040px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
}

/* === DARK THEME ПЕРЕМЕННЫЕ === */
body.theme-dark {
  --bg-body: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000 100%);
  --bg-header: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.88),
    rgba(15, 23, 42, 0.35),
    transparent
  );
  --bg-card: rgba(15, 23, 42, 0.98);
  --bg-card-strong: radial-gradient(
    circle at top left,
    rgba(56, 189, 248, 0.22),
    rgba(15, 23, 42, 0.98)
  );
  --bg-section: rgba(15, 23, 42, 0.96);
  --bg-footer: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 1)
  );
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --border-strong: rgba(148, 163, 184, 0.6);
}

/* === LIGHT THEME ПЕРЕМЕННЫЕ === */
body.theme-light {
  --bg-body: #f9fafb;
  --bg-header: rgba(249, 250, 251, 0.9);
  --bg-card: #ffffff;
  --bg-card-strong: #ffffff;
  --bg-section: #f9fafb;
  --bg-footer: #f9fafb;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --text-main: #111827;
  --text-soft: #6b7280;
  --border-subtle: rgba(156, 163, 175, 0.6);
  --border-strong: rgba(107, 114, 128, 0.9);

  /* более мягкая общая тень для светлой темы */
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.14);
}

/* === ГЛОБАЛЬНЫЕ СТИЛИ === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Лэйаут страницы */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 16px 48px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: var(--bg-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 16px 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
}

body.theme-light .logo-mark {
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

.logo-mark::before {
  content: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text-main {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.logo-line-top,
.logo-line-bottom {
  display: block;
}

.logo-line-bottom {
  letter-spacing: 0.24em;
}

.logo-text-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-soft);
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-bottom-color: rgba(148, 163, 184, 0.8);
  color: var(--text-main);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* фиксируем высоту и центрируем текст строго по центру */
  min-height: 32px;
  padding: 0 18px;

  border-radius: var(--radius-full);
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: radial-gradient(
    circle at top left,
    var(--accent-soft),
    rgba(15, 23, 42, 0.95)
  );
  color: #e0f2fe;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1; /* без лишних «воздухов» сверху/снизу */
}

.nav-cta:hover {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

/* кнопка переключения темы */
.theme-toggle {
  width: 32px;
  height: 32px;
  padding: 0;
  margin-left: 4px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.45);
  transition: background 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

/* цвета солнышка */
.theme-toggle-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

/* в тёмной теме — светлое солнышко */
body.theme-dark .theme-toggle {
  color: #f9fafb;
}

/* в светлой теме — тёмное солнышко и светлый фон */
body.theme-light .theme-toggle {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
}

.theme-toggle:hover {
  border-color: var(--border-strong);
}

/* бургер по умолчанию скрыт (только десктоп) */
.nav-burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.45);
  position: relative;

  align-items: center;
  justify-content: center;
}

/* три полоски, выровненные по центру */
.nav-burger span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-soft);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

/* исходное положение: верх, центр, низ */
.nav-burger span:nth-child(1) {
  transform: translateY(-5px);
}

.nav-burger span:nth-child(2) {
  transform: translateY(0);
}

.nav-burger span:nth-child(3) {
  transform: translateY(5px);
}

/* открытое меню: крестик ровно по центру */
body.nav-open .nav-burger span:nth-child(1) {
  transform: rotate(45deg);
}

body.nav-open .nav-burger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-burger span:nth-child(3) {
  transform: rotate(-45deg);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--gap-lg);
  align-items: center;
  margin-top: 32px;
  margin-bottom: 40px;
}

.hero-left {
  padding: 20px 22px;
  border-radius: calc(var(--radius-xl) * 1.2);
  background: var(--bg-card-strong);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.8);
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 12px;
}

body.theme-light .hero-pill {
  background: #eef2ff;
  border-color: rgba(129, 140, 248, 0.5);
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.hero-title {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  margin: 0 0 12px;
}

.hero-title span {
  color: #7dd3fc;
}

body.theme-light .hero-title span {
  color: #2563eb;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-primary {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 0;
  background: radial-gradient(
    circle at top,
    #38bdf8,
    #0ea5e9 55%,
    #1d4ed8 100%
  );
  color: #0b1120;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(8, 47, 73, 0.8);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 36px rgba(8, 47, 73, 0.9);
}

.btn-ghost {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.8);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
  cursor: pointer;
  text-decoration: none;
}

body.theme-light .btn-ghost {
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 0.95);
}

body.theme-light .btn-ghost:hover {
  background: #e5e7eb;
}

.hero-audit-note {
  font-size: 11px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 10px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  color: var(--text-soft);
}

.hero-meta-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid var(--border-subtle);
}

body.theme-light .hero-meta-badge {
  background: #e5e7eb;
}

/* hero right */
.hero-right {
  padding: 18px 18px 20px;
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.98)
  );
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.theme-light .hero-right {
  background: #ffffff;
}

.hero-right-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.hero-right-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
}

.hero-swatch {
  padding: 10px;
  border-radius: 14px;
  background: radial-gradient(
    circle at top,
    rgba(30, 64, 175, 0.9),
    rgba(15, 23, 42, 1)
  );
  border: 1px solid rgba(148, 163, 184, 0.3);
}

body.theme-light .hero-swatch {
  background: #f9fafb;
}

.hero-swatch h4 {
  margin: 0 0 4px;
  font-size: 12px;
}

.hero-swatch p {
  margin: 0;
  font-size: 11px;
  color: var(--text-soft);
}

.hero-swatch-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #bfdbfe;
  margin-bottom: 4px;
}

body.theme-light .hero-swatch-tag {
  color: #2563eb;
}

.hero-note {
  font-size: 11px;
  color: var(--text-soft);
  border-radius: 14px;
  border: 1px dashed var(--border-subtle);
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.85);
}

body.theme-light .hero-note {
  background: #eef2ff;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right {
    order: -1;
  }
}

/* ОБЩИЕ СЕКЦИИ */
section {
  margin-bottom: 40px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.section-title {
  font-size: 20px;
  margin: 0 0 10px;
}

.section-lead {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 18px;
}

/* СЕРВИСЫ и VALUE */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-md);
}

.service-card {
  padding: 14px 14px 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(to bottom right, var(--bg-card), var(--bg-card));
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.8);
  font-size: 13px;
}

body.theme-light .service-card {
  box-shadow: 0 6px 16px rgba(148, 163, 184, 0.22);
}

.service-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
}

.service-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.service-body {
  font-size: 12px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* TOOLS */
.tools-line {
  font-size: 13px;
  color: var(--text-soft);
}

/* ПОРТФОЛИО */
.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
  gap: var(--gap-md);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.project-card {
  padding: 16px 16px 18px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, var(--bg-card), var(--bg-card));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

.project-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.project-title-block {
  max-width: 70%;
}

.project-title {
  font-size: 15px;
  margin: 0 0 4px;
}

.project-sub {
  font-size: 12px;
  color: var(--text-soft);
  margin: 0;
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--text-soft);
}

.badge--accent {
  border-color: rgba(56, 189, 248, 0.7);
  color: #bae6fd;
  background: rgba(8, 47, 73, 0.85);
}

body.theme-light .badge--accent {
  background: #eff6ff;
  color: #1d4ed8;
}

.project-links {
  font-size: 11px;
  margin-bottom: 10px;
}

.project-links a {
  color: #7dd3fc;
}

body.theme-light .project-links a {
  color: #2563eb;
}

.project-links a:hover {
  text-decoration: underline;
}

.project-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 14px;
}

@media (max-width: 720px) {
  .header-inner {
    padding: 8px 10px 6px;
  }

  .logo-text-sub {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 10px;
    margin-top: 8px;
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    z-index: 40;

    /* около половины экрана телефона */
    width: min(360px, 60vw);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .main-nav .nav-cta {
    font-size: 18px;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .main-nav a {
    display: block;
    padding: 4px 0;
  }

  .main-nav .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .main-nav .theme-toggle {
    align-self: flex-end;
    margin-top: 4px;
  }

  .page-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    margin-top: 20px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }
}

.project-desc {
  font-size: 13px;
  color: var(--text-soft);
}

.project-list-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.project-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
}

.project-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.project-checkmark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 2px;
}

body.theme-light .project-checkmark {
  border-color: #2563eb;
  color: #2563eb;
}

.project-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  font-size: 12px;
}

.project-mini {
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(to right, var(--bg-card), var(--bg-card));
  border: 1px solid var(--border-subtle);
}

.project-mini-title {
  font-size: 13px;
  margin: 0 0 4px;
}

.project-mini-sub {
  margin: 0 0 6px;
  color: var(--text-soft);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-md);
  font-size: 12px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.process-step {
  padding: 12px 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.process-step-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.process-step-title {
  font-size: 13px;
  margin: 0 0 4px;
}

.process-step-body {
  margin: 0;
  color: var(--text-soft);
}

/* ABOUT + CONTACT */
.about-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--gap-md);
}

@media (max-width: 900px) {
  .about-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-card,
.contact-card {
  padding: 16px 16px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, var(--bg-card), var(--bg-card));
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}

.about-card p {
  margin-top: 0;
  color: var(--text-soft);
}

.about-list {
  font-size: 13px;
  color: var(--text-soft);
  padding-left: 16px;
}

.team-name {
  font-size: 13px;
  font-weight: 600;
}

.team-role {
  font-size: 12px;
  color: var(--text-soft);
}

.team-text {
  font-size: 12px;
  color: var(--text-soft);
}

.team-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-section);
}

body.theme-light .team-item {
  background: #ffffff;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  background: #111827;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* две карточки в ряд на широком экране */
.team-mini {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 640px) {
  .team-mini {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* CONTACT FORM */
.contact-label {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.contact-email {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.contact-email a {
  color: #7dd3fc;
}

body.theme-light .contact-email a {
  color: #2563eb;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-audit {
  margin: 10px 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.85);
  font-size: 12px;
}

body.theme-light .contact-audit {
  background: #f3f4f6;
}

.contact-audit-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.contact-audit-list {
  margin: 0 0 6px;
  padding-left: 18px;
  color: var(--text-soft);
}

.contact-audit-list li {
  margin-bottom: 3px;
}

.contact-audit-note {
  font-size: 11px;
  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-label {
  font-size: 12px;
  color: var(--text-soft);
}

.field-input,
.field-textarea {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  padding: 9px 10px;
  color: var(--text-main);
  font: inherit;
  outline: none;
}

body.theme-light .field-input,
body.theme-light .field-textarea {
  background: #ffffff;
}

.field-input:focus,
.field-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.field-textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-note {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 6px;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(30, 64, 175, 0.55);
  margin-top: 40px;
  padding: 14px 16px 18px;
  font-size: 11px;
  color: var(--text-soft);
  text-align: center;
  background: var(--bg-footer);
}
