/* ============================================
   HIDE HOMEPAGE ELEMENTS ON SERVICE PAGES
   ============================================ */
.video-stage {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

/* ============================================
   LOGO - OVERLAY ON SERVICE PAGES
   ============================================ */
.logo-static {
  position: absolute !important;
  top: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 180px !important;
  height: 180px !important;
  margin: 0 !important;
  display: block !important;
  z-index: 20 !important;
}

.logo-static img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Override sticky logo on service pages */
.logo-sticky {
  position: absolute !important;
  top: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 180px !important;
  height: 180px !important;
  margin: 0 !important;
  z-index: 20 !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/img/flower-helix.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw;
  max-width: 1200px;
}

.hero-panel {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-light);
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.28;
  color: var(--mint-pale);
  letter-spacing: -0.015em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.28;
  color: var(--mint-pale);
  letter-spacing: -0.015em;
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.3;
  color: var(--mint-pale);
  letter-spacing: -0.01em;
}

.lorem {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(238, 247, 240, 0.82);
  max-width: 48ch;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px -8px rgba(255, 91, 53, 0.55), 0 0 0 1px rgba(16, 32, 26, 0.06) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(255, 91, 53, 0.65);
}

.cta:focus-visible {
  outline: 3px solid var(--mint-pale);
  outline-offset: 3px;
}

.cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.cta:hover svg {
  transform: translateX(3px);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  position: relative;
  z-index: 1;
  padding: 80px 6vw;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
  text-align: center;
}

.section-header .eyebrow {
  justify-self: center;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
}

/* ============================================
   SERVICE OVERVIEW
   ============================================ */
.service-overview {
  background: var(--ink);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.overview-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 35px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.55);
}

.overview-item h3 {
  color: var(--pink-light);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  background: var(--ink);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.55);
  background: rgba(13, 26, 18, 0.55);
}

.feature-icon {
  font-size: 3rem;
  color: var(--pink-deep);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--mint-pale);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(238, 247, 240, 0.75);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--ink);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.why-us-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us-item .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 4px;
}

.why-us-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(238, 247, 240, 0.82);
}

.why-us-image {
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  text-align: center;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-image .placeholder {
  font-size: 4rem;
  color: var(--pink-deep);
  opacity: 0.5;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--ink);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.55);
}

.faq-question {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--glass-bg);
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(13, 26, 18, 0.55);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--mint-pale);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-light);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 32px 32px 32px;
  color: rgba(238, 247, 240, 0.82);
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid var(--glass-border);
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, rgba(47, 76, 57, 0.3) 0%, rgba(13, 26, 18, 0.5) 100%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.cta-box {
  max-width: 700px;
  padding: 50px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.cta-box .eyebrow {
  display: inline-block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-us-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 6vw;
  }

  .hero-panel {
    padding: 30px 24px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .why-us-content {
    gap: 30px;
  }

  .why-us-image {
    min-height: 250px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .logo-static,
  .logo-sticky {
    width: 140px !important;
    height: 140px !important;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 4vw;
  }

  .hero-panel {
    padding: 24px 20px;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .overview-grid {
    gap: 20px;
  }

  .overview-item {
    padding: 20px;
  }

  .why-us-item .icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .logo-static,
  .logo-sticky {
    width: 120px !important;
    height: 120px !important;
  }
}