@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-navy: #022E4C;
  --warm-sand: #B38F6F;
  --soft-pearl: #F2F1ED;
  --obsidian: #161616;
  --slate-blue: #517493;
  --burgundy: #710014;
  --muted: #71717a;
  --bg-muted: #f4f4f5;
  --bg-card: #fafafa;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--obsidian);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.navbar-logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}

.navbar-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
  transition: color 0.2s;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.navbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s;
}

.navbar-socials svg {
  width: 16px;
  height: 16px;
}

.navbar-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.navbar-contacts a {
  color: var(--muted);
  transition: color 0.2s;
}
.mobile-menu-btn {
  display: none;
  background: none;
  padding: 8px;
  color: var(--obsidian);
}
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  padding: 16px;
  border-top: 1px solid #e5e5e5;
}
.mobile-menu a {
  display: block;
  padding: 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-menu a.active { color: var(--obsidian); font-weight: 500; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.footer-copy {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px 12px;
  text-align: center;
  font-size: 10px;
  color: rgba(113,113,122,0.4);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 9999px;
  padding: 14px 40px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border: 2px solid var(--burgundy);
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  background: transparent;
  color: var(--obsidian);
  border: 1px solid #d4d4d8;
}
.btn-outline:hover { border-color: var(--obsidian); }
.btn-outline-white {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-navy {
  background: var(--deep-navy);
  color: #fff;
  border: 2px solid var(--deep-navy);
}
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d4d4d8;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-icon:hover { border-color: var(--obsidian); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 16px;
  max-width: 960px;
  margin: 0 auto;
}
.hero-label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-subtitle {
  font-size: 20px;
  opacity: 0.7;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-services span {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hero-services .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: inline-block;
  margin: 0 8px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 112px 0 160px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  max-width: 640px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0 128px;
}
.section-sm { padding: 64px 0 80px; }
.section-muted { background: var(--bg-muted); }
.section-card { background: var(--bg-card); }
.section-pearl { background: var(--soft-pearl); }
.section-dark {
  position: relative;
}
.section-dark-bg {
  position: absolute;
  inset: 0;
}
.section-dark-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.section-dark-content {
  position: relative;
  z-index: 10;
}

.container { padding: 0 24px; }
.container-narrow { max-width: 896px; margin: 0 auto; }

/* ===== TYPOGRAPHY ===== */
.label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.label-white { color: rgba(255,255,255,0.4); }
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}
.section-title .accent-burgundy { color: var(--burgundy); }
.section-title .accent-blue { color: var(--slate-blue); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.text-lg { font-size: 18px; line-height: 1.7; }
.text-xl { font-size: 20px; line-height: 1.6; font-weight: 300; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-14 { margin-bottom: 56px; }
.mb-16 { margin-bottom: 64px; }

/* ===== GRID ===== */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-gap-lg { gap: 32px; }
.grid-gap-xl { gap: 48px; }

/* ===== STAGE CARDS ===== */
.stage-card {
  background: var(--deep-navy);
  border-radius: 16px;
  overflow: hidden;
  padding: 24px 32px;
  transition: transform 0.3s;
}
.stage-card:hover { transform: translateY(-4px); }
.stage-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: #fff;
}
.stage-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--soft-pearl);
  margin-bottom: 12px;
  line-height: 1.3;
  white-space: pre-line;
}
.stage-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* ===== ABOUT HOME SECTION ===== */
.about-home {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}
.about-home-bg {
  position: absolute;
  inset: 0;
}
.about-home-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.about-home-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

/* ===== ADVANTAGE CARDS ===== */
.advantage-card {
  transition: transform 0.3s;
}
.advantage-card:hover { transform: translateY(-4px); }
.advantage-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}
.advantage-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.advantage-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== HORIZONTAL SCROLL ===== */
.hscroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-left: 16px;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll-card {
  flex-shrink: 0;
  width: 256px;
  transition: transform 0.3s;
}
.hscroll-card:hover { transform: translateY(-8px); }
.hscroll-card-img {
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: 16px;
  margin-bottom: 12px;
}
.hscroll-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hscroll-card:hover .hscroll-card-img img { transform: scale(1.1); }
.hscroll-card p { font-size: 16px; color: var(--muted); }

/* ===== FAQ / ACCORDION ===== */
.faq-section {
  position: relative;
  padding: 80px 0 128px;
}
.faq-bg {
  position: absolute;
  inset: 0;
}
.faq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.faq-content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  color: #fff;
}
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 4px 0;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.accordion-trigger svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-trigger.open svg { transform: rotate(180deg); }
.accordion-content {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 24px;
  display: none;
}
.accordion-content.open { display: block; }

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--soft-pearl);
  padding: 80px 0 128px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  padding: 0 24px;
}
.contact-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--obsidian);
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-subtitle {
  font-size: 16px;
  color: rgba(22,22,22,0.6);
  margin-bottom: 48px;
  max-width: 384px;
  line-height: 1.6;
}
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-sand);
  margin-bottom: 12px;
}
.contact-info a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(22,22,22,0.7);
  font-size: 16px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--obsidian); }
.contact-info svg { width: 16px; height: 16px; color: var(--deep-navy); flex-shrink: 0; }
.messenger-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.messenger-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22,22,22,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(22,22,22,0.6);
  transition: background 0.2s;
}
.messenger-icons a:hover { background: rgba(22,22,22,0.1); }
.messenger-icons svg { width: 20px; height: 20px; }

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(22,22,22,0.5);
  margin-bottom: 8px;
}
.form-select,
.form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(22,22,22,0.15);
  background: transparent;
  font-size: 16px;
  color: var(--obsidian);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-select:focus,
.form-input:focus { border-color: rgba(2,46,76,0.4); }
.form-input-box {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid rgba(22,22,22,0.15);
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  color: var(--obsidian);
  font-family: inherit;
  outline: none;
  text-align: center;
  width: 96px;
}
.form-range {
  width: 100%;
  margin-top: 12px;
  accent-color: var(--deep-navy);
}
.form-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(22,22,22,0.3);
  margin-top: 4px;
}
.file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px dashed rgba(22,22,22,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  color: rgba(22,22,22,0.4);
  font-size: 14px;
}
.file-upload svg { width: 16px; height: 16px; }
.file-upload input { display: none; }
.phone-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(22,22,22,0.15);
  padding: 8px 0;
}
.phone-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(22,22,22,0.5);
  flex-shrink: 0;
}
.phone-flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.phone-flag-icon .stripe-white { position: absolute; top: 0; left: 0; right: 0; height: 33%; background: #fff; }
.phone-flag-icon .stripe-blue { position: absolute; top: 33%; left: 0; right: 0; height: 34%; background: #0039A6; }
.phone-flag-icon .stripe-red { position: absolute; bottom: 0; left: 0; right: 0; height: 33%; background: #D52B1E; }
.phone-input input {
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--obsidian);
  font-family: inherit;
  outline: none;
  flex: 1;
  padding: 4px 0;
}
.phone-input input::placeholder { color: rgba(22,22,22,0.3); }
.btn-submit {
  width: 100%;
  margin-top: 16px;
}

/* ===== WORKS PAGE ===== */
.filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent, transparent);
  pointer-events: none;
}
.work-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

/* ===== STAT CARDS ===== */
.stat-card { text-align: center; }
.stat-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-unit {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  margin-left: 4px;
}
.stat-label {
  font-size: 16px;
  color: var(--muted);
}
.stat-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
}

/* ===== TECHNIQUE CARDS ===== */
.tech-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 40px;
}
.tech-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}
.tech-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.tech-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== STEP CARDS ===== */
.step-card {
  background: var(--slate-blue);
  border-radius: 16px;
  padding: 24px 32px;
  color: #fff;
}
.step-card-navy { background: var(--deep-navy); }
.step-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: #fff;
}
.step-card h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* ===== REQUIREMENT LIST ===== */
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.req-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--deep-navy);
}
.req-item span { font-size: 18px; }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: center;
}
.rounded-img {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
}
.rounded-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PRICE CARDS ===== */
.price-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.price-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.price-card:hover img { transform: scale(1.05); }
.price-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  transition: background 0.3s;
}
.price-card:hover .price-card-overlay { background: rgba(0,0,0,0.7); }
.price-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 32px 48px;
}
.price-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.price-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 400px;
}

/* ===== CONTACTS PAGE ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 48px;
}
.contact-card { text-align: center; }
.contact-card-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 20px;
  color: var(--muted);
}
.contact-card h3 {
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-card a,
.contact-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== MAP ===== */
.map-section { width: 100%; }
.map-container { width: 100%; height: 450px; }

/* ===== GALLERY (service cards horizontal) ===== */
.service-hcard {
  flex-shrink: 0;
  width: 256px;
}
.service-hcard-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 16px;
  margin-bottom: 16px;
  background: var(--bg-muted);
}
.service-hcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hcard h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.service-hcard li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== DTF BENEFIT CARDS ===== */
.benefit-card {
  text-align: center;
}
.benefit-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== DTF PROCESS CARDS ===== */
.dtf-process-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px 32px;
}
.dtf-process-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}
.dtf-process-card h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.dtf-process-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
/* ===== ABOUT STORY ===== */
.story-text {
  max-width: 896px;
  margin: 0 auto;
}
.story-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item-img {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  background: var(--bg-muted);
  margin-bottom: 16px;
}
.gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item p {
  font-size: 16px;
  font-weight: 500;
}

/* ===== ABOUT ADVANTAGE CARDS ===== */
.about-adv-card {
  text-align: center;
}
.about-adv-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 24px;
  color: var(--deep-navy);
}
.about-adv-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-adv-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== SCROLL TOP AREA ===== */
.scroll-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.scroll-arrows {
  display: flex;
  gap: 8px;
}

/* ===== SVG ICONS ===== */
.icon { display: inline-block; vertical-align: middle; }
.icon svg { width: 100%; height: 100%; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .container { padding: 0 40px; }
  .hscroll { padding-left: 24px; }
  .hscroll-card { width: 256px; }
  .service-hcard { width: 256px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 80px; }
  .section { padding: 128px 0; }
  .section-sm { padding: 80px 0; }
  .hscroll { padding-left: 32px; }
  .hscroll-card { width: 288px; }
  .service-hcard { width: 288px; }
  .map-container { height: 550px; }
  .navbar-inner { padding: 0 32px; }
  .footer-inner { padding: 0 32px; }
  .footer-copy { padding: 0 32px 12px; }
}

@media (max-width: 1279px) {
  .navbar-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 1023px) {
  .navbar-contacts { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 80px 0 112px; }
  .page-hero-content { padding: 0 24px; }
}

@media (max-width: 767px) {
  .grid-2 { grid-template-columns: 1fr; }

  .navbar-socials { display: none; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 639px) {
  .hero-title { font-size: 32px; margin-bottom: 20px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 32px; }
  .hero-label { font-size: 11px; margin-bottom: 16px; }
  .hero-buttons { margin-bottom: 40px; gap: 12px; }
  .hero-buttons .btn { font-size: 13px; padding: 12px 28px; }
  .hero-services span { font-size: 13px; }
  .hero-services { gap: 6px; }
}
@media (max-width: 639px) {
  .price-card-content {
    padding: 18px 20px;
  }

  .price-card h2 {
    margin-bottom: 10px;
    font-size: 20px; 
    line-height: 1.15;
  }

  .price-card p {
    font-size: 13px;
    line-height: 1.35;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; 
    overflow: hidden;
  }
}
/* ===== Плашка "Наша компания" (адаптив) ===== */

.about-section {
  width: 100%;
  background-color: #710014;
  padding: 80px 20px;
  border-radius: 32px;
  margin: 60px 0;
  box-sizing: border-box;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-section h2,
.about-section h2 span,
.about-section p {
  color: #ffffff;
}

.about-section p {
  line-height: 1.7;
  font-size: 16px;
}

/* ===== Мобильная адаптация ===== */

@media (max-width: 768px) {
  .about-section {
    padding: 50px 16px;
    border-radius: 0; /* во всю ширину без скругления по краям */
    margin: 0;
  }

  .about-section .container {
    padding: 0;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-section p {
    font-size: 15px;
  }
}
/* ===== Плашка "Наша компания" (компактнее) ===== */
.section.section-card.about-section {
  background: #710014;
  border-radius: 26px;   /* было 32 — чуть меньше */
  margin: 40px 0;        /* было 60 */
  padding: 52px 20px;    /* делаем плашку ниже по высоте */
}

/* Заголовок "Наша компания" — чуть меньше */
.section.section-card.about-section .section-title {
  color: #fff;
  font-size: 44px;       /* уменьшили */
  line-height: 1.1;
  margin-bottom: 18px;
}

/* "О НАС" (label) делаем белым */
.section.section-card.about-section .label {
  color: #fff !important;
  opacity: 0.85;         /* можно 1 если нужно прям ярко */
}

/* Текст внутри */
.section.section-card.about-section p {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

/* Слово "компания" (accent-burgundy) в белый */
.section.section-card.about-section .accent-burgundy {
  color: #fff !important;
}

/* ===== Мобилка ===== */
@media (max-width: 768px) {
  .section.section-card.about-section {
    border-radius: 0;      /* во всю ширину */
    margin: 0;
    padding: 36px 16px;    /* компактнее */
  }

  .section.section-card.about-section .section-title {
    font-size: 30px;
  }

  .section.section-card.about-section p {
    font-size: 15px;
  }
}
/* ===== Плашки "Техники вышивки" ===== */
.section.section-card.about-section {
  background: #710014;
  border-radius: 26px;   /* было 32 — чуть меньше */
  margin: 40px 0;        /* было 60 */
  padding: 52px 20px;    /* делаем плашку ниже по высоте */
}

/* сама карточка */
.techniques-grid .card,
.techniques-grid .tech-card,
.techniques-grid .technique-card {
  background-color: #ffffff;
}

/* заголовки внутри карточек */
.techniques-grid h3,
.techniques-grid .card-title {
  color: ##710014;
}

/* текст описания */
.techniques-grid p {
  color: rgba(255, 255, 255, 0.9);
}

/* иконки (svg) */
.techniques-grid svg {
  color: ##710014;
  stroke: ##710014;
}

/* если есть hover-эффект */
.techniques-grid .card:hover,
.techniques-grid .tech-card:hover,
.techniques-grid .technique-card:hover {
  background-color: #5c0010; /* чуть темнее бордовый */
}
.section .grid > div {
  background-color: #710014;
}

.section .grid > div h3,
.section .grid > div p {
  color: #ffffff;
}

.section .grid > div svg {
  color: #ffffff;
  stroke: #ffffff;
}
/* ===== Все карточки техник — весь текст белый ===== */

.section .grid > div {
  background-color: #710014;
}
/* ВСЁ внутри карточки делаем белым */
.section .grid > div * {
  color: #ffffff !important;
}
/* иконки */
.section .grid > div svg {
  stroke: #ffffff !important;
}
/* ===== Блок "Что нужно для заказа" ===== */
.order-need {
  background: #710014;
  border-radius: 28px;
  padding: 48px;
  margin: 60px auto;
}

/* Весь текст внутри — белый */
.order-need * {
  color: #fff !important;
}

/* Иконки-чекбоксы — белые (если SVG) */
.order-need svg {
  stroke: #fff !important;
  fill: none !important;
}

/* Если чек — это псевдоэлемент или фон */
.order-need li::before,
.order-need .check,
.order-need .icon {
  color: #fff !important;
  background-color: transparent !important;
}

/* Картинка слева: сохраняем скругление */
.order-need img {
  border-radius: 18px;
}

/* Мобилка */
@media (max-width: 768px) {
  .order-need {
    border-radius: 0;
    margin: 0;
    padding: 28px 16px;
  }
}
/* ===== Виды вышивки — нижний текст бордовый ===== */

/* все списки под карточками */
.section .grid > div ul li,
.section .grid > div p,
.section .grid > div a {
  color: #710014;
}
/* если пункты — ссылки */
.section .grid > div a:hover {
  color: #5c0010; /* чуть темнее при наведении */
}

/* ===== CONTACT FORM BURGUNDY STYLE ===== */

.contact-section {
  background: rgba(113, 0, 20, 0.9);
}

.contact-title,
.contact-subtitle,
.contact-info,
.contact-info a,
.contact-info-label,
.messenger-icons a,
.form-label {
  color: #fff !important;
}

.form-select,
.form-input,
.phone-input input {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.form-select option {
  color: #000;
}

.file-upload {
  border: 1px dashed rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.8);
}

.phone-flag {
  color: rgba(255,255,255,0.8);
}
/* ===== CONTACT FORM: BORDEAUX FINAL ===== */

.contact-section {
  background: #710014;              /* чёткий бордовый */
  border-radius: 32px;              /* скругление */
  padding: 56px 48px;
  margin: 80px auto;
}

/* ===== ВЕСЬ ТЕКСТ БЕЛЫЙ ===== */
.contact-section * {
  color: #ffffff !important;
}

/* ===== ЛИНИИ И ПОДЧЁРКИ ===== */
.contact-section input,
.contact-section select,
.contact-section textarea {
  background: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #ffffff !important;
}

.contact-section input::placeholder {
  color: rgba(255,255,255,0.6);
}

/* ===== RANGE (ползунок) ===== */
.contact-section input[type="range"] {
  accent-color: #ffffff;
}

/* ===== FILE UPLOAD ===== */
.contact-section .file-upload {
  border: 1px dashed rgba(255,255,255,0.6);
  background: transparent;
}

/* ===== ИКОНКИ ===== */
.contact-section svg {
  stroke: #ffffff !important;
  fill: none !important;
}

/* ===== КНОПКА ===== */
.contact-section .btn-submit,
.contact-section button[type="submit"] {
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 600;
}

/* hover */
.contact-section .btn-submit:hover,
.contact-section button[type="submit"]:hover {
  background: #f2f2f2 !important;
}

/* ===== МОБИЛКА ===== */
@media (max-width: 768px) {
  .contact-section {
    border-radius: 0;
    padding: 40px 20px;
    margin: 0;
  }
}
/* ===== Виды вышивки — нижний текст бордовый ===== */

/* только списки под карточками */
.section .grid > div ul li {
  color: #710014 !important;
}

/* если пункты — ссылки */
.section .grid > div ul li a {
  color: #710014 !important;
}

/* hover (по желанию, аккуратно) */
.section .grid > div ul li a:hover {
  color: #5c0010 !important;
}
/* Hero: Машинная вышивка — слово "вышивка" белым */
.page-hero .accent-burgundy {
  color: #ffffff !important;
}
/* ===== HERO: "Машинная вышивка" — сделать БЕЛЫМ ===== */

/* перебиваем всё внутри hero */
.page-hero h1,
.page-hero h1 * {
  color: #ffffff !important;
}
/* ===== HERO DTF — ВЫРАВНИВАНИЕ СЛЕВА ===== */
.hero-left {
  max-width: 620px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* убираем центрирование, если где-то осталось */
.page-hero-content {
  align-items: flex-start;
}

/* ===== СИНИЙ CTA ===== */
.hero-left .btn-primary {
  background-color: #517493;
  color: #fff;
  border-radius: 999px;
  padding: 14px 36px;
}

.hero-left .btn-primary:hover {
  background-color: #3f6278;
}

/* ===== МОБИЛКА ===== */
@media (max-width: 768px) {
  .hero-left {
    max-width: 100%;
    padding: 0 16px;
    text-align: left;
  }
}
/* ===== HERO DTF BUTTON FIX ===== */

.hero-left .btn-primary {
  background-color: #517493 !important;  /* ваш синий */
  border: none !important;               /* убираем бордовую обводку */
  box-shadow: none !important;
  color: #ffffff !important;
}

.hero-left .btn-primary:hover {
  background-color: #3f6278 !important;
  border: none !important;
}
/* ===== DTF HERO LEFT ALIGN FIX ===== */

.hero-left {
  max-width: 520px;
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: center;
}

.hero-left * {
  text-align: left !important;
}

.page-hero-content.hero-left {
  margin-left: 0 !important;
  margin-right: auto !important;
}
/* ===== DTF PAGE CARDS STYLE ===== */

.dtf-page .grid > div {
  background-color: #517493 !important;   /* фирменный голубой */
  border-radius: 24px;                    /* скругление */
  padding: 28px;
  transition: 0.3s ease;
}

/* текст внутри белый */
.dtf-page .grid > div * {
  color: #ffffff !important;
}

/* иконки */
.dtf-page .grid > div svg {
  stroke: #ffffff !important;
  fill: none !important;
}

/* hover эффект */
.dtf-page .grid > div:hover {
  background-color: #3f6278 !important;
  transform: translateY(-4px);
}
/* ===== DTF SECTION BACKGROUND ===== */

.dtf-page .section-process {
  background-color: #517493 !important;
  padding: 80px 0;
}
/* ===== DTF CARDS WHITE ===== */

.dtf-page .section-process .grid > div {
  background: #ffffff !important;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* текст внутри */
.dtf-page .section-process .grid > div * {
  color: #1b1b1b !important;
}

/* иконки */
.dtf-page .section-process .grid > div svg {
  stroke: #517493 !important;
  fill: none !important;
}
.dtf-page .section:has(h2:contains("Как это работает")) {
  background-color: #517493;
}
.dtf-page .contact-section * {
  color: #ffffff !important;
}

.dtf-page .contact-section input,
.dtf-page .contact-section select,
.dtf-page .contact-section textarea {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
/* ===== DTF FORM BLUE ===== */

.dtf-page .contact-section {
  background-color: #517493 !important;
  border-radius: 32px;
}

.dtf-page .contact-section * {
  color: #ffffff !important;
}

.dtf-page .contact-section input,
.dtf-page .contact-section select,
.dtf-page .contact-section textarea {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
/* ===============================
   DTF — КАК ЭТО РАБОТАЕТ
================================ */

/* ФОН СЕКЦИИ */
.dtf-page .section-process {
  background-color: #517493;
}

/* ЗАГОЛОВКИ В СЕКЦИИ */
.dtf-page section h2,
.dtf-page section .section-title {
  color: #ffffff;
}

/* КАРТОЧКИ */
.dtf-page section .grid > div {
  background: #ffffff !important;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ТЕКСТ В КАРТОЧКАХ */
.dtf-page section .grid > div h3,
.dtf-page section .grid > div p,
.dtf-page section .grid > div span {
  color: #1b1b1b !important;
}

/* ИКОНКИ */
.dtf-page section .grid > div svg {
  stroke: #517493 !important;
  fill: none !important;
}

/* ОТСТУПЫ ДЛЯ КРАСОТЫ */
.dtf-page section {
  padding: 90px 0;
}
/* ===============================
   ПРЕИМУЩЕСТВА — СКРУГЛЕНИЕ
================================ */

.advantages-grid > div,
.advantage-card {
  border-radius: 28px;
  overflow: hidden;
}
/* ===============================
   ЧТО НУЖНО ДЛЯ ЗАКАЗА — ПЛАШКА
================================ */

.order-need,
.order-need-content,
.order-need-text {
  background: #7a0019; /* бордовый */
  border-radius: 28px;
  padding: 40px 44px;
  color: #ffffff;
}

/* Заголовок */
.order-need h2,
.order-need h3 {
  color: #ffffff;
}

/* Список */
.order-need ul,
.order-need li,
.order-need p {
  color: #ffffff;
}

/* Галочки / иконки */
.order-need svg,
.order-need i {
  color: #ffffff;
  fill: #ffffff;
}
/* Правая колонка блока */
.need-order-right,
.need-order-right * {
  color: #ffffff !important;
}

.need-order-right {
  background: #7a0019;
  border-radius: 28px;
  padding: 40px 44px;
}
/* =================================
   ПРЕИМУЩЕСТВА РАБОТЫ С НАМИ — СИНИЕ
================================= */

.section-advantages .grid > div,
.advantages-grid > div {
  background-color: #517493 !important;
  border-radius: 28px;
  transition: 0.3s ease;
}

/* текст белый */
.section-advantages .grid > div *,
.advantages-grid > div * {
  color: #ffffff !important;
}

/* иконки */
.section-advantages .grid > div svg,
.advantages-grid > div svg {
  stroke: #ffffff !important;
  fill: none !important;
}

/* аккуратный hover */
.section-advantages .grid > div:hover,
.advantages-grid > div:hover {
  background-color: #3f6278 !important;
  transform: translateY(-4px);
}
/* ===== ПРЕИМУЩЕСТВА РАБОТЫ С НАМИ — СИНИЕ ПЛАШКИ ===== */

.advantage-card {
  background: #517493 !important;
  background-image: none !important;
  border: none !important;
  border-radius: 28px !important;
  overflow: hidden;
}

/* весь текст белый */
.advantage-card,
.advantage-card * {
  color: #ffffff !important;
}

/* иконки (если svg) */
.advantage-card svg {
  stroke: #ffffff !important;
  fill: none !important;
}

/* hover */
.advantage-card:hover {
  background: #3f6278 !important;
  transform: translateY(-4px);
  transition: 0.25s ease;
}
/* ===== Почему выбирают нас — центрирование ===== */

.section-why .container {
    display: flex;
    justify-content: center;
}

.section-why .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    justify-content: center;  /* центрирует сетку */
    gap: 30px;
}

/* если карточки фиксированной ширины */
.section-why .advantage-card {
    flex: 0 0 350px; /* ширина карточки */
}
/* Сдвиг текста и иконок внутри плашек вправо */
.advantage-card,
.advantages-grid > div {
    padding-left: 48px !important;
}
body {
    font-weight: 500;
}
/* ===== Видеоблок компании ===== */

.company-video-section {
  padding: 100px 0;
}

.video-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
/* ===== БОРДОВЫЕ БЛОКИ БЛОГА ===== */

.blog-section {
  background: #710014 !important;
}

.blog-section h1,
.blog-section .section-title {
  color: #ffffff !important;
}

.blog-section p {
  color: rgba(255,255,255,0.85) !important;
}

.blog-section .label {
  color: #E7C7A8 !important;
}


/* ===== БЛОК УСЛУГ ===== */

.section[style*="F2F1ED"] {
  background: #710014 !important;
}

.section[style*="F2F1ED"] h2 {
  color: #ffffff !important;
}

.section[style*="F2F1ED"] p {
  color: rgba(255,255,255,0.85) !important;
}

.section[style*="F2F1ED"] .label {
  color: #E7C7A8 !important;
}



/* ===== БОРДОВЫЙ ФОН ДЛЯ БЛОКА УСЛУГ ===== */
.section-services,
.section[style*="F2F1ED"]{
  background:#710014 !important;
}

.section-services h2,
.section-services p,
.section-services .label{
  color:#ffffff !important;
}

.section-services p{
  color:rgba(255,255,255,0.85) !important;
}

/* ===== HERO НА ГЛАВНОЙ С ФОТО ===== */
.main-hero{
  position:relative;
  min-height:320px;
  display:flex;
  align-items:center;
  background:
  linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.15) 100%),
  url('https://static.tildacdn.com/tild6335-3637-4339-b638-633963303265/___.jpg') center/cover no-repeat;
   overflow: hidden;
  color:#fff;
}

.main-hero-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 5rem;
}

.main-hero h1{
  font-size:64px;
  line-height:1.05;
  margin-bottom:20px;
  font-weight:800;
}

.main-hero p{
  font-size:20px;
  max-width:560px;
  color:rgba(255,255,255,0.85);
}

.main-hero-btn{
  display:inline-block;
  margin-top:30px;
  padding:16px 28px;
  border-radius:40px;
  background:#5D84AE;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:0.08em;
}

.main-hero-btn:hover{
  transform:translateY(-2px);
}
/* БОРДОВЫЙ ФОН ДЛЯ БЛОКА УСЛУГ */

.section[style*="F2F1ED"]{
  background:#710014 !important;
}

.section[style*="F2F1ED"] .label{
  color:#E7C7A8 !important;
}

.section[style*="F2F1ED"] h2{
  color:#ffffff !important;
}

.section[style*="F2F1ED"] p{
  color:rgba(255,255,255,0.85) !important;
}
.article-modal{display:none}
.article-modal.active{display:flex}
/* ===== FOOTER FIX ===== */

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:nowrap;
  height:auto;
  min-height:64px;
}

/* логотип */
.footer .navbar-logo{
  flex:0 0 auto;
  display:flex;
  align-items:center;
}

.footer .navbar-logo img{
  height:40px;
  width:auto;
}

/* меню */
.footer .navbar-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex:1 1 auto;
  min-width:0;
}

.footer .navbar-links a{
  font-size:11px;
  letter-spacing:0.12em;
  white-space:nowrap;
}

/* блок рейтинга */
.footer header{
  flex:0 0 auto;
  display:flex;
  align-items:center;
}

/* правый блок */
.footer .navbar-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

/* соцсети */
.footer .navbar-socials{
  display:flex;
  align-items:center;
  gap:8px;
}

/* контакты */
.footer .navbar-contacts{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1.2;
  font-size:12px;
  white-space:nowrap;
}
/* ===== FOOTER: YANDEX WIDGET FIX ===== */

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px 24px;
  flex-wrap:wrap;
  height:auto;
  padding:16px 32px;
}

/* 1 ряд: логотип */
.footer .navbar-logo{
  flex:0 0 auto;
}

/* 1 ряд: меню */
.footer .navbar-links{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* 1 ряд: правый блок */
.footer .navbar-right{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
}

/* 2 ряд: виджет Яндекса */
.footer header{
  order:4;
  flex:0 0 100%;
  display:flex;
  justify-content:center;
  margin-top:6px;
}

.footer header iframe{
  display:block;
  width:150px;
  height:50px;
  border:0;
}

/* контакты */
.footer .navbar-contacts{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1.2;
  white-space:nowrap;
  font-size:12px;
}

/* планшет и уже */
@media (max-width: 1200px){
  .footer-inner{
    justify-content:center;
  }

  .footer .navbar-links{
    flex:0 0 100%;
    order:3;
  }

  .footer .navbar-right{
    order:2;
  }

  .footer header{
    order:4;
    margin-top:10px;
  }
}
/* REVIEWS */
.reviews-section {
  background: #F2F1ED;
}

.reviews-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(22,22,22,0.6);
  line-height: 1.7;
  font-size: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(2,46,76,0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.review-top h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #022E4C;
  line-height: 1.3;
}

.review-meta {
  font-size: 0.8rem;
  color: rgba(22,22,22,0.5);
  line-height: 1.4;
}

.review-date {
  font-size: 0.85rem;
  color: #B38F6F;
  white-space: nowrap;
  font-weight: 600;
}

.review-stars {
  color: #B38F6F;
  letter-spacing: 0.12em;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.review-card p {
  margin: 0 0 0.8rem;
  color: rgba(22,22,22,0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

.review-card p:last-child {
  margin-bottom: 0;
}