/* ============================================================
   MY WISDOM TOOTH DENTIST — Shared Stylesheet
   Mobile-first | Parallax | AHPRA Compliant
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* --- CSS Variables / Brand Tokens --- */
:root {
  --teal:        #3B6472;
  --teal-dark:   #2C4F5A;
  --teal-light:  #4d8090;
  --teal-pale:   #EBF3F5;
  --orange:      #F4A061;
  --orange-dark: #E08840;
  --mint:        #8DC3A7;
  --blue-soft:   #9BB5D0;
  --pink-soft:   #F0A0A8;
  --white:       #FFFFFF;
  --off-white:   #F7F9FA;
  --text-dark:   #2C3E42;
  --text-mid:    #506872;
  --text-light:  #7A9DA8;
  --border:      #D8E8EC;
  --shadow-sm:   0 2px 8px rgba(59,100,114,0.10);
  --shadow-md:   0 6px 24px rgba(59,100,114,0.14);
  --shadow-lg:   0 12px 40px rgba(59,100,114,0.18);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-pill: 10px;
  --transition:  0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography Scale --- */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(244,160,97,0.22);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(244,160,97,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* === ANNOUNCEMENT BAR === */
.announce-bar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.announce-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.announce-bar a:hover { opacity: 0.85; }
@media (max-width: 767px) {
  .announce-bar { font-size: 0.78rem; padding: 9px 16px; }
  .announce-bar .announce-sep { display: none; }
  .announce-bar .announce-links { display: block; margin-top: 4px; }
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(30, 50, 58, 0.72); /* dark teal overlay — always visible over hero */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: all var(--transition);
}

.site-nav.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
  padding: 10px 0;
}

/* Switch logo to colour version once scrolled */
.site-nav .logo-hero { display: block; }
.site-nav .logo-scrolled { display: none; }
.site-nav.scrolled .logo-hero { display: none; }
.site-nav.scrolled .logo-scrolled { display: block; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 44px; width: auto; }
.nav-logo .logo-placeholder {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.1;
}

.nav-links {
  display: none;
  gap: 8px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
/* After scroll — dark text */
.site-nav.scrolled .nav-links a {
  color: var(--text-dark);
}
.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active {
  background: var(--teal-pale);
  color: var(--teal);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: none;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}
.nav-phone:hover { color: var(--white); }
.site-nav.scrolled .nav-phone { color: var(--teal); }
.site-nav.scrolled .nav-phone:hover { color: var(--orange); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9); /* white on dark hero */
  border-radius: 2px;
  transition: all var(--transition);
}
.site-nav.scrolled .nav-hamburger span {
  background: var(--teal); /* teal once nav turns white */
}

/* Mobile nav open state */
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  padding: 12px 24px;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn { margin-top: 16px; font-size: 1.1rem; }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 68vh;  /* sub-fold: offer banner peeks below, pulling scroll */
  max-height: 760px; /* cap on very tall desktop monitors */
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--teal-dark);
}
@media (max-width: 767px) {
  .hero { min-height: 75svh; max-height: none; } /* ~75% viewport on mobile */
  .hero-content { padding: 80px 0 60px; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 20px; }
  .hero-trust { gap: 8px; }
  .trust-item { font-size: 0.78rem; }
}

/* Scroll cue arrow at bottom of hero */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  animation: bounce-down 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.9; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-team.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.45);
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.trust-item svg { flex-shrink: 0; }

/* === OFFER BANNER === */
.offer-banner {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.offer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.offer-price .currency { font-size: 2rem; font-weight: 800; color: var(--orange); }
.offer-price .amount  { font-size: 4rem; font-weight: 900; color: var(--white); line-height: 1; }
.offer-price .star    { font-size: 1.5rem; color: var(--orange); }

.offer-text h2 { color: var(--white); font-size: clamp(1.4rem, 4vw, 2rem); }
.offer-text p  { color: rgba(255,255,255,0.8); margin-top: 8px; }

.offer-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.offer-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.offer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* === SECTION WRAPPER === */
section { padding: 52px 0; } /* mobile-first: tighter to reduce scroll fatigue */

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

.section-header h2 { margin-bottom: 12px; }

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.icon-teal  { background: var(--teal-pale); color: var(--teal); }
.icon-orange{ background: var(--teal-pale); color: var(--teal); }
.icon-mint  { background: var(--teal-pale); color: var(--teal); }
.icon-blue  { background: var(--teal-pale); color: var(--teal); }

.card h3 { margin-bottom: 8px; font-size: 1.1rem; }

/* --- Impaction image cards --- */
.card--impaction {
  padding: 0;
  overflow: hidden;
}
.card--impaction .card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card--impaction .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card--impaction:hover .card-img img {
  transform: scale(1.04);
}
.card--impaction .card-body {
  padding: 20px 24px 24px;
}
.card--impaction .card-body h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.card--impaction .card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

/* === GRID LAYOUTS === */
.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 24px; }
.grid-4 { display: grid; gap: 20px; }

/* === WHY US SECTION === */
.why-us { background: var(--off-white); }

/* === HOW IT WORKS === */
.how-it-works { background: var(--white); }

.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-pale), transparent);
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 { font-size: 1.1rem; margin-bottom: 4px; }

/* === PARALLAX SECTION === */
.parallax-section {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.5);
  transform: scale(1.05);
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
  padding: 60px 0;
}

.parallax-content h2 { color: var(--white); margin-bottom: 16px; }
.parallax-content p  { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }

/* === PRICING TABLE === */
.price-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.price-row:last-child { border-bottom: none; }
.price-row.featured {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
}
.price-row .price-label { color: var(--text-dark); }
.price-row .price-amount { color: var(--teal); font-size: 1.2rem; font-weight: 800; }
.price-row.featured .price-amount { color: var(--orange-dark); font-size: 1.4rem; }

/* === FAQ ACCORDION === */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-trigger:hover { color: var(--teal); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.faq-icon svg { transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--teal); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-body p {
  padding: 0 0 20px;
  font-size: 0.95rem;
}
.faq-item.open .faq-body { max-height: 500px; }

/* === MAP & CONTACT === */
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius-md);
  display: block;
}

.info-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 2px; }
.info-card p  { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; margin: 0; }
.info-card a  { color: var(--teal); font-weight: 700; }
.info-card a:hover { color: var(--orange); }

/* === CONTACT FORM === */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* === FOOTER === */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo img { height: 36px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 280px; }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--mint); }
.footer-contact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 8px;
}

/* === DECORATIVE SHAPES === */
.petal-deco {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.03;
  pointer-events: none;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 560px; margin-top: 12px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* === FUND LOGOS BAR === */
.funds-bar {
  background: var(--off-white);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.funds-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.funds-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.fund-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition);
}
.fund-badge img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}
.fund-badge--text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  white-space: nowrap;
}
.fund-badge:hover { box-shadow: var(--shadow-sm); }

/* === STICKY BOOK CTA (mobile) === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.sticky-cta .btn { flex: 1; justify-content: center; }

/* === IMAGE PLACEHOLDER === */
.img-placeholder {
  background: linear-gradient(135deg, var(--teal-pale), var(--border));
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.img-placeholder svg { opacity: 0.4; }

/* === UTILITY === */
.text-teal   { color: var(--teal) !important; }
.text-orange { color: var(--orange) !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.hidden { display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ================================================================
   RESPONSIVE — Tablet (768px+)
   ================================================================ */
@media (min-width: 768px) {

  section { padding: 80px 0; }

  .nav-links  { display: flex; }
  .nav-phone  { display: block; }
  .nav-hamburger { display: none; }
  .mobile-menu   { display: none !important; }

  .sticky-cta { display: none; }

  .offer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .form-row { grid-template-columns: 1fr 1fr; }

  .map-embed iframe { height: 420px; }

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

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

/* ================================================================
   RESPONSIVE — Desktop (1024px+)
   ================================================================ */
@media (min-width: 1024px) {

  .hero-content { padding: 110px 0 60px; }

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

  .step-list {
    flex-direction: row;
    gap: 0;
  }
  .step-item {
    flex-direction: column;
    flex: 1;
    padding-bottom: 0;
    padding-right: 16px;
    align-items: flex-start;
  }
  .step-item:not(:last-child)::before {
    left: 62px;
    top: 22px;
    bottom: auto;
    right: 0;
    width: auto;
    height: 2px;
  }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }

  .info-grid { grid-template-columns: repeat(4, 1fr); }
}
