/* ============================================================
   Junky Guy — Premium Design System
   Visual Identity: Deep Forest Green (#163b2e), Warm Cream (#fbfbfa), Accent Amber (#d97706)
   ============================================================ */
:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;

  --primary: #1e293b;
  --primary-dark: #0f172a;
  --brand: #2f855a;
  --brand-dark: #225e3f;

  --accent: #f59e0b;
  --accent-dark: #d97706;

  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --border: #e2e8f0;
  --muted: #64748b;

  --radius: 20px;
  --radius-btn: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-header: 0 4px 20px -4px rgba(15, 23, 42, 0.05);

  --font-body: "Google Sans", "Product Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;

  --container: 1200px;
  --pad-x: 24px;
  --gap: 32px;

  --section-y: 70px;
}

/* ============================================================
   Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.h1 {
  font-size: 40px;
  font-weight: 700;
}

.h2 {
  font-size: 32px;
  font-weight: 700;
}

.h3 {
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .h1 {
    font-size: 64px;
  }

  .h2 {
    font-size: 40px;
  }

  .h3 {
    font-size: 24px;
  }
}

.small {
  font-size: 14px;
}

.muted {
  color: var(--muted);
}

.strong {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: 48px;
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--section-y);
  }
}

.section--muted {
  background: var(--bg-alt);
}

.section__head {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__head .h2 {
  margin-top: 10px;
}

.section__lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.section__note {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

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

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

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding-inline: 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}

.btn svg {
  transition: stroke 0.3s ease, color 0.3s ease;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--brand-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(34, 94, 63, 0.3) !important;
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: var(--white);
  border-color: var(--brand);
  color: var(--brand);
}

.btn--outline:hover {
  background: var(--brand) !important;
  color: var(--white) !important;
  border-color: var(--brand) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(47, 133, 90, 0.2) !important;
}

.btn--outline:hover svg {
  stroke: var(--white) !important;
  color: var(--white) !important;
}

.btn--outline:active {
  transform: translateY(0);
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.nav.is-scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-header);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav .brand {
  margin-left: -24px;
}

.brand__logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand__logo--footer {
  height: 220px;
  width: auto;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px;
  mix-blend-mode: normal;
  box-shadow: var(--shadow-soft);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--brand);
}

.nav__cta {
  display: none;
  height: 48px;
  padding-inline: 20px;
  font-size: 16px;
}

.nav__toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__toggle {
    display: none;
  }
}

.nav__mobile {
  border-top: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-header);
}

.nav__mobile .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 16px;
}

.nav__mobile a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
}

.nav__mobile a:hover {
  background: var(--surface-soft);
  color: var(--brand);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: 110px;
  padding-bottom: 56px;
  background: radial-gradient(40% 40% at 90% 10%, rgba(47, 133, 90, 0.03), transparent 80%);
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}

.hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
}

.hero__badge--trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface-soft);
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.hero__badge--trust svg {
  color: var(--brand);
  flex-shrink: 0;
}

.hero .h1 {
  margin-top: 20px;
  max-width: 680px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

@media (min-width: 1024px) {
  .hero .h1 {
    font-size: 64px;
  }
}

.lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

.hero__ctas {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__ctas .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
    align-items: center;
  }

  .hero__ctas .btn {
    width: auto;
  }
}

.hero__rating {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 1px;
}

.hero__rating-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.hero__trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.hero__trust svg {
  color: var(--brand);
  flex-shrink: 0;
}

.hero__imgwrap {
  position: relative;
}

.hero__imgwrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: right center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__imgwrap:hover img {
  transform: translateY(-2px) scale(1.005);
}

@media (min-width: 1024px) {
  .hero__imgwrap img {
    aspect-ratio: 1 / 1;
  }
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--hover {
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.card--hover:hover {
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
  transform: translateY(-4px) scale(1) !important;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 4px 12px -5px rgba(15, 23, 42, 0.02) !important;
}

.card--hover .card__title {
  transition: color 0.3s ease;
}

.card--hover:hover .card__title {
  color: var(--white) !important;
}

.card--hover .card__desc {
  transition: color 0.3s ease;
}

.card--hover:hover .card__desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

.card--hover .card__icon {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.card--hover:hover .card__icon {
  background: var(--white) !important;
  color: var(--brand) !important;
  border-color: var(--white) !important;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(47, 133, 90, 0.08);
  color: var(--brand);
  flex-shrink: 0;
}

.card__title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.card__desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Pricing */
#pricingGrid {
  max-width: 900px;
  margin-inline: auto;
}

.plan {
  position: relative;
  background-color: var(--white);
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.plan:hover {
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
  transform: translateY(-4px) scale(1) !important;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 4px 12px -5px rgba(15, 23, 42, 0.02) !important;
}

.plan h3 {
  transition: color 0.3s ease;
}

.plan:hover h3 {
  color: var(--white) !important;
}

.plan__price-amount {
  transition: color 0.3s ease;
}

.plan:hover .plan__price-amount {
  color: var(--white) !important;
}

.plan__price-tag {
  transition: color 0.3s ease;
}

.plan:hover .plan__price-tag {
  color: rgba(255, 255, 255, 0.8) !important;
}

.plan__features li {
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.plan:hover .plan__features li {
  color: rgba(255, 255, 255, 0.9) !important;
  border-bottom-color: rgba(255, 255, 255, 0.15) !important;
}

.plan__features svg {
  transition: color 0.3s ease;
}

.plan:hover .plan__features svg {
  color: var(--white) !important;
}

.plan .btn {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover .btn {
  background: var(--white) !important;
  color: var(--brand) !important;
  border-color: var(--white) !important;
}

.plan:hover .btn:hover {
  background: #f0fdf4 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.plan--featured {
  border-color: var(--brand);
  border-width: 2px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.plan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan__badge {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan__price {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan__price-tag {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.plan__price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.plan__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(34, 51, 59, 0.06);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.plan__features li:last-child {
  border-bottom: none;
}

.plan__features svg {
  color: var(--accent);
  flex-shrink: 0;
}

.plan .btn {
  margin-top: 28px;
  width: 100%;
}

/* Areas */
.area-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
  transform: translateY(-4px) scale(1) !important;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 4px 12px -5px rgba(15, 23, 42, 0.02) !important;
}

.area-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.area-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.area-card:hover .area-card__img img {
  transform: scale(1.04);
}

.area-card__body {
  padding: 24px;
}

.area-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.area-card:hover .area-card__head {
  color: var(--white) !important;
}

.area-card__head svg {
  color: var(--accent);
  transition: color 0.3s ease;
}

.area-card:hover .area-card__head svg {
  color: var(--white) !important;
}

.area-card__body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.area-card:hover .area-card__body p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Testimonials */
.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote__stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}

.quote__text {
  margin: 16px 0 0;
  flex: 1;
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
}

.quote__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.quote__name {
  margin: 0;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

.quote__loc {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }
}

.contact-form label {
  display: block;
  margin-top: 16px;
}

.contact-form label:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row label {
  margin-top: 0 !important;
}

.contact-form span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  outline: none;
  transition: all .2s ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(47, 133, 90, 0.12);
}

.contact-form .btn {
  margin-top: 24px;
  width: 100%;
}

@media (min-width: 640px) {
  .contact-form .btn {
    width: fit-content;
    align-self: flex-start;
  }
}

.form-status {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.contact-info {
  gap: 20px;
  background: rgba(34, 51, 59, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-info .h3 {
  margin-bottom: 2px;
  color: #fff;
}

.contact-info .muted {
  color: rgba(255, 255, 255, 0.7);
}

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

.info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-list__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  flex-shrink: 0;
}

.info-list a {
  color: #fff;
  font-weight: 700;
}

.info-list a:hover {
  opacity: 0.85;
}

.info-list p {
  margin: 0;
}

.info-list .strong {
  color: #fff;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 64px 48px;
  background: var(--bg-alt);
}

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

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.35fr 0.825fr 0.825fr;
    gap: 56px;
  }
}

.footer__desc {
  margin-top: 16px;
  max-width: 280px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.footer__heading {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--brand);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: .1s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Typography Accent Emphases
   ============================================================ */
h1 i,
h2 i,
h3 i {
  font-family: inherit;
  font-style: italic;
  font-weight: inherit;
  color: var(--brand);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] {
  background: var(--bg-alt);
}

.faq-item:hover {
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
  transform: translateY(-2px) scale(1) !important;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 4px 12px -5px rgba(15, 23, 42, 0.02) !important;
}

.faq-item:hover .faq-question,
.faq-item:hover .faq-question span,
.faq-item:hover .faq-icon {
  color: var(--white) !important;
}

.faq-item:hover .faq-answer {
  color: rgba(255, 255, 255, 0.85) !important;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 8px 24px 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

/* Time range group layout */
.time-range-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.time-range-group label {
  margin-top: 0 !important;
}

/* QR Code Section in Contact Sidebar */
.qr-code-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 116px;
  height: 116px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-code-text h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.qr-code-text p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Hide QR Card on Mobile screen sizes */
@media (max-width: 1023px) {
  .qr-code-card {
    display: none;
  }
}

/* Appointment Success Screen */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: var(--brand);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--brand);
  animation: fill-check .4s ease-in-out .4s forwards, scale-check .3s ease-in-out forwards;
}

.success-checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: var(--brand);
  fill: none;
  animation: stroke-check .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #ffffff;
  animation: stroke-check .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 16px 0;
  font-family: var(--font-display);
}

.success-message {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 440px;
}

.success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 32px 0;
  max-width: 400px;
}

.success-reset-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  filter: grayscale(1) brightness(0.6);
  transition: opacity 0.2s;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

@keyframes stroke-check {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale-check {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill-check {
  100% {
    box-shadow: inset 0px 0px 0px 40px var(--brand);
  }
}

/* Floating QR Booking Widget */
.qr-floater {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.qr-floater__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--brand);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(47, 133, 90, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.qr-floater__btn:hover {
  transform: translateY(-4px);
  background: var(--brand-dark);
  box-shadow: 0 12px 35px rgba(47, 133, 90, 0.45);
}

.qr-floater__card {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(15px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.qr-floater__card:not([hidden]) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.qr-floater__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.qr-floater__close:hover {
  color: var(--primary-dark);
}

.qr-floater__qr-wrapper {
  background: #ffffff;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
}

.qr-floater__qr-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-floater__card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 700;
  font-family: var(--font-display);
}

.qr-floater__card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* Hide on mobile screens */
@media (max-width: 1023px) {
  .qr-floater {
    display: none;
  }
}