/* ============================================================
   AUREVIA PHARMA — style.css
   ============================================================ */

/* ─── Custom Properties ───────────────────────────────────── */
:root {
  --color-primary:    #D26E41;
  --color-secondary:  #728649;
  --color-accent:     #E8A587;
  --color-ink:        #5C2D18;
  --color-bg:         #FFFFFF;
  --color-bg-alt:     #FAF3EE;
  --color-text:       #2E2118;
  --color-text-muted: #8A7568;
  --color-border:     #EDE1D8;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:      20px;
  --radius-card: 24px;

  --shadow-sm: 0 2px 8px  rgba(210, 110, 65, 0.06);
  --shadow-md: 0 8px 32px rgba(210, 110, 65, 0.10);
  --shadow-lg: 0 20px 60px rgba(210, 110, 65, 0.14);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --speed: 0.3s;

  --header-h: 76px;
}

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

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

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

/* ─── Utilities ───────────────────────────────────────────── */
.text-blue       { color: var(--color-secondary); }
.text-blue-light { color: #E8A587; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-secondary);
  margin-bottom: 20px;
}
.eyebrow--light { color: #F3C3AC; border-color: #F3C3AC; }

.section-title {
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.12;
  margin-bottom: 20px;
}
.section-title--center { text-align: center; }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.section-sub {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.7;
  text-align: center;
}

.body-text {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              color var(--speed) var(--ease),
              transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
  line-height: 1;
}

.btn--primary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn--primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(114, 134, 73, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  padding: 11px 22px;
  font-size: 14px;
  border-radius: 10px;
}
.btn--outline:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 16px;
  border-radius: 14px;
}

/* ─── HEADER ──────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--speed) var(--ease);
}
#header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {height: 48px;width: auto;}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--speed), background var(--speed);
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-secondary);
  background: rgba(114, 134, 73, 0.08);
}

.nav__link--cta {
  background: var(--color-secondary);
  color: #fff !important;
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background var(--speed);
}
.hamburger:hover { background: var(--color-bg-alt); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--speed) var(--ease), opacity var(--speed);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 24px 20px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }

.mobile-nav__list { display: flex; flex-direction: column; gap: 2px; }

.mobile-nav__link {
  display: block;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 10px;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--speed), color var(--speed);
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link:hover { background: var(--color-bg-alt); color: var(--color-secondary); }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: #FBF0EA;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  right: 0; top: 0;
  width: 62%;
  height: 100%;
  pointer-events: none;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* gradient fades image into the left content area */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #FBF0EA 0%,
    #FBF0EA 5%,
    rgba(251, 240, 234, 0.85) 30%,
    rgba(251, 240, 234, 0.20) 65%,
    transparent 100%
  );
  z-index: 1;
}
/* bottom fade for wave */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #FBF0EA);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 96px;
}

.hero__content { max-width: 560px; }

.hero__title {
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.09;
  margin-bottom: 24px;
}

.hero__rule {
  width: 44px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero__wave svg { width: 100%; display: block; }

/* ─── HAKKIMIZDA ──────────────────────────────────────────── */
#hakkimizda {
  padding: 120px 0 80px;
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--color-text);
  line-height: 1.65;
}
.check-icon { flex-shrink: 0; margin-top: 1px; }

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.info-card__icon { flex-shrink: 0; }
.info-card__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 3px;
}
.info-card__desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.about__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about__image:hover img { transform: scale(1.03); }

/* Feature row */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: rgba(114, 134, 73, 0.08);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: background var(--speed);
}
.feature-card:hover .feature-card__icon-wrap { background: rgba(114, 134, 73, 0.14); }

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.feature-card__rule {
  width: 28px; height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin: 0 auto 12px;
}
.feature-card__desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ─── VURGU ───────────────────────────────────────────────── */
#vurgu {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.vurgu__bg {
  position: absolute;
  inset: 0;
}
.vurgu__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.vurgu__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 45, 24, 0.92) 0%,
    rgba(210, 110, 65, 0.80) 50%,
    rgba(210, 110, 65, 0.68) 100%
  );
}

.vurgu__inner {
  position: relative;
  z-index: 2;
}

.vurgu__content { max-width: 700px; }

.vurgu__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 28px;
}

.vurgu__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 16px;
}
.vurgu__desc strong { color: #fff; font-weight: 600; }

.vurgu__rule {
  width: 44px; height: 2px;
  background: rgba(232, 165, 135, 0.55);
  border-radius: 2px;
  margin: 24px 0;
}

.vurgu__features {
  display: flex;
  align-items: stretch;
  margin-top: 52px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.vurgu__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 24px 24px;
}
.vurgu__feature strong {
  display: block;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 3px;
}
.vurgu__feature span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.45;
}
.vurgu__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: rgba(114, 134, 73, 0.22);
  border-radius: 12px;
}

.vurgu__sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}

/* ─── ÜRÜNLER ─────────────────────────────────────────────── */
#urunler {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.product-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }

.product-card__body {
  padding: 22px 20px 26px;
}

.product-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.product-card__rule {
  width: 24px; height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin-bottom: 10px;
}
.product-card__desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ─── NEDEN AUREVIA ───────────────────────────────────────── */
#neden-aurevia {
  padding: 120px 0;
  background: var(--color-bg);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 44px 32px;
  text-align: center;
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              background var(--speed) var(--ease);
}
.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg);
}

.reason-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: rgba(114, 134, 73, 0.08);
  border-radius: 50%;
  margin: 0 auto 24px;
  transition: background var(--speed);
}
.reason-card:hover .reason-card__icon { background: rgba(114, 134, 73, 0.15); }

.reason-card__title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.reason-card__rule {
  width: 30px; height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.reason-card__desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ─── İLETİŞİM ───────────────────────────────────────────── */
#iletisim {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact__title {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.12;
  margin-bottom: 20px;
}
.contact__desc {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-list { display: flex; flex-direction: column; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; }

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(114, 134, 73, 0.10);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item__text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}
.contact-item__text span {
  font-size: 15px;
  color: var(--color-text-muted);
}
.contact-link {
  font-size: 15px;
  color: var(--color-secondary);
  transition: color var(--speed);
}
.contact-link:hover { color: var(--color-primary); }

/* Image in circle/blob shape */
.contact__image {
  border-radius: 55% 45% 50% 50% / 45% 45% 55% 55%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s var(--ease);
}
.contact__image:hover { transform: scale(1.02); }
.contact__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--color-primary);
  padding: 72px 0 40px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer__brand img { height: 38px; width: auto; margin-bottom: 20px; }

.footer__brand-legal {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.80);
}

.footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__col-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
}

.footer__links { display: flex; flex-direction: column; gap: 2px; }

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--speed);
}
.footer__link:last-child { border-bottom: none; }
.footer__link:hover { color: #fff; }
.footer__link svg { opacity: 0.5; transition: opacity var(--speed), transform var(--speed); }
.footer__link:hover svg { opacity: 1; transform: translateX(4px); }

.footer__cats { display: flex; flex-direction: column; gap: 4px; }

.footer__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.60);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__cat:last-child { border-bottom: none; }

.footer__cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(114, 134, 73, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
}

.footer__contact { display: flex; flex-direction: column; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__contact-item:last-child { border-bottom: none; }

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(114, 134, 73, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 2px;
}
.footer__contact-item span,
.footer__email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.4;
}
.footer__email:hover { color: rgba(255, 255, 255, 0.85); }

/* ─── Animations ──────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease),
              transform 0.65s var(--ease);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger siblings inside a grid/list */
.feature-row   [data-animate]:nth-child(2),
.products-grid [data-animate]:nth-child(2),
.reasons-grid  [data-animate]:nth-child(2) { transition-delay: 0.08s; }

.feature-row   [data-animate]:nth-child(3),
.products-grid [data-animate]:nth-child(3),
.reasons-grid  [data-animate]:nth-child(3) { transition-delay: 0.16s; }

.feature-row   [data-animate]:nth-child(4),
.products-grid [data-animate]:nth-child(4),
.reasons-grid  [data-animate]:nth-child(4) { transition-delay: 0.24s; }

.products-grid [data-animate]:nth-child(5),
.reasons-grid  [data-animate]:nth-child(5) { transition-delay: 0.32s; }

.products-grid [data-animate]:nth-child(6),
.reasons-grid  [data-animate]:nth-child(6) { transition-delay: 0.40s; }

/* ─── Responsive ──────────────────────────────────────────── */

/* 1440 laptop */
@media (max-width: 1440px) {
  .container { padding: 0 80px; }
}

/* 992 tablet */
@media (max-width: 992px) {
  .container { padding: 0 48px; }

  #header .container { padding: 0 24px; }

  .hamburger  { display: flex; }
  .header__nav { display: none; }

  /* Hero */
  #hero { min-height: auto; padding: calc(var(--header-h) + 32px) 0 64px; }
  .hero__bg { width: 100%; opacity: 0.28; }
  .hero__bg::before {
    background: linear-gradient(
      to right,
      rgba(251, 240, 234, 1) 0%,
      rgba(251, 240, 234, 0.9) 50%,
      rgba(251, 240, 234, 0.8) 100%
    );
  }
  .hero__inner { padding-top: 0; padding-bottom: 72px; }
  .hero__content { max-width: 100%; }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .about__image { order: -1; }

  .feature-row { grid-template-columns: repeat(2, 1fr); }

  /* Products: 2 cols */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reasons: 2 cols */
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .contact__image {
    border-radius: var(--radius-card);
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  /* Vurgu features: stack */
  .vurgu__features { flex-direction: column; }
  .vurgu__sep { width: auto; height: 1px; margin: 0 20px; }

  /* Footer: 2-col */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { grid-column: 1 / -1; }
}

/* 600 mobile */
@media (max-width: 600px) {
  .container { padding: 0 20px; }

  /* Hero — image block at top, text below */
  #hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: var(--header-h);
    background: #fff;
  }
  .hero__bg {
    position: relative;
    width: 100%;
    height: 260px;
    opacity: 1;
  }
  .hero__bg::before {
    background: linear-gradient(
      to bottom,
      rgba(251, 240, 234, 0.15) 0%,
      rgba(255, 255, 255, 0.96) 100%
    );
  }
  .hero__bg::after { display: none; }
  .hero__inner {
    padding-top: 12px;
    padding-bottom: 52px;
    background: #fff;
    position: relative;
  }
  .hero__wave { display: none; }
  .hero__title { font-size: 34px; }
  .hero__desc  { font-size: 15.5px; }

  /* Sections padding */
  #hakkimizda, #vurgu, #urunler, #neden-aurevia, #iletisim {
    padding: 72px 0;
  }
  .section-header { margin-bottom: 40px; }

  /* Feature: 1 col */
  .feature-row { grid-template-columns: 1fr; gap: 16px; }

  /* Products: 1 col */
  .products-grid { grid-template-columns: 1fr; }

  /* Reasons: 1 col */
  .reasons-grid { grid-template-columns: 1fr; }
  .reason-card { padding: 32px 24px; }

  /* Footer: 1 col */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__brand { grid-column: auto; }

  /* Vurgu */
  .vurgu__title { font-size: 30px; }
  .vurgu__feature { padding: 18px 16px; }

  /* Contact image: natural shape */
  .contact__image {
    border-radius: var(--radius-card);
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   PRODUCT PAGE (shared template — monovia.html, etc.)
   ============================================================ */

/* ─── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb-bar {
  padding: calc(var(--header-h) + 28px) 0 0;
  background: var(--color-bg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); transition: color var(--speed); }
.breadcrumb a:hover { color: var(--color-secondary); }
.breadcrumb__sep { display: flex; align-items: center; opacity: 0.55; }
.breadcrumb__current { color: var(--color-secondary); font-weight: 600; }

/* ─── Product Hero ────────────────────────────────────────── */
.product-hero {
  padding: 40px 0 110px;
  background: var(--color-bg);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-hero__title {
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.08;
  margin-bottom: 16px;
}

.product-hero__tagline {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.product-hero__desc {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 480px;
}

.product-hero__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.product-hero__feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(114, 134, 73, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--speed), transform var(--speed);
}
.product-hero__feature:hover .product-hero__feature-icon {
  background: rgba(114, 134, 73, 0.14);
  transform: translateY(-4px);
}

.product-hero__feature span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.35;
}

.product-hero__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}
.product-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-hero__image:hover img { transform: scale(1.03); }

/* ─── Ingredients ─────────────────────────────────────────── */
#ingredients { padding: 120px 0; background: var(--color-bg-alt); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px 30px;
  text-align: center;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ingredient-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  background: rgba(114, 134, 73, 0.08);
  border-radius: 50%;
  margin: 0 auto 22px;
  transition: background var(--speed);
}
.ingredient-card:hover .ingredient-card__icon { background: rgba(114, 134, 73, 0.15); }

.ingredient-card__title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.ingredient-card__rule {
  width: 30px; height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.ingredient-card__desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.ingredient-card__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ingredient-card__list li {
  position: relative;
  padding-left: 15px;
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.ingredient-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.ingredients-grid [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.ingredients-grid [data-animate]:nth-child(3) { transition-delay: 0.16s; }
.ingredients-grid [data-animate]:nth-child(4) { transition-delay: 0.24s; }
.ingredients-grid [data-animate]:nth-child(5) { transition-delay: 0.32s; }
.ingredients-grid [data-animate]:nth-child(6) { transition-delay: 0.40s; }

/* ─── Neden + Kullanım Şekli ──────────────────────────────── */
#why-usage { padding: 120px 0; background: var(--color-bg); }

.why-usage__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.usage-card {
  background: linear-gradient(160deg, var(--color-bg-alt), #ffffff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.usage-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0;
}
.usage-card__rule {
  width: 40px; height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin: 16px 0 28px;
}

.usage-card__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}
.usage-card__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.usage-card__item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(114, 134, 73, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usage-card__item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.usage-card__item p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.usage-card__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.usage-card__badge-circle {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}
.usage-card__badge-circle span {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 3px;
}
.usage-card__badge-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-primary);
}
.usage-card__badge-text span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ─── Önemli Bilgilendirme ────────────────────────────────── */
#disclaimer { padding: 0 0 120px; background: var(--color-bg); }

.disclaimer-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 56px;
}

.disclaimer-box__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.disclaimer-box__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(114, 134, 73, 0.10);
}
.disclaimer-box__title {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--color-primary);
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 56px;
}

.disclaimer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.disclaimer-item__icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(114, 134, 73, 0.10);
}
.disclaimer-item p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.disclaimer-item strong { color: var(--color-text); }

/* ─── Product Page Responsive ─────────────────────────────── */
@media (max-width: 992px) {
  .product-hero { padding: 24px 0 72px; }
  .product-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .product-hero__image { order: -1; aspect-ratio: 16 / 11; }
  .product-hero__desc { max-width: 100%; }

  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }

  .why-usage__grid { grid-template-columns: 1fr; gap: 48px; }

  .disclaimer-box { padding: 40px; }
  .disclaimer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 600px) {
  .breadcrumb-bar { padding-top: calc(var(--header-h) + 20px); }

  .product-hero__features { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

  #ingredients, #why-usage { padding: 72px 0; }
  .ingredients-grid { grid-template-columns: 1fr; }

  .usage-card { padding: 32px 24px; }
  .usage-card__badge { flex-wrap: wrap; }

  #disclaimer { padding: 0 0 72px; }
  .disclaimer-box { padding: 32px 24px; }
  .disclaimer-box__header { flex-wrap: wrap; }
}

/* ============================================================
   PRODUCT PAGE — shared extensions (wide cards, feature strip)
   ============================================================ */

/* Wide variant for a card that should span the full grid row
   (used when an ingredient/disclaimer list has an odd item count) */
.ingredient-card--wide { grid-column: 1 / -1; }
.ingredient-card--wide .ingredient-card__list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: center;
}
.ingredient-card--wide .ingredient-card__list li { flex: 1 1 260px; text-align: left; }

.disclaimer-item--wide { grid-column: 1 / -1; }

.ingredients-grid [data-animate]:nth-child(7) { transition-delay: 0.48s; }

/* Bottom feature strip (icon + label trust row) */
#feature-strip { padding: 88px 0; background: var(--color-bg-alt); }

.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 20px;
}

.feature-strip__grid [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.feature-strip__grid [data-animate]:nth-child(3) { transition-delay: 0.16s; }
.feature-strip__grid [data-animate]:nth-child(4) { transition-delay: 0.24s; }
.feature-strip__grid [data-animate]:nth-child(5) { transition-delay: 0.32s; }

@media (max-width: 992px) {
  .feature-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
}

/* ─── FAQ (product pages) ─────────────────────────────────── */
#faq { padding: 120px 0; background: var(--color-bg-alt); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--speed) var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-md); }

.faq-item__question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
}
.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(114, 134, 73, 0.08);
  transition: transform var(--speed) var(--ease), background var(--speed);
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(114, 134, 73, 0.15);
}

.faq-item__answer {
  padding: 0 28px 24px;
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  #faq { padding: 72px 0; }
  .faq-item__question { padding: 18px 20px; font-size: 15px; }
  .faq-item__answer { padding: 0 20px 20px; }
}

@media (max-width: 600px) {
  #feature-strip { padding: 56px 0; }
  .feature-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
