/* ===== Variables (single source of truth) ===== */
:root {
  --bg: #0E0E0E;
  --ink: #0E0E0E;
  --accent: #6FBEF0;
  --accent-soft: rgba(111, 190, 240, .12);
  --line: rgba(14, 14, 14, .08);
  --muted: #5b5b62;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 30px 80px -30px rgba(14, 14, 14, .25);

  /* hero / dark-surface helpers */
  --text-dim: rgba(255, 255, 255, .72);
  --glass: rgba(255, 255, 255, .06);
  --glass-border: rgba(255, 255, 255, .10);
}

/* ===== Reset ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.serif {
  font-family: 'Playfair Display', serif;
  letter-spacing: -.02em;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ===== Section shell + headings (restored) ===== */
section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 5px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 5px;
}

h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 60px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 14px 40px -10px rgba(111, 190, 240, .55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 20px 50px -10px rgba(255, 255, 255, .4);
}

.btn-ghost {
  background: var(--glass);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(140%);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-3px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45) saturate(.85);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, .2) 0%, rgba(14, 14, 14, .55) 100%);
}

/* Decorative orbs */
.hero-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(90px);
  opacity: .35;
  top: -60px;
  right: 10%;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb.o2 {
  width: 260px;
  height: 260px;
  background: rgba(111, 190, 240, .55);
  top: auto;
  right: auto;
  bottom: -40px;
  left: 5%;
  animation-duration: 10s;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.08); }
}

/* White fade above the divider */
.hero-fade {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, .12) 45%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 24px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(111, 190, 240, .6);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .7; }
}

/* Heading */
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 900px;
  margin-bottom: 10px;
}

.hero-h1 .accent {
  color: var(--accent);
  font-style: italic;
  text-shadow: 0 0 30px rgba(111, 190, 240, .25);
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-stats .s {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stats .num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats .lbl {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Divider curve */
.hero-divider {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-divider svg {
  display: block;
  width: 100%;
  height: 160px;
}

/* ===== Hero responsive ===== */

@media (max-width: 1000px) {
  .hero {
    min-height: 58vh;
  }

  .hero-inner {
    padding: 0 22px;
  }

  .hero-h1 {
    font-size: clamp(28px, 5.4vw, 46px);
    margin-bottom: 10px;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-divider svg {
    height: 100px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 10px 20px 20px;
  }

  .hero-h1 {
    font-size: clamp(24px, 8vw, 32px);
    margin-bottom: 12px;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 18px;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    width: 100%;
    justify-content: space-around;
    padding-top: 14px;
  }

  .hero-stats .num {
    font-size: 26px;
  }

  .hero-stats .lbl {
    font-size: 10.5px;
    letter-spacing: .1em;
  }

  .hero-divider svg {
    height: 60px;
  }
}


/* ===== Problem / Solution ===== */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ps-card {
  position: relative;
  padding: 44px;
  border-radius: 24px;
  overflow: hidden;
  transition: all .5s cubic-bezier(.2, .8, .2, 1);
}

.ps-card.problem {
  background: #0E0E0E;
  color: #fff;
}

.ps-card.solution {
  background: linear-gradient(160deg, #fff, #f4faff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ps-card:hover {
  transform: translateY(-8px);
}

.ps-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.problem .badge {
  background: rgba(255, 93, 93, .12);
  color: #ff8a8a;
}

.solution .badge {
  background: var(--accent-soft);
  color: var(--accent);
}

.ps-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.ps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
}

.ps-list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.problem .ps-list li {
  color: rgba(255, 255, 255, .78);
}

.problem .ps-list svg {
  color: #ff8a8a;
}

.solution .ps-list svg {
  color: var(--accent);
}

/* ===== About ===== */
.about {
  background: #fafafa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s;
}

.about-visual:hover img {
  transform: scale(1.06);
}

.about-visual .glass-tag {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  color: #fff;
}

.about-visual .glass-tag .label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
}

.about-visual .glass-tag .val {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-top: 4px;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16.5px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.af {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .3s;
}

.af:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.af svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.af span {
  font-size: 14px;
  font-weight: 500;
}

/* ===== CTA Booking ===== */
.cta-book {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #0E0E0E;
  color: #fff;
  border-radius: 32px;
  padding: 60px;
  overflow: hidden;
}

.cta-book::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 190, 240, .3), transparent 70%);
  filter: blur(40px);
}

.cta-book .left {
  position: relative;
}

.cta-book h2 {
  color: #fff;
  text-align: left;
}

.cta-book h2 .accent {
  color: var(--accent);
}

.cta-book p {
  color: rgba(255, 255, 255, .72);
  margin-top: 18px;
  font-size: 16px;
  max-width: 480px;
}

.cta-perks {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-perks li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .85);
}

.cta-perks svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.cta-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
}

.cta-form label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: -6px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all .3s;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--accent);
  background: rgba(111, 190, 240, .06);
}

.cta-form textarea {
  resize: vertical;
  min-height: 80px;
}

.cta-form button {
  margin-top: 8px;
  justify-content: center;
}

/* ===== Part 2 responsive ===== */
@media (max-width: 1000px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    text-align: center;
  }

  .cta-book {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px;
  }

  .cta-book h2 {
    text-align: center;
  }

  .cta-book p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .ps-card {
    padding: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cta-book {
    padding: 28px;
    border-radius: 24px;
  }

  .cta-form {
    padding: 22px;
  }
}

/* ===== Products ===== */
/* ═══════════════════════════════════════════
   PRODUCTS SLIDER
═══════════════════════════════════════════ */
.prod-slider {
  position: relative;
  margin-top: 50px;
}

.prod-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
  scrollbar-width: none;
}

.prod-track::-webkit-scrollbar {
  display: none;
}

.prod {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s cubic-bezier(.2, .8, .2, 1), border-color .5s;
  display: flex;
  flex-direction: column;
}

.prod:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.prod-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.prod-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.prod:hover .prod-img img {
  transform: scale(1.08);
}

.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0E0E0E;
}

.prod-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.prod-body h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color .25s;
}

.prod-body h3 a:hover {
  color: var(--accent);
}

.prod-meta {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 18px;
}

.prod-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

.prod-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0E0E0E;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .3s;
}

.prod:hover .prod-arrow {
  background: var(--accent);
  color: #0E0E0E;
  transform: rotate(-45deg);
}

/* NAV ARROWS */
.prod-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: #0E0E0E;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(14, 14, 14, .25);
  transition: all .3s;
}

.prod-nav:hover {
  background: var(--accent);
  color: #0E0E0E;
  border-color: var(--accent);
}

.prod-prev {
  left: -22px;
}

.prod-next {
  right: -22px;
}

.prod-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .prod {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .prod-prev {
    left: 6px;
  }
  .prod-next {
    right: 6px;
  }
}

@media (max-width: 600px) {
  .prod {
    flex: 0 0 100%;
  }
  .prod-nav {
    display: none;
  }
}

/* ===== Reviews ===== */
.reviews {
  background: #fafafa;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rev {
  position: relative;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: all .4s;
}

.rev:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.rev .quote {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--accent);
  opacity: .3;
}

.rev-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #f5b500;
}

.rev-text {
  color: #333;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.rev-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0E0E0E);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.rev-author .nm {
  font-weight: 600;
  font-size: 14.5px;
}

.rev-author .loc {
  font-size: 12.5px;
  color: var(--muted);
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bl {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: all .4s;
}

.bl:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.bl-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.bl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s;
}

.bl:hover .bl-img img {
  transform: scale(1.08);
}

.bl-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bl-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.bl-meta .cat {
  color: var(--accent);
  font-weight: 600;
}

.bl h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.bl h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color .3s;
}

.bl h3 a:hover {
  color: var(--accent);
}

.bl p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 18px;
  flex: 1;
}

.bl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: gap .3s;
}

.bl:hover .bl-link {
  gap: 14px;
}

/* ===== Why Us ===== */
.why {
  position: relative;
  overflow: hidden;
  background: #0E0E0E;
  color: #fff;
}

.why::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(111, 190, 240, .15), transparent 60%);
}

.why .section-head {
  position: relative;
}

.why .section-head h2 {
  color: #fff;
}

.why .section-head p {
  color: rgba(255, 255, 255, .7);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 32px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all .4s;
}

.why-card:hover {
  background: rgba(111, 190, 240, .08);
  border-color: var(--accent);
  transform: translateY(-6px);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), rgba(111, 190, 240, .4));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #0E0E0E;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, .7);
  font-size: 14.5px;
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  transition: color .3s;
}

.faq-item:hover .faq-q {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fafafa;
  display: grid;
  place-items: center;
  color: #0E0E0E;
  transition: all .4s;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15.5px;
  transition: max-height .5s ease, padding .3s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 18px;
}

/* ===== Reveal (single definition) ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ===== Part 3 responsive ===== */
@media (max-width: 1000px) {
  section {
    padding: 80px 0;
  }

  .prod-grid,
  .rev-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .prod-grid,
  .rev-grid,
  .blog-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-q {
    font-size: 17px;
  }
}