/* ===================================================
   NeWeighs — Global Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ───────────────────────────────── */
:root {
  --blue-primary: #1e5f99;
  --blue-nav: #1a5c99;
  --blue-dark: #1a3a5c;
  --blue-btn: #1e6ab5;
  --green-section: #6aaa3a;
  --green-dark: #5a9430;
  --green-header: #6aaa3a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-medium: #444;
  --text-light: #777;
  --border-light: #e0e0e0;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.25s ease;
  --font: 'Inter', sans-serif;
}

/* ── Reset & Base ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  outline: none;
}

/* ── Utility ─────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--blue-btn);
  color: var(--white);
  border: 2px solid var(--blue-btn);
}

.btn-primary:hover {
  background: #155a99;
  border-color: #155a99;
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-btn);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-btn);
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 19px;
  font-weight: 600;
  color: var(--blue-primary);
  margin: 20px 0 8px;
}

/* ── HEADER ─────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Left zone */
.header-cta .btn-primary {
  font-size: 13px;
  padding: 9px 18px;
  white-space: nowrap;
}

/* Center zone */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.logo-svg {
  height: 60px;
  width: auto;
}

/* Right zone */
.header-contact {
  text-align: right;
  min-width: 160px;
}

.header-contact .location {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.header-contact .phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-primary);
}

/* ── NAVIGATION ──────────────────────────────────── */
.site-nav {
  background: var(--blue-nav);
  position: sticky;
  top: 82px;
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-inner>li {
  position: relative;
}

.nav-inner>li>a,
.nav-inner>li>button {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 18px;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: var(--font);
  text-decoration: none;
  white-space: nowrap;
}

.nav-inner>li>a:hover,
.nav-inner>li>button:hover,
.nav-inner>li>a.active {
  background: rgba(255, 255, 255, 0.15);
}

.nav-inner>li>a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-arrow {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.2s;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--card-shadow);
  z-index: 2000;
  overflow: hidden;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--text-dark);
  font-size: 14px;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--blue-primary);
  padding-left: 22px;
}

.nav-inner>li:hover .dropdown-menu,
.nav-inner>li.open .dropdown-menu {
  display: block;
}

.nav-inner>li:hover .nav-arrow,
.nav-inner>li.open .nav-arrow {
  transform: rotate(180deg);
}

/* ── FLOATING ACTION BAR ─────────────────────────── */
.floating-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--blue-btn);
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
  border-radius: 0;
}

.floating-btn:first-child {
  border-radius: 6px 0 0 0;
}

.floating-btn:last-child {
  border-radius: 0 0 0 6px;
}

.floating-btn:hover {
  background: var(--blue-primary);
  transform: translateX(-4px);
}

/* ── HERO SECTION ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 30, 60, 0.75) 0%, rgba(10, 30, 60, 0.35) 100%);
}

.hero-home {
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600&q=80');
  min-height: 460px;
}

.hero-injectables {
  background-image: url('https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?w=1600&q=80');
  min-height: 380px;
}

.hero-nutrition {
  background-image: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1600&q=80');
  min-height: 380px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  padding: 40px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  color: var(--white);
  max-width: 520px;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text .hero-subtitles {
  margin-bottom: 20px;
}

.hero-text .hero-subtitles p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  opacity: 0.95;
}

.hero-text .hero-phone {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.hero-text .hero-hours {
  font-size: 14px;
  opacity: 0.9;
}

.hero-text .hero-hours .open-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-form-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-primary);
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30, 95, 153, 0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.recaptcha-notice {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.form-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--blue-btn);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.form-submit-btn:hover {
  background: var(--blue-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 95, 153, 0.3);
}

/* Required asterisk */
.req {
  color: #e74c3c;
  margin-left: 2px;
}

/* ── PAGE GREEN HEADER (inner pages) ─────────────── */
.page-green-header {
  background: var(--green-section);
  padding: 28px 24px;
  color: var(--white);
}

.page-green-header h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue-dark);
}

.page-green-header p {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
  margin-top: 2px;
}

/* ── SECTION: INFO (white) ───────────────────────── */
.section-info {
  padding: 60px 0;
  background: var(--white);
}

.section-info p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 15px;
}

/* ── SECTION: WHY CHOOSE (green) ─────────────────── */
.section-why {
  padding: 60px 0;
  background: var(--green-section);
  color: var(--white);
}

.section-why .section-title {
  color: var(--white);
  font-size: 26px;
  text-align: center;
}

.why-body {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
  opacity: 0.96;
  font-size: 15px;
  line-height: 1.7;
}

.why-body strong {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--white);
}

.benefits-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 0 0 calc((100% - 40px) / 6);
  min-width: 110px;
  padding: 8px 6px;
}

.benefit-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.benefit-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

/* ── SECTION: PROMO BLOCKS ───────────────────────── */
.promo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.promo-block.reverse {
  direction: rtl;
}

.promo-block.reverse>* {
  direction: ltr;
}

.promo-img {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.promo-img-injectables {
  background-image: url('https://images.unsplash.com/photo-1607619056574-7b8d3ee536b2?w=800&q=80');
}

.promo-img-nutrition {
  background-image: url('https://images.unsplash.com/photo-1494390248081-4e521a5940db?w=800&q=80');
}

.promo-img-getstarted {
  background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=800&q=80');
}

.promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 48px;
  background: var(--off-white);
}

.promo-block:nth-child(odd) .promo-content {
  background: var(--off-white);
}

.promo-block:nth-child(even) .promo-content {
  background: var(--white);
}

.promo-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.promo-content p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ── TWO-COLUMN CONTENT (inner pages) ───────────── */
.two-col-layout {
  padding: 50px 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.content-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 14px;
}

.content-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-primary);
  margin: 24px 0 10px;
}

.content-left p {
  color: var(--text-medium);
  margin-bottom: 12px;
  font-size: 15px;
}

.content-left .price-tag {
  font-weight: 700;
  color: var(--text-dark);
  margin: 8px 0 16px;
  font-size: 15px;
}

.content-left ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.content-left ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.content-left a {
  color: var(--blue-primary);
  text-decoration: underline;
}

/* Service card (right sidebar) */
.service-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 160px;
}

.service-card .card-logo {
  margin: 0 auto 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 12px;
}

.service-card .card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card .card-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-primary);
}

/* ── GET STARTED STEPS ───────────────────────────── */
.steps-section {
  padding: 50px 0;
}

.step-item {
  margin-bottom: 36px;
}

.step-item h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 12px;
}

.step-item p {
  color: var(--text-medium);
  font-size: 15px;
  margin-bottom: 10px;
}

.step-item ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-medium);
}

.step-item ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.step-item ul li strong {
  color: var(--text-dark);
}

/* ── FAQs ────────────────────────────────────────── */
.faq-section {
  padding: 40px 0;
}

.faq-intro {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 28px;
}

.faq-intro a {
  color: var(--blue-primary);
  text-decoration: underline;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #eef4fb;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: #ddeaf7;
}

.accordion-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-primary);
  margin: 0;
}

.accordion-toggle {
  width: 32px;
  height: 32px;
  background: var(--blue-btn);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.accordion-item.open .accordion-toggle {
  background: var(--blue-primary);
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 20px 22px;
  background: var(--white);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ── REQUEST CONSULTATION PAGE ───────────────────── */
.consultation-section {
  padding: 50px 0;
}

.consultation-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 40px 40px;
}

.consultation-form-wrap p {
  color: var(--text-medium);
  margin-bottom: 24px;
  font-size: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* ── GREEN PRE-FOOTER ────────────────────────────── */
.pre-footer {
  background: var(--green-section);
  padding: 60px 0;
}

.pre-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.pre-footer-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.pre-footer-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  line-height: 1.7;
}

.pre-footer-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.pre-footer-video img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue-primary);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.pre-footer-video:hover .play-btn {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-col p,
.footer-col address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  line-height: 1.8;
}

.footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}

.btn-send-msg {
  display: inline-block;
  padding: 9px 22px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 16px;
  cursor: pointer;
  font-family: var(--font);
}

.btn-send-msg:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.sub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 24px;
  text-align: center;
}

.sub-footer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 4px;
}

.sub-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color 0.2s;
}

.sub-footer a:hover {
  color: var(--white);
}

/* Accessibility button */
.accessibility-btn {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 2000;
  width: 40px;
  height: 40px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: none;
}

.accessibility-btn:hover {
  background: var(--blue-primary);
  transform: scale(1.1);
}

/* ── MOBILE NAV TOGGLE ───────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 12px 16px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-grid {
    grid-template-columns: 1fr 260px;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-logo {
    order: -1;
    flex: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-inner {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }

  .nav-inner.open {
    display: flex;
  }

  .nav-inner>li {
    width: 100%;
  }

  .nav-inner>li>a,
  .nav-inner>li>button {
    width: 100%;
    padding: 12px 20px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .dropdown-menu a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-form-card {
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .promo-block {
    grid-template-columns: 1fr;
  }

  .promo-block.reverse {
    direction: ltr;
  }

  .promo-img {
    min-height: 220px;
  }

  .promo-content {
    padding: 32px 24px;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    position: static;
  }

  .pre-footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .consultation-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }
}