/* ============================================
   AUFS — Global Stylesheet
   Design Direction: Premium Territory Authority
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --red:        #C8282E;
  --red-dark:   #9e1e23;
  --red-light:  #fdf0f0;
  --navy:       #0d1b2a;
  --navy-mid:   #162336;
  --navy-light: #1e3352;
  --gold:       #c9a84c;
  --gold-light: #f5edd6;
  --white:      #ffffff;
  --off-white:  #f8f6f2;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-800:   #1f2937;
  --text:       #1a1a2a;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

/* Offset anchored sections so they clear the fixed 72px navbar when jumped to */
:target { scroll-margin-top: 88px; }
.why-section, .product-category-section, [id="why-aufs"], [id="search"] { scroll-margin-top: 88px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,40,46,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: #b8943e;
  border-color: #b8943e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.35);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
.nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .logo-main {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo-text .logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn { padding: 10px 20px; font-size: 13px; }

/* Dropdown */
.nav-item-drop { position: relative; }
.nav-item-drop > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 14px 0 6px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 200;
}
/* Invisible bridge fills the gap between nav link and dropdown panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.nav-item-drop:hover .nav-dropdown,
.nav-item-drop:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  color: var(--gray-800) !important;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  border-radius: 0;
  background: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--gray-100);
  color: var(--navy) !important;
  border-left-color: var(--red);
}
.nav-dropdown .dd-divider { height: 1px; background: var(--gray-200); margin: 5px 0; }
.nav-dropdown a .dd-icon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.5rem;
  font-family: var(--font-head);
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 12px; }
.mobile-menu .btn { margin-top: 24px; }
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(13,27,42,0.25) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 80px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-title span { color: var(--red); }
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s both;
}
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s 1s both;
}
.hero-stat {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat .stat-num span { color: var(--red); }
.hero-stat .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 500;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 100px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 110px;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TRUST BAR (marquee) ── */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION CONTAINER ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
}
.intro-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 32px;
  border-right: 1px solid var(--gray-200);
}
.intro-item:last-child { border-right: none; }
.intro-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}
.intro-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.intro-item p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ── CATEGORY CARDS ── */
.cats-section { background: var(--white); }
.cats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.cat-count {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ── WHY AUFS ── */
.why-section { background: var(--navy); color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-label { color: var(--gold); }
.why-content h2 { color: var(--white); margin-bottom: 20px; }
.why-content p { color: rgba(255,255,255,0.72); margin-bottom: 32px; font-size: 16px; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: rgba(200,40,46,0.15);
  border: 1px solid rgba(200,40,46,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-feature h4 { color: var(--white); font-size: 14px; margin-bottom: 4px; }
.why-feature p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.why-image-stack {
  position: relative;
  height: 520px;
}
.why-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 85%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--navy);
}
.why-badge {
  position: absolute;
  top: 30px; left: 0;
  background: var(--red);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
  max-width: 180px;
}
.why-badge .badge-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  display: block;
  margin-bottom: 2px;
}

/* ── STATS COUNTER ── */
.stats-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 56px 32px;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-item .big-num {
  font-family: var(--font-head);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .big-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-item .big-desc {
  font-size: 12px;
  color: var(--gray-400);
}

/* ── SPECIALS ── */
.specials-section { background: var(--white); }
.specials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.special-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.special-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.special-badge-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.special-body { padding: 20px; }
.special-brand { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.special-name { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.special-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; }
.special-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.special-pack { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.special-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── SUSTAINABILITY ── */
.sustain-section { background: #0a2018; }
.sustain-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sustain-content .section-label { color: var(--gold); }
.sustain-content h2 { color: var(--white); margin-bottom: 16px; }
.sustain-content > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.sustain-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sustain-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
}
.sustain-item .s-icon { font-size: 28px; margin-bottom: 10px; }
.sustain-item h4 { color: var(--white); font-size: 14px; margin-bottom: 4px; }
.sustain-item p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.sustain-metric {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: #4ade80;
  display: block;
  margin-bottom: 2px;
}
.sustain-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sustain-num-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.sustain-num-card .sn-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: #4ade80;
  line-height: 1;
  margin-bottom: 6px;
}
.sustain-num-card .sn-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.sustain-num-card.highlight {
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.2);
  grid-column: span 2;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy); }
.testimonials-wrap {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 120px;
  text-align: center;
}
.testi-stars { font-size: 20px; margin-bottom: 20px; color: var(--gold); }
.testi-quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 28px;
}
.testi-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.testi-biz {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testi-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── DISASTER RESPONSE BANNER ── */
.disaster-banner {
  background: var(--red);
  color: var(--white);
  padding: 32px 0;
}
.disaster-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.disaster-icon { font-size: 48px; flex-shrink: 0; }
.disaster-text h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.disaster-text p { font-size: 14px; color: rgba(255,255,255,0.85); max-width: 620px; }

/* ── NTOE CROSS-REFERRAL ── */
.ntoe-section { background: var(--white); }
.ntoe-banner {
  background: linear-gradient(135deg, #1a3a2a 0%, #0a2018 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ntoe-banner::before {
  content: '店';
  position: absolute;
  right: 280px; top: -20px;
  font-size: 180px;
  color: rgba(255,255,255,0.03);
  font-family: serif;
  line-height: 1;
}
.ntoe-label { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.ntoe-banner h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
.ntoe-banner p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 480px; line-height: 1.6; }
.ntoe-banner-cta { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ── BECOME CUSTOMER ── */
.become-section { background: var(--navy); }
.become-inner { text-align: center; }
.become-inner .section-label { color: var(--gold); }
.become-inner h2 { color: var(--white); margin-bottom: 16px; }
.become-inner > p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 48px; font-size: 16px; }
.become-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.become-step { padding: 24px 32px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.become-step h4 { color: var(--white); font-size: 15px; margin-bottom: 8px; }
.become-step p { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── FOOTER ── */
.footer { background: #070f1a; color: var(--white); }
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-logo .logo-main {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}
.footer-brand-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item strong { color: rgba(255,255,255,0.85); display: block; margin-bottom: 2px; font-size: 12px; }
.footer-contact-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image-stack { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ntoe-banner { grid-template-columns: 1fr; }
  .ntoe-banner-cta { align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container, .container-wide { padding: 0 24px; }
  .section { padding: 64px 0; }
  .hero-content { padding: 0 24px 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: 1fr; }
  .sustain-inner { grid-template-columns: 1fr; gap: 40px; }
  .become-steps { grid-template-columns: 1fr; }
  .become-steps::before { display: none; }
  .testimonial-card { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-features { grid-template-columns: 1fr; }
  .ntoe-banner { padding: 36px 28px; }
  .sustain-items { grid-template-columns: 1fr; }
  .sustain-visual { grid-template-columns: 1fr 1fr; }
  .sustain-num-card.highlight { grid-column: span 2; }
  h1 { font-size: 2rem; }
}
