/* =========================================
   Cannabis Consultants — Premium Site CSS
   ========================================= */

/* === TOKENS === */
:root {
  --navy-deep:     #14202E;
  --navy-mid:      #1C2D42;
  --navy-light:    #243550;
  --green-cta:     #4A7040;
  --green-light:   #5E9152;
  --green-accent:  #3D6B35;
  --blue-logo:     #3A6EA8;
  --blue-light:    #5B8EC9;
  --off-white:     #F4F6F8;
  --warm-white:    #EEF1F5;
  --dark:          #0D1720;
  --charcoal:      #1C2A38;
  --mid-gray:      #7A8A9A;
  --light-text:    rgba(20,32,46,0.6);
  --border:        rgba(0,0,0,0.08);
  --border-light:  rgba(0,0,0,0.15);
  --shadow-sm:     0 2px 12px rgba(13,23,32,0.2);
  --shadow-md:     0 8px 32px rgba(13,23,32,0.3);
  --shadow-lg:     0 20px 60px rgba(13,23,32,0.4);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:         124px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy-deep);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
details summary { cursor: pointer; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.label--light { color: var(--green-light); }

/* Scroll animation base */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; }
.btn--primary {
  background: var(--green-cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74,112,64,0.4);
}
.btn--primary:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,112,64,0.5);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid var(--border-light);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn--gold {
  background: var(--green-cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74,112,64,0.4);
}
.btn--gold:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,112,64,0.5);
}
.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--green-light);
  color: var(--green-light);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img,
.nav__logo svg { height: 112px; width: auto; display: block; max-width: none; }
.footer__brand img,
.footer__brand svg { height: 112px; width: auto; display: block; margin-bottom: 8px; }
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(20,32,46,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--navy-deep); }
.nav__links a:hover::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--navy-deep); }
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav__cta { margin-left: 16px; padding: 8px 16px; font-size: 0.8rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(20,32,46,0.8);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #fff;
  color: var(--navy-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  z-index: 99;
}
.nav__mobile.open { display: flex; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy-mid) 60%, #1A3050 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(74,112,64,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(58,110,168,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,112,64,0.15);
  border: 1px solid rgba(94,145,82,0.35);
  color: var(--green-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero__badge-icon { color: var(--green-light); font-size: 1rem; }
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--green-light);
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__sub strong { color: #fff; }
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__sms {
  font-size: 0.85rem;
  color: var(--light-text);
}
.hero__sms strong { color: var(--green-light); }
.hero__asset {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.hero__asset-placeholder {
  position: relative;
  width: 400px;
  height: 400px;
}
.hero__asset-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,61,43,0.1);
  animation: spin-slow linear infinite;
}
.hero__asset-ring--1 {
  inset: 0;
  animation-duration: 20s;
}
.hero__asset-ring--2 {
  inset: 40px;
  border-color: rgba(201,168,76,0.15);
  animation-duration: 30s;
  animation-direction: reverse;
}
.hero__asset-ring--3 {
  inset: 80px;
  animation-duration: 40s;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* === TRUST BAR === */
.trust-bar {
  background: var(--navy-light);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.trust-bar__suffix, .trust-bar__prefix {
  font-size: 1.5rem;
  color: var(--green-light);
  font-weight: 700;
}
.trust-bar__letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.trust-bar__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}
.trust-bar__item--featured { background: rgba(201,168,76,0.08); }

/* === QUALIFY === */
.qualify {
  padding: 56px 0;
  background: var(--off-white);
}
.qualify__header {
  text-align: center;
  margin-bottom: 56px;
}
.qualify__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
  margin-bottom: 16px;
}
.qualify__header p { color: var(--light-text); font-size: 1.1rem; }
.qualify__steps {
  max-width: 640px;
  margin: 0 auto;
}
.qualify__step {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.qualify__step--hidden { display: none; }
.qualify__question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.qualify__conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.qualify__conditions li {
  font-size: 0.9rem;
  color: var(--light-text);
  padding: 6px 12px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius-sm);
}
.qualify__options { display: flex; gap: 12px; flex-wrap: wrap; }
.qualify__btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.qualify__btn:first-child {
  background: var(--green-cta);
  color: #fff;
}
.qualify__btn:first-child:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
}
.qualify__btn:last-child {
  background: var(--off-white);
  color: var(--light-text);
  border: 1px solid rgba(0,0,0,0.1);
}
.qualify__btn:last-child:hover { color: var(--green-cta); border-color: var(--green-cta); }
.qualify__result {
  text-align: center;
}
.qualify__result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-cta);
  color: #fff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.qualify__result h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.qualify__result p {
  color: var(--light-text);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* === PROCESS === */
.process {
  padding: 100px 0;
  background: #fff;
  color: var(--navy-deep);
}
.process__header {
  text-align: center;
  margin-bottom: 64px;
}
.process__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.process__step:last-child { border-bottom: none; }
.process__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-light);
  opacity: 0.8;
  line-height: 1;
}
.process__content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.process__content p { color: var(--light-text); line-height: 1.7; }
.process__cta { text-align: center; margin-top: 48px; }
.process .btn--outline {
  color: var(--navy-deep);
  border-color: rgba(0,0,0,0.2);
}
.process .btn--outline:hover {
  color: var(--navy-deep);
  border-color: var(--green-light);
  background: transparent;
}

/* === PRICING SNAPSHOT === */
.pricing-snap {
  padding: 100px 0;
  background: var(--off-white);
}
.pricing-snap__header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-snap__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
}
.pricing-snap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-snap__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-snap__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-snap__card--featured {
  border-color: var(--green-light);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.2), var(--shadow-md);
}
.pricing-snap__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-snap__tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 16px;
}
.pricing-snap__price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 24px;
}
.pricing-snap__price span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--light-text);
}
.pricing-snap__features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-snap__features li {
  font-size: 0.9rem;
  color: var(--light-text);
  padding-left: 20px;
  position: relative;
}
.pricing-snap__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-cta);
  font-weight: 700;
}
.pricing-snap__card .btn { width: 100%; justify-content: center; }
.pricing-snap__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-text);
  margin-top: 32px;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 56px 0;
  background: #fff;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonials__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonials__stars {
  color: var(--green-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonials__card blockquote {
  font-size: 0.95rem;
  color: var(--navy-deep);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonials__card cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-text);
  font-style: normal;
}
.testimonials__reviews-link { text-align: center; margin-top: 40px; }

/* === ABOUT TEASER === */
.about-teaser {
  padding: 56px 0;
  background: var(--off-white);
}
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.about-teaser__content p {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-teaser__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.about-teaser__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  min-width: 80px;
}
.about-teaser__badge strong {
  font-size: 1.5rem;
  color: var(--green-light);
}
.about-teaser__badge span {
  font-size: 0.7rem;
  color: var(--light-text);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-teaser__img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(26,61,43,0.08) 0%, rgba(201,168,76,0.08) 100%);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(26,61,43,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-teaser__img-placeholder::after {
  content: 'CLINIC PHOTO PLACEHOLDER\A500px × 600px';
  white-space: pre;
  text-align: center;
  font-size: 0.8rem;
  color: var(--light-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === FAQ TEASER === */
.faq-teaser {
  padding: 100px 0;
  background: #fff;
}
.faq-teaser__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-teaser__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
}
.faq-teaser__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-teaser__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-teaser__item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-teaser__item summary:hover { background: var(--off-white); }
.faq-teaser__item summary::marker { display: none; }
.faq-teaser__item summary::-webkit-details-marker { display: none; }
.faq-teaser__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--green-cta);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-teaser__item[open] summary::after { transform: rotate(45deg); }
.faq-teaser__item p {
  padding: 0 24px 20px;
  color: var(--light-text);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-teaser__link { text-align: center; margin-top: 40px; }

/* === FINAL CTA === */
.cta-final {
  padding: 28px 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-final__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-final__inner h2 em {
  font-style: italic;
  color: var(--green-light);
}
.cta-final__inner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-final__hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 16px 0 10px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 12px;
}
.footer__brand img { margin-bottom: 6px; }
.footer__brand p { font-size: 0.8rem; line-height: 1.6; margin-bottom: 8px; }
.footer__bbb { font-size: 0.8rem; color: var(--green-light); }
.footer__nav, .footer__contact, .footer__press { display: flex; flex-direction: column; gap: 5px; }
.footer__nav h3, .footer__contact h3, .footer__press h3 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__nav a, .footer__contact a {
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--green-light); }
.footer__contact p { font-size: 0.8rem; line-height: 1.5; }
.footer__press p { font-size: 0.8rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* === SALUX LOGO === */
.salux-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.salux-logo__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background-image: url('../assets/salux-logo.png');
  background-size: 110px 110px;
  background-position: left center;
  background-repeat: no-repeat;
}
.salux-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.salux-logo__name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}
.salux-logo__growth {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
}
.salux-logo__sub {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.salux-logo--footer { margin-bottom: 16px; }

/* === PILLARS === */
.pillars {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillars__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid var(--border);
}
.pillars__item:last-child { border-right: none; }
.pillars__item--featured { background: rgba(74,112,64,0.08); }
.pillars__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(74,112,64,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}
.pillars__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.pillars__item p { font-size: 0.875rem; color: var(--light-text); line-height: 1.6; }

/* === SERVICES === */
.services {
  padding: 56px 0;
  background: var(--off-white);
}
.services__header {
  text-align: center;
  margin-bottom: 56px;
}
.services__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-deep);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services__card {
  background: #e2e4e7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.services__card:hover {
  border-color: rgba(94,145,82,0.4);
  box-shadow: 0 0 0 1px rgba(94,145,82,0.15), var(--shadow-md);
  transform: translateY(-4px);
}
.services__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(74,112,64,0.12);
  border: 1px solid rgba(74,112,64,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  margin-bottom: 24px;
}
.services__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.services__card p { font-size: 0.9rem; color: #111; line-height: 1.7; margin-bottom: 24px; }
.services__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-light);
  transition: color var(--transition);
  margin-top: auto;
}
.services__link:hover { color: var(--navy-deep); }
.services__cta { text-align: center; margin-top: 48px; }

/* === VIDEO SECTION === */
.video-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, #0A1F14 0%, var(--navy-deep) 50%, #0D2318 100%);
  overflow: hidden;
  isolation: isolate;
}
.video-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(45,122,79,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 90% 80%, rgba(26,61,43,0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Animated orbital rings behind the video frame */
.video-section__orbitals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section__orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: orbital-spin linear infinite;
}
.video-section__orbital--1 {
  width: 700px; height: 700px;
  animation-duration: 25s;
}
.video-section__orbital--2 {
  width: 900px; height: 900px;
  border-color: rgba(45,122,79,0.1);
  animation-duration: 40s;
  animation-direction: reverse;
}
.video-section__orbital--3 {
  width: 1100px; height: 1100px;
  border-color: rgba(201,168,76,0.06);
  animation-duration: 60s;
}
@keyframes orbital-spin { to { transform: rotate(360deg); } }

/* Orbiting dots */
.video-section__orbital-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.6;
}
.video-section__orbital-dot--1 {
  top: calc(50% - 350px);
  left: 50%;
  animation: dot-orbit-1 25s linear infinite;
  transform-origin: 0 350px;
}
.video-section__orbital-dot--2 {
  top: calc(50% - 450px);
  left: 50%;
  background: var(--green-light);
  opacity: 0.5;
  animation: dot-orbit-2 40s linear infinite reverse;
  transform-origin: 0 450px;
}
.video-section__orbital-dot--3 {
  top: calc(50% - 550px);
  left: 50%;
  opacity: 0.3;
  animation: dot-orbit-3 60s linear infinite;
  transform-origin: 0 550px;
}
@keyframes dot-orbit-1 { to { transform: rotate(360deg); } }
@keyframes dot-orbit-2 { to { transform: rotate(360deg); } }
@keyframes dot-orbit-3 { to { transform: rotate(360deg); } }

.video-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.video-section__header {
  text-align: center;
  max-width: 600px;
}
.video-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.video-section__header h2 em { color: var(--green-light); font-style: italic; }
.video-section__header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; }

/* The video frame wrapper — cinematic aspect ratio container */
.video-section__frame-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.25),
    0 0 60px rgba(201,168,76,0.1),
    0 40px 120px rgba(0,0,0,0.5);
}

/* Corner accent brackets — gold L-shapes */
.video-section__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 3;
}
.video-section__corner--tl {
  top: 12px; left: 12px;
  border-top: 2px solid var(--green-light);
  border-left: 2px solid var(--green-light);
}
.video-section__corner--tr {
  top: 12px; right: 12px;
  border-top: 2px solid var(--green-light);
  border-right: 2px solid var(--green-light);
}
.video-section__corner--bl {
  bottom: 12px; left: 12px;
  border-bottom: 2px solid var(--green-light);
  border-left: 2px solid var(--green-light);
}
.video-section__corner--br {
  bottom: 12px; right: 12px;
  border-bottom: 2px solid var(--green-light);
  border-right: 2px solid var(--green-light);
}

/* Scanning gold line animation */
.video-section__scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--green-light) 50%, transparent 100%);
  opacity: 0.5;
  z-index: 2;
  animation: scan-down 3s ease-in-out infinite;
}
@keyframes scan-down {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}

/* The video element itself (or placeholder) */
.video-section__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

/* Placeholder shown until real video is added */
.video-section__frame-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0D2318 0%, #1A3D2B 50%, #0A1F14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}
.video-section__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  animation: pulse-play 2.5s ease-in-out infinite;
}
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
  50%       { box-shadow: 0 0 0 16px rgba(201,168,76,0); }
}
.video-section__frame-placeholder:hover .video-section__play-btn {
  background: rgba(201,168,76,0.3);
  transform: scale(1.08);
}
.video-section__placeholder-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.video-section__placeholder-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.video-section__cta { text-align: center; }

/* === MOBILE STICKY BAR === */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.3);
}
.sticky-mobile__btn {
  display: block;
  text-align: center;
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-cta), var(--green-light));
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .hero__asset-ring { animation: none; }
  .video-section__orbital,
  .video-section__orbital-dot,
  .video-section__scan-line,
  .video-section__play-btn { animation: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr auto; gap: 24px; }
  .about-teaser__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 88px; }
  .nav { height: var(--nav-h); }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo img, .nav__logo svg { height: 72px; }
  .container { padding: 0 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .services { padding: 36px 0; }
  .services__header h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .services__header { margin-bottom: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 12px; }
  .footer__brand p { font-size: 0.78rem; }
  .footer__bottom { padding-top: 10px; }
  .sticky-mobile { display: block; }
  body { padding-bottom: 56px; }
  .cta-final { padding: 24px 0; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .cta-final__actions .btn { width: 100%; justify-content: center; }
  .cta-final__inner h2, .cta-final h2 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .cta-final p { font-size: 0.875rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 72px; }
  .nav { height: var(--nav-h); }
  .nav__logo img, .nav__logo svg { height: 56px; }
  .services__card { padding: 24px 20px; }
  .footer__brand img, .footer__brand svg { height: 72px; }
}
