/* Onur İlaçlama - onurilaclama.com */
:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --white: #FFFFFF;
  --green: #22C55E;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.text-accent { color: var(--orange); }

.section { padding: 4.5rem 0; }
.section--alt { background: var(--gray-50); }

.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--navy);
}

.section__title--left { text-align: left; }

.section__subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 560px;
  margin: -1.5rem auto 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--header { font-size: 0.85rem; padding: 0.65rem 1.25rem; }

.link-more {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.link-more:hover { text-decoration: underline; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
  transition: box-shadow 0.2s;
}

.header--scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo__icon { width: 44px; height: 44px; }

.logo__text { display: flex; flex-direction: column; line-height: 1.1; }

.logo__name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo__tag {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: 6px;
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__link--active {
  box-shadow: inset 0 -2px 0 var(--orange);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
}

.header__phone svg { color: var(--orange); flex-shrink: 0; }

.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__phone-text small {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.header__phone-text strong { font-size: 0.9rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero__desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.hero__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 2rem;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.hero__features svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero__visual { position: relative; }

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 5/6;
  max-height: 520px;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 200px;
}

.hero__badge svg { width: 32px; height: 32px; flex-shrink: 0; }

.hero__badge strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.hero__badge span { font-size: 0.8rem; color: var(--gray-600); }

/* Trust strip - mobile only */
.trust-strip {
  display: none;
  padding: 1.25rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.trust-strip__inner {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.trust-strip span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-strip svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

/* Pests grid */
.pests__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pest-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pest-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pest-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  overflow: hidden;
}

.pest-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pest-card__icon-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  padding: 1rem;
}

.pest-card__icon-fallback svg {
  width: 56px;
  height: 56px;
}

.pest-card__image-wrap--icon .pest-card__icon-fallback {
  display: flex;
}

.pest-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 0.75rem 1rem;
}

.service-item__thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
}

.service-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hizmetlerimiz */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: inherit;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card__image {
  aspect-ratio: 16 / 10;
  background: var(--gray-100);
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__image--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.service-card__image--icon svg {
  width: 56px;
  height: 56px;
}

.service-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.service-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-card__body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
}

.services__process {
  max-width: 720px;
  margin: 0 auto;
}

.services__process-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem;
}

.process-steps li span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-steps strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.process-steps p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Hakkımızda */
.about {
  background: var(--white);
}

.about__layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--navy);
}

.about__content p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about__trust {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 1.5rem 0;
}

.about__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.about__trust svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.about__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.about__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 4px solid var(--orange);
}

.about__card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about__reasons {
  list-style: none;
}

.about__reasons li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.about__reasons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* Services list - mobile */
.services__list { display: none; }

.services__list { list-style: none; }

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.service-item:hover { border-color: var(--orange); }

.service-item__icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  flex-shrink: 0;
}

.service-item__name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-item__arrow {
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Documents */
.documents { background: var(--white); }

.documents__statement {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}

.documents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.doc-card:hover:not(.doc-card--placeholder) {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.doc-card--placeholder { opacity: 0.92; }

.doc-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.doc-card__icon svg { width: 28px; height: 28px; }

.doc-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.doc-card__desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.doc-card__badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.doc-card a.doc-card__link {
  display: block;
  margin-top: 1rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}

.documents__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.documents__note code {
  background: var(--gray-100);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature { text-align: center; }

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.feature__icon svg { width: 28px; height: 28px; }

.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* FAQ */
.faq__list { max-width: 720px; margin: 0 auto; }

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq__item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 400;
}

.faq__item[open] summary::after { content: '−'; }

.faq__item p {
  padding: 0 1.25rem 1.1rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact__form label span {
  font-size: 0.85rem;
  font-weight: 600;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s;
}

.contact__card:hover { border-color: var(--orange); }

.contact__card svg { width: 32px; height: 32px; color: var(--orange); flex-shrink: 0; }

.contact__card strong { display: block; font-size: 1.1rem; }
.contact__card span { font-size: 0.85rem; color: var(--gray-600); }

.contact__card--whatsapp svg { color: var(--green); }

.contact__card--instagram svg {
  color: #E1306C;
}

.contact__card--address {
  align-items: flex-start;
}

.contact__card--address svg {
  color: var(--navy);
  margin-top: 0.15rem;
}

.contact__address {
  display: block;
  line-height: 1.5;
  margin-top: 0.15rem;
}

.contact__card--instagram:hover {
  border-color: #E1306C;
}

/* Sosyal medya */
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__social-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.social-link--pending {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

.social-link--pending:hover {
  transform: none;
}

.contact__card.social-link--pending,
.contact__card--instagram.social-link--pending {
  opacity: 0.75;
  cursor: not-allowed;
}

/* CTA Bar */
.cta-bar {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}

.cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-bar__text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 240px;
}

.cta-bar__text svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-bar__text strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
.cta-bar__text span { font-size: 0.9rem; opacity: 0.85; }

.cta-bar__support {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-bar__support svg { width: 36px; height: 36px; opacity: 0.9; }

.cta-bar__support small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
}

.cta-bar__support a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.cta-bar__support a:hover { color: var(--orange); }

/* Footer */
.footer {
  padding: 2rem 0;
  padding-bottom: calc(2rem + 80px);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.footer p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 0.25rem; }
.footer strong { color: var(--navy); }

.footer__address {
  font-size: 0.8rem;
  max-width: 420px;
  line-height: 1.5;
}

/* Sticky call - mobile */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(249, 115, 22, 0.35);
}

.sticky-call__icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-call__icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.sticky-call__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-call__text strong { font-size: 1.25rem; }
.sticky-call__text small { font-size: 0.8rem; opacity: 0.95; }

/* Responsive */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__phone-text { display: none; }
  .btn--header { display: none; }

  .menu-toggle { display: flex; }

  .nav.is-open {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    padding: 1.5rem;
    overflow-y: auto;
  }

  .nav.is-open .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav.is-open .nav__link {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero__badge { right: 0; bottom: 1rem; }

  .pests__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .documents__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .contact__grid { grid-template-columns: 1fr; }

  .cta-bar__inner { flex-direction: column; text-align: center; }
  .cta-bar__text { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .hero {
    padding: 0;
    background: var(--white);
  }

  .hero__grid { gap: 0; }

  .hero__content {
    padding: 1.5rem 0 1rem;
    text-align: center;
  }

  .hero__desc { margin-inline: auto; }
  .hero__features { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__note { justify-content: center; }

  .hero__visual {
    position: relative;
    max-width: none;
    margin: 0 -1rem;
  }

  .hero__image-wrap {
    border-radius: 0;
    aspect-ratio: 16/10;
    max-height: 220px;
  }

  .hero__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.95) 100%);
    pointer-events: none;
  }

  .hero__badge { display: none; }

  .trust-strip { display: block; }

  .pests { display: none; }

  .services__grid { display: none; }
  .services__process .process-steps { grid-template-columns: 1fr; }

  .services__list { display: block; }

  .about__layout { grid-template-columns: 1fr; }
  .about__trust { grid-template-columns: 1fr; }

  .features { padding-top: 2rem; }

  .documents__grid { grid-template-columns: 1fr; }

  .features__grid { grid-template-columns: 1fr 1fr; }

  .cta-bar__support { display: none; }

  .sticky-call { display: flex; }

  .footer { padding-bottom: calc(2rem + 72px); }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .hero__features { gap: 0.75rem 1.25rem; }
}
