/* Clarity Creative - V2 (Rebrand to iwantclarity.com design system)
   Tokens extracted from Elementor kit post-22239.css + homepage post-6425.css
   White/black dominant, subtle orange + teal accents, pill buttons */

:root {
  /* Brand palette - exact from iwantclarity.com Elementor kit */
  --color-primary: #000000;
  --color-secondary: #1B1B1C;
  --color-text: #8D8D91;
  --color-accent: #CBCBCD;
  --color-white: #FFFFFF;
  --color-off-white: #FAFAFA;
  --color-sky: #8ECAE6;
  --color-teal: #219EBC;
  --color-navy: #023047;
  --color-amber: #FFB703;
  --color-orange: #F85000;
  --color-orange-hover: #e04a00;

  /* Semantic */
  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-off-white);
  --color-ink: var(--color-secondary);
  --color-ink-body: var(--color-text);
  --color-ink-muted: var(--color-accent);
  --color-border: #E8E8E8;
  --color-red: #dc2626;
  --color-green: #16a34a;

  /* Type - exact from Elementor kit */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Scale */
  --fs-hero: clamp(2.5rem, 4vw + 1rem, 4rem);
  --fs-h2: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
  --fs-h3: 1.25rem;
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;

  /* 8px grid */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* Layout */
  --max-w: 1100px;
  --r: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 80px;

  /* Elevation */
  --sh-1: 0 1px 3px rgba(0,0,0,0.04);
  --sh-2: 0 4px 12px rgba(0,0,0,0.06);
  --sh-3: 0 8px 30px rgba(0,0,0,0.08);
  --sh-4: 0 20px 60px rgba(0,0,0,0.12);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 250ms;
}

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

/* Base - Inter 300, 1.8em line-height from Elementor kit */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-ink-body);
  background: var(--color-bg);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Headings - Libre Baskerville 800 from Elementor kit */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.15;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* ========== Nav - exact mirror of iwantclarity.com Elementor header ========== */
/* Source: post-7122.css (header template) + post-22239.css (kit globals) */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0 4px 10px -8px rgba(0, 0, 0, 0.45);
  padding: 0 20px;            /* padding on outer element, same as original section */
}

.nav-inner {
  max-width: 1400px;          /* exact from elementor-element-524c19c9 container */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 25% 50% 25%;  /* exact Elementor column split */
  align-items: center;
  min-height: 65px;            /* exact from iwantclarity.com computed: 65.2px */
}

/* Logo - 25% column, image at 95% width */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: auto;
  width: 285px;               /* exact computed from iwantclarity.com: 285x42.75 */
  max-width: 100%;
}

/* Menu links - Inter 500, 16px, 1.2em line-height (typography 69f6034) */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;    /* center nav in its 50% column */
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 16px;             /* exact: --e-global-typography-69f6034-font-size */
  font-weight: 500;            /* exact: --e-global-typography-69f6034-font-weight */
  line-height: 1.2em;          /* exact: --e-global-typography-69f6034-line-height */
  color: #333333;              /* exact from header nav item color */
  text-decoration: none;
  padding: 13px 20px;          /* exact computed: 13px 20px */
  display: block;
  transition: color 150ms;
}

/* Dropdown caret for items with sub-menus */
.nav-item.has-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.nav-link:hover {
  color: #77BFF2;              /* exact from header hover color */
}

/* Dropdown - exact from header dropdown styles */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);  /* exact */
  min-width: 260px;
  list-style: none;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 200ms var(--ease);
}

.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  border-bottom: 1px solid rgba(132, 132, 132, 0.15);  /* exact */
}

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

.nav-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--color-ink);      /* --e-global-color-secondary: #1B1B1C */
  text-decoration: none;
  transition: background 150ms, color 150ms;
}

.nav-dropdown li a:hover {
  background: var(--color-sky); /* --e-global-color-f70b657: #8ECAE6 */
  color: #FFFFFF;               /* --e-global-color-dc170d1 */
}

/* CTA button - exact from kit button styles */
.nav-cta {
  font-family: var(--font-body);
  font-size: 16px;              /* typography 69f6034 */
  font-weight: 500;
  line-height: 1.2em;
  color: #FFFFFF;               /* --e-global-color-dc170d1 */
  background: #000000;          /* --e-global-color-primary */
  border: none;
  border-radius: 80px;          /* exact from kit: 80px 80px 80px 80px */
  padding: 10px 15px;           /* exact from header CTA button */
  text-decoration: none;
  justify-self: end;           /* align right in 25% column */
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: #FFB703;          /* --e-global-color-b560559 (amber) */
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s-2);
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  color: #000000;              /* --e-global-color-primary */
}

.nav-toggle:hover {
  color: var(--color-teal);    /* --e-global-color-3ed1701: #219EBC */
}

.nav-toggle span {
  display: block;
  width: 24px;                 /* --nav-menu-icon-size: 24px on mobile */
  height: 2px;
  background: currentColor;
  transition: all 200ms var(--ease);
}

/* ========== Hero - white bg, black text, matches iwantclarity.com ========== */
.hero {
  min-height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-24) var(--s-6) var(--s-16);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

/* ---- Hero diagonal streak ---- */
.hero-streak {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ---- Hero decorative elements ---- */
.hero-deco {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.hero-deco--left {
  left: clamp(24px, 5vw, 100px);
}

.hero-deco--right {
  right: clamp(24px, 5vw, 100px);
}

.hero-deco-dots {
  display: block;
}

.hero-deco-ring {
  width: 80px;
  height: 80px;
  border: 2.5px solid var(--color-sky);
  border-radius: 50%;
  opacity: 0.45;
  margin-top: var(--s-8);
  margin-left: var(--s-3);
}

.hero-deco-diamond {
  width: 52px;
  height: 52px;
  border: 2.5px solid var(--color-amber);
  opacity: 0.45;
  transform: rotate(45deg);
  margin-top: var(--s-8);
  margin-left: auto;
  margin-right: var(--s-3);
}

/* ---- Hero service highlights ---- */
/* ========== Value Prop ========== */
.value-prop {
  background: var(--color-bg-alt);
  padding: var(--s-20) var(--s-6);
}

.vp-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}

.vp-narrative h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: var(--s-6);
}

.vp-narrative p {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--color-ink-body);
}

.vp-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.vp-pillar {
  position: relative;
  padding-left: var(--s-6);
}

.vp-pillar-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  border-radius: 2px;
}

.vp-pillar:nth-child(1) .vp-pillar-accent { background: var(--color-orange); }
.vp-pillar:nth-child(2) .vp-pillar-accent { background: var(--color-amber); }
.vp-pillar:nth-child(3) .vp-pillar-accent { background: var(--color-teal); }
.vp-pillar:nth-child(4) .vp-pillar-accent { background: var(--color-sky); }

.vp-pillar h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-ink);
  margin-bottom: var(--s-2);
}

.vp-pillar p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--color-ink-body);
}

.hero-tag {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: var(--s-6);
}

.hero h1 {
  font-size: var(--fs-hero);
  color: var(--color-ink);
  line-height: 1.1;
  margin-bottom: var(--s-6);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-teal);
}

.hero-sub {
  font-size: var(--fs-body);
  color: var(--color-ink-body);
  max-width: 520px;
  margin: 0 auto var(--s-10);
  line-height: 1.8;
  font-weight: 300;
}

/* Primary CTA - orange pill, matches iwantclarity.com homepage CTA */
.hero-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: var(--r-pill);
  padding: 16px 40px;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}

.hero-btn:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--sh-3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--s-8);
  color: var(--color-ink-muted);
  animation: bobDown 2s var(--ease) infinite;
}

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========== Trust Strip ========== */

/* ========== Showcase ========== */
.showcase {
  background: var(--color-bg);
  padding: var(--s-24) 0;
  transition: background 0.8s ease;
}

.showcase--illuminated {
  background: rgba(142, 202, 230, 0.07);
}

.showcase-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.showcase-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-ink);
  text-align: center;
  margin-bottom: var(--s-10);
}

/* Caption above card (between headline and panel) */
.showcase-caption {
  text-align: center;
  margin-bottom: var(--s-6);
  min-height: 24px;
}

.showcase-caption-line {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
  letter-spacing: 0.01em;
  transition: opacity 0.4s var(--ease);
}

.showcase-caption-line.fading {
  opacity: 0;
}

/* --- GBP Panel (wide horizontal card) --- */
.gbp-panel {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
  overflow: visible;
  position: relative;
  transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}

.gbp-panel.gbp-glow {
  border-color: var(--color-amber);
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28), 0 0 24px rgba(255, 183, 3, 0.3);
}

.gbp-panel-grid {
  display: grid;
  grid-template-columns: 35% 30% 35%;
  grid-template-rows: 1fr;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

/* Top badge (Map Pack #1) */
.gbp-badge {
  display: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  background: var(--color-orange);
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.04em;
  border-radius: 8px 8px 0 0;
}

.gbp-badge.visible {
  display: block;
}

/* Annotation arrows overlay */
.gbp-annotations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 10;
}

.gbp-callout-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gbp-callout-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 4 3;
}

.gbp-callout-dot {
  display: none;
}

.gbp-callout-label {
  position: absolute;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 5px 12px;
  box-shadow: 0 2px 8px rgba(32, 33, 36, 0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.gbp-callout-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gbp-callout-group {
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gbp-callout-group.visible {
  opacity: 1;
}

/* Element highlight pulse (applied to changed items) */
.gbp-highlight {
  animation: gbpHighlight 1.5s ease-out;
}

@keyframes gbpHighlight {
  0% { box-shadow: 0 0 0 2px rgba(33, 158, 188, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(33, 158, 188, 0); }
}

/* Blurry photo states */
.gbp-photo-hero img.blurry {
  filter: blur(3px) brightness(0.85) saturate(0.7);
  opacity: 1;
}

.gbp-photo-thumb img.blurry {
  filter: blur(2px) brightness(0.85) saturate(0.7);
  opacity: 1;
}

.gbp-photo-hero img,
.gbp-photo-thumb img {
  transition: filter 0.8s var(--ease), opacity 0.6s var(--ease);
}

/* Results metrics row */
.showcase-results {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 32px;
  margin-top: 32px;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.showcase-results.visible {
  opacity: 1;
  transform: translateY(0);
}

.results-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.results-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-ink);
}

.results-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-ink-body);
}

.results-divider {
  width: 1px;
  height: 24px;
  background: #DADCE0;
  flex-shrink: 0;
}

/* End-state summary view */
.showcase-summary {
  display: none;
  margin-top: 40px;
}

.showcase-summary.visible {
  display: block;
  animation: summaryReveal 0.8s var(--ease) forwards;
}

@keyframes summaryReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Left: Google Maps search result card */
.summary-search-result {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-result-label,
.summary-impact-label,
.summary-ranking-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-ink-muted);
}

.search-result-card {
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
}

.search-result-map {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #E8F0FE;
}

.search-result-map svg {
  display: block;
}

.search-result-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
}

.search-result-rank {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #1A73E8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 2px;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  font-size: 15px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 2px;
}

.search-result-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #70757A;
  margin-bottom: 2px;
}

.search-result-stars {
  font-weight: 500;
  color: #202124;
}

.search-stars-visual {
  color: #FBBC04;
  font-size: 12px;
  letter-spacing: -1px;
}

.search-result-count {
  color: #70757A;
}

.search-result-meta {
  font-size: 13px;
  color: #70757A;
  margin-bottom: 1px;
}

.search-result-hours {
  font-size: 13px;
  color: #188038;
}

.search-result-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right: Impact summary */
.summary-impact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.summary-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-ink);
}

.summary-check-icon {
  flex-shrink: 0;
}

.summary-rankings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-rank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
}

.rank-query {
  color: var(--color-ink-body);
  font-style: italic;
}

.rank-position {
  font-weight: 700;
  font-size: 15px;
}

.rank-position.rank-top {
  color: #188038;
}

.rank-position.rank-mid {
  color: #1A73E8;
}

.summary-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-ink-muted);
  margin: 28px 0 0;
}

/* --- Left column: Photos --- */
.gbp-col-photos {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #DADCE0;
}

.gbp-photo-hero {
  width: 100%;
  height: 260px;
  background: #E8EAED;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.gbp-photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.gbp-photo-hero img.visible {
  opacity: 1;
}

.gbp-photo-placeholder {
  position: absolute;
  transition: opacity 0.4s var(--ease);
}

.gbp-photo-hero img.visible ~ .gbp-photo-placeholder {
  opacity: 0;
}

.gbp-photo-strip {
  display: flex;
  gap: 4px;
  padding: 8px;
}

.gbp-photo-thumb {
  flex: 1;
  height: 70px;
  border-radius: 4px;
  background: #E8EAED;
  overflow: hidden;
}

.gbp-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.gbp-photo-thumb img.visible {
  opacity: 1;
}

/* --- Center column: Business Info --- */
.gbp-col-info {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #DADCE0;
}

.gbp-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #DADCE0;
}

.gbp-name {
  font-size: 18px;
  font-weight: 400;
  color: #202124;
  line-height: 1.3;
  margin-bottom: 2px;
}

.gbp-category {
  font-size: 14px;
  font-weight: 400;
  color: #70757A;
  margin-bottom: 6px;
}

.gbp-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.gbp-rating-num {
  font-size: 14px;
  font-weight: 400;
  color: #70757A;
}

.gbp-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.gbp-star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.gbp-review-count {
  font-size: 14px;
  font-weight: 400;
  color: #1A73E8;
}

.gbp-status {
  font-size: 14px;
  font-weight: 400;
  transition: color 0.4s var(--ease);
}

.gbp-status.status-open {
  color: #0F9D58;
}

.gbp-status.status-closed {
  color: #D93025;
}

/* Details section */
.gbp-details {
  padding: 12px 20px;
  border-bottom: 1px solid #DADCE0;
  flex: 1;
}

.gbp-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 5px 0;
}

.gbp-info-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.gbp-info-text {
  font-size: 14px;
  font-weight: 400;
  color: #70757A;
  line-height: 1.4;
}

.gbp-info-text.missing {
  color: #D93025;
  font-style: italic;
}

.gbp-info-link {
  color: #1A73E8;
}

/* Action buttons */
.gbp-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
}

.gbp-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
}

.gbp-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F8F9FA;
  color: #70757A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.gbp-action-icon--primary {
  background: #F8F9FA;
  color: #70757A;
}

.gbp-action-icon.active {
  color: #1A73E8;
}

.gbp-action-icon--primary.active {
  background: #1A73E8;
  color: #FFFFFF;
}

.gbp-action-label {
  font-size: 11px;
  font-weight: 500;
  color: #1A73E8;
  transition: color 0.4s var(--ease);
}

.gbp-action-label.muted {
  color: #70757A;
}

/* Services tags */
.gbp-services {
  display: none;
  padding: 0 20px 8px;
}

.gbp-services.visible {
  display: block;
  animation: gbpFadeIn 0.4s var(--ease) forwards;
}

.gbp-services-label {
  font-size: 11px;
  font-weight: 500;
  color: #70757A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.gbp-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.gbp-service-tag {
  font-size: 12px;
  font-weight: 400;
  color: #1A73E8;
  background: #E8F0FE;
  padding: 3px 10px;
  border-radius: 12px;
}

/* --- Right column: Reviews --- */
.gbp-col-reviews {
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  max-height: 100%;
}

.gbp-reviews-header {
  font-size: 13px;
  font-weight: 500;
  color: #70757A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.gbp-reviews-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  color: #BDC1C6;
  font-size: 13px;
}

.gbp-reviews-empty.hidden {
  display: none;
}

.gbp-review-card {
  display: none;
  opacity: 0;
  padding: 12px 0;
  border-bottom: 1px solid #E8EAED;
}

.gbp-review-card:last-child {
  border-bottom: none;
}

.gbp-review-card.visible {
  display: block;
  animation: gbpFadeIn 0.4s var(--ease) forwards;
}

.gbp-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.gbp-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #E8EAED;
  flex-shrink: 0;
}

.gbp-review-meta {
  display: flex;
  flex-direction: column;
}

.gbp-review-name {
  font-size: 13px;
  font-weight: 500;
  color: #202124;
}

.gbp-review-stars {
  display: flex;
  gap: 1px;
}

.gbp-review-star {
  width: 12px;
  height: 12px;
}

.gbp-review-text {
  font-size: 13px;
  font-weight: 400;
  color: #70757A;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Review owner response */
.gbp-review-response {
  display: none;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #E8EAED;
}

.gbp-review-response.visible {
  display: block;
  animation: gbpFadeIn 0.4s var(--ease) forwards;
}

.gbp-response-label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #202124;
  display: block;
  margin-bottom: 2px;
}

.gbp-response-text {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #70757A;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* GBP card animations */
@keyframes gbpFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Pain Points (Bento) ========== */
.pain {
  background: var(--color-bg-alt);
  padding: var(--s-24) 0;
}

.pain h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--s-12);
}

.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-6);
}

.bento-wide {
  grid-row: span 2;
}

.bento-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
}

.bento-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--s-3);
}

.bento-card p {
  font-size: var(--fs-sm);
  line-height: 1.65;
}

/* ========== Testimonial Break - light bg with subtle teal accent ========== */
.quote-break {
  background: var(--color-bg);
  padding: var(--s-20) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.quote-break blockquote {
  max-width: 640px;
}

.quote-break p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem);
  color: var(--color-ink);
  line-height: 1.5;
  font-style: italic;
  font-weight: 800;
  margin-bottom: var(--s-6);
}

.quote-stars {
  display: block;
  color: var(--color-amber);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: var(--s-2);
}

.quote-break cite {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-ink-body);
  font-style: normal;
  font-weight: 300;
}

/* ========== What You Get ========== */
.included {
  background: var(--color-bg);
  padding: var(--s-24) 0;
}

.included h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--s-3);
}

.included-sub {
  font-size: var(--fs-body);
  color: var(--color-ink-body);
  margin-bottom: var(--s-12);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4) var(--s-16);
  max-width: 640px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-body);
  color: var(--color-ink);
  font-weight: 500;
}

.check-item svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

/* ========== Form Section ========== */
.form-section {
  background: var(--color-bg-alt);
  padding: var(--s-24) 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}

.form-copy h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--s-4);
}

.form-copy p {
  font-size: var(--fs-body);
  max-width: 400px;
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--sh-2);
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.progress-bar { display: flex; gap: 6px; margin-bottom: var(--s-8); }

.prog-seg {
  flex: 1;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  transition: background 0.4s var(--ease);
}

.prog-seg.active { background: var(--color-orange); }

.step {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: stepFade 0.3s var(--ease);
}

.step.active { display: flex; }

@keyframes stepFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-body);
  font-weight: 600;
  margin-bottom: var(--s-2);
}

.step-q {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--color-ink);
  line-height: 1.3;
  margin-bottom: var(--s-6);
}

.options {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.option {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  padding: 14px var(--s-4);
  cursor: pointer;
  font-size: var(--fs-body);
  color: var(--color-ink-body);
  font-weight: 400;
  transition: border-color 150ms, background 150ms;
}

.option:hover { border-color: var(--color-ink); }

.option.selected {
  border-color: var(--color-ink);
  background: var(--color-bg-alt);
  color: var(--color-ink);
}

.radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 150ms;
}

.radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background 150ms;
}

.option:hover .radio { border-color: var(--color-ink); }
.option.selected .radio { border-color: var(--color-ink); }
.option.selected .radio::after { background: var(--color-ink); }

.form-fields { display: flex; flex-direction: column; gap: var(--s-4); }

.fgroup { display: flex; flex-direction: column; gap: 3px; }

.fgroup label {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-ink-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fgroup input {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r);
  padding: 12px var(--s-4);
  font-size: var(--fs-body);
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-ink);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}

.fgroup input:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(33, 158, 188, 0.1);
}

.fgroup input::placeholder { color: var(--color-ink-muted); }
.fgroup input.error { border-color: var(--color-red); }

.ferror { font-size: var(--fs-xs); color: var(--color-red); display: none; }
.ferror.visible { display: block; }

/* Submit button - orange pill, matches iwantclarity.com CTA */
.btn-submit {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--color-white);
  background: var(--color-orange);
  border: none;
  border-radius: var(--r-pill);
  padding: 16px;
  cursor: pointer;
  margin-top: var(--s-2);
  transition: background var(--dur), transform 150ms;
}

.btn-submit:hover {
  background: var(--color-orange-hover);
  transform: translateY(-1px);
}

.btn-back {
  display: block;
  background: none;
  border: none;
  color: var(--color-ink-body);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  font-weight: 300;
  cursor: pointer;
  padding: var(--s-3);
  margin-top: var(--s-2);
  text-align: center;
  width: 100%;
}

.btn-back:hover { color: var(--color-ink); }

.done {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s-4);
}

.done-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.done h2 { font-size: 1.5rem; }
.done p { font-size: var(--fs-body); color: var(--color-ink-body); max-width: 300px; }

/* ========== Review Marquee ========== */
.reviews-marquee {
  background: var(--color-bg-alt);
  padding: var(--s-16) 0;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--s-10);
}

.reviews-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-ink);
  margin: 0 0 var(--s-4);
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
}

.reviews-rating {
  font-weight: 700;
  font-size: 18px;
}

.reviews-stars {
  color: #FBBC04;
  font-size: 18px;
  letter-spacing: 1px;
}

.reviews-count {
  color: var(--color-ink-body);
  font-weight: 400;
}

.marquee-row {
  overflow: hidden;
  margin-bottom: 16px;
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}

.marquee-row:last-child {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee-left {
  animation: marqueeLeft 30s linear infinite;
}

.marquee-right {
  animation: marqueeRight 35s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px 24px;
}

.marquee-stars {
  color: #FBBC04;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.marquee-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.6;
  margin: 0 0 12px;
}

.marquee-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink-body);
}

/* ========== Final CTA ========== */
.final-cta {
  padding: var(--s-20) 0;
  text-align: center;
  background: var(--color-bg);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: var(--s-4);
}

.final-cta p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-ink-body);
  margin-bottom: var(--s-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-orange);
  padding: 16px 40px;
  border-radius: 80px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-cta:hover {
  background: var(--color-orange-hover);
  transform: translateY(-1px);
}

/* ========== Form Section ========== */
.form-section {
  position: relative;
  padding: var(--s-24) 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.form-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-deco--left { left: clamp(24px, 5vw, 100px); }
.form-deco--right { right: clamp(24px, 5vw, 100px); }

/* Full-page form (standalone form.html) */
.form-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(65px + var(--s-12));
  padding-bottom: var(--s-12);
}

.form-deco-ring {
  width: 80px;
  height: 80px;
  border: 2.5px solid var(--color-sky);
  border-radius: 50%;
  opacity: 0.45;
  margin-top: var(--s-8);
  margin-left: var(--s-3);
}

.form-deco-diamond {
  width: 52px;
  height: 52px;
  border: 2.5px solid var(--color-amber);
  opacity: 0.45;
  transform: rotate(45deg);
  margin-top: var(--s-8);
  margin-left: auto;
  margin-right: var(--s-3);
}

.form-section-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.form-container {
  background: var(--color-white);
  border-radius: var(--r-xl);
  padding: var(--s-10) var(--s-8);
  box-shadow: var(--sh-3);
}

.form-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-ink);
  text-align: center;
  margin-bottom: var(--s-2);
  line-height: 1.2;
}

.form-highlight {
  color: var(--color-teal);
}

.form-subtitle {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-ink-body);
  margin-bottom: var(--s-8);
  line-height: 1.6;
}

/* Progress bar */
.progress-bar {
  display: flex;
  gap: 6px;
  margin-bottom: var(--s-8);
}

.prog-seg {
  flex: 1;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  transition: background 0.4s ease;
}

.prog-seg.active {
  background: var(--color-teal);
}

/* Steps */
.step {
  display: none;
  flex-direction: column;
  animation: formFadeIn 0.3s ease;
}

.step.active { display: flex; }

@keyframes formFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal);
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.step-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--s-6);
  line-height: 1.3;
}

/* Option cards */
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option {
  background: var(--color-off-white);
  border: 2px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  color: var(--color-ink-body);
  display: flex;
  align-items: center;
  gap: 12px;
}

.option:hover {
  border-color: var(--color-teal);
  background: #f0fafb;
}

.option.selected {
  border-color: var(--color-teal);
  background: #e8f7fa;
  color: var(--color-ink);
}

.option-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.option.selected .option-icon {
  background: var(--color-teal);
  border-color: var(--color-teal);
}

/* Contact form fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-group input {
  background: var(--color-off-white);
  border: 2px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 13px 16px;
  color: var(--color-ink);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.field-group input:focus {
  border-color: var(--color-teal);
}

.field-group input::placeholder {
  color: var(--color-ink-muted);
}

.field-group input.error {
  border-color: var(--color-red);
}

.field-error {
  font-size: var(--fs-xs);
  color: var(--color-red);
  display: none;
}

.field-error.visible {
  display: block;
}

/* Form buttons */
.btn-next {
  background: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-radius: var(--r-pill);
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  margin-top: var(--s-6);
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.btn-next:hover { background: #1a8ba6; transform: translateY(-1px); }
.btn-next:disabled { background: var(--color-ink-muted); cursor: not-allowed; transform: none; }

.btn-back {
  background: transparent;
  border: none;
  color: var(--color-ink-body);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  cursor: pointer;
  padding: 10px;
  margin-top: var(--s-2);
  text-align: center;
}

.btn-back:hover { color: var(--color-ink); }

/* Confirmation */
.confirmation {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--s-8) 0;
}

.check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: var(--s-2);
}

.confirmation h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-ink);
}

.confirmation p {
  font-size: var(--fs-body);
  color: var(--color-ink-body);
  line-height: 1.6;
  max-width: 360px;
}

.confirmation-highlight {
  color: var(--color-teal);
  font-weight: 600;
}

/* Form section responsive */
@media (max-width: 768px) {
  .form-deco { display: none; }
  .form-container { padding: var(--s-8) var(--s-6); }
}

/* ========== Footer - exact mirror of iwantclarity.com Elementor footer #20259 ========== */
/* Fonts: Prata for headings, Hind for list links, Inter for body/copyright */

.footer {
  background: transparent;
}

/* --- Main footer (top section) --- */
.footer-main {
  background: #023047;               /* rgb(2, 48, 71) exact */
  padding: 80px 0;                   /* exact computed padding */
}

.footer-container {
  max-width: 1140px;                 /* Elementor boxed container */
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 24.3% 14.2% 18.6% 19.4% 23.5%;  /* exact from Elementor computed */
  gap: 0;                            /* Elementor uses column-gap-default but columns have internal padding */
  align-items: stretch;              /* equal height columns, matches Elementor content-top */
}

/* All columns get 10px padding (exact from Elementor widget-wrap) */
.footer-col {
  padding: 10px;
}

/* Logo column */
.footer-col-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo-img {
  max-width: 100%;
  height: auto;
}

/* Spacer column - empty on desktop, no padding */
.footer-col-spacer {
  display: block;
  padding: 0;
}

/* Column headings - Prata 20px, white */
.footer-heading {
  font-family: 'Prata', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  letter-spacing: normal;
  text-transform: none;
}

/* Navigation and Services lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-list li {
  margin: 0;
  padding: 0;
}

.footer-list li a {
  font-family: 'Hind', sans-serif;
  font-size: 14.4px;                 /* exact computed */
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);  /* exact computed */
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 5px 0;
  transition: color 150ms;
}

.footer-list li a:hover {
  color: #FFFFFF;
}

/* Contact Us column - "New location for 2026:" label */
.footer-location-label {
  font-family: 'Prata', serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

/* Contact text (address, phone, email) */
.footer-contact-text {
  font-family: 'Hind', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;                 /* exact computed */
  color: rgba(255, 255, 255, 0.82);  /* exact computed */
}

.footer-contact-text p {
  margin: 0 0 10px 0;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.82);  /* #ffffffd1 exact from inline styles */
  text-decoration: none;
  transition: color 150ms;
}

.footer-contact-text a:hover {
  color: #FFFFFF;
}

/* --- Bottom bar (copyright + social icons) --- */
.footer-bottom {
  background: #023047;
  border-top: none;
  padding: 0;
}

.footer-bottom .footer-container {
  display: flex;                     /* 2 equal columns like original */
  grid-template-columns: none;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 59px;                  /* exact from original: 59.2px */
}

/* Copyright text */
.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;                 /* exact computed */
  color: #FAFAFA;                    /* rgb(250, 250, 250) exact */
  margin: 10px 0;                    /* exact from original .elementor-widget-container */
}

.footer-copyright a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 150ms;
}

.footer-copyright a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0 20px;                       /* exact: row-gap 0, column-gap 20px */
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #FFFFFF;
  background: transparent;
  font-size: 15px;                   /* exact computed */
  text-decoration: none;
  transition: transform 200ms var(--ease), color 150ms;
}

.footer-socials a:hover {
  transform: translateY(-7px);       /* exact from Elementor animation-float: ~7.1px */
}

.footer-socials a svg {
  display: block;
}

/* ========== Responsive ========== */

/* Tablet: collapse nav to hamburger */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 5%;             /* exact from header tablet padding */
    display: flex;             /* switch from grid to flex for mobile */
  }
  .nav-logo { margin-right: auto; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Scale down decorative elements on tablet */
  .hero-deco-dots { opacity: 0.6; }
  .hero-deco-ring { width: 48px; height: 48px; }
  .hero-deco-diamond { width: 32px; height: 32px; }

  /* GBP panel: 2 columns (photos + info), reviews below */
  .gbp-panel-grid {
    grid-template-columns: 40% 60%;
  }
  .gbp-col-reviews {
    grid-column: 1 / -1;
    border-top: 1px solid #DADCE0;
  }
  .gbp-col-info { border-right: none; }
}

@media (max-width: 768px) {
  /* Mobile nav - 86px height, 220px logo */
  .nav-inner { min-height: 86px; padding: 0 1em; }  /* exact from header mobile */
  .nav-logo-img { max-width: 220px; }                /* exact */

  .topnav.menu-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
    padding: var(--s-4) 0;
    margin-top: 12px;          /* exact from header mobile dropdown margin */
  }

  .topnav.menu-open .nav-menu .nav-link {
    padding: 12px 24px;
    font-size: 18px;           /* exact from header mobile dropdown items */
  }

  .topnav.menu-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 0;
    padding-left: 24px;
  }

  .topnav.menu-open .nav-dropdown li a {
    font-size: 18px;           /* exact from header mobile sub-items */
    padding: 25px 20px;        /* exact from header mobile dropdown padding */
  }

  .topnav.menu-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .topnav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .topnav.menu-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero { padding: var(--s-20) var(--s-6) var(--s-12); min-height: 90vh; }
  .hero h1 br { display: none; }

  /* Hide decorative elements on mobile */
  .hero-deco { display: none; }
  .hero-streak { display: none; }

  .vp-grid { grid-template-columns: 1fr; gap: var(--s-10); }

  /* GBP panel: single column stack */
  .gbp-panel-grid { grid-template-columns: 1fr; }
  .gbp-col-photos { border-right: none; border-bottom: 1px solid #DADCE0; }
  .gbp-col-info { border-right: none; border-bottom: 1px solid #DADCE0; }
  .gbp-photo-hero { height: 200px; }
  .gbp-photo-strip .gbp-photo-thumb:nth-child(n+3) { display: none; }
  .showcase-results { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .results-divider { display: none; }
  .results-value { font-size: 1.25rem; }
  .summary-grid { grid-template-columns: 1fr; gap: 24px; }

  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-row: auto; }

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

  .form-layout { grid-template-columns: 1fr; gap: var(--s-8); }

  /* Footer responsive - stack columns on mobile */
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--s-8);
    text-align: center;
  }
  .footer-col-logo { justify-content: center; }
  .footer-col-spacer { display: none; }
  .footer-list li a { justify-content: center; }
  .footer-bottom-inner {
    flex-direction: column;
    gap: var(--s-4);
    text-align: center;
  }
  .footer-socials { justify-content: center; }
  #guide-line { display: none; }
}

/* Guide line hidden for demo -- uncomment initGuideLine() in script.js to re-enable */
#guide-line, #guide-toggle { display: none !important; }

@media (max-width: 375px) {
  .gbp-actions { gap: 12px; }
  .showcase-results { flex-wrap: wrap; gap: 16px; }
  .results-divider { display: none; }
}

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
  .gbp-panel, .gbp-panel * { transition: none !important; animation: none !important; }
  .gbp-review-card.visible { opacity: 1; transform: none; }
  .gbp-callout-group.visible { opacity: 1; }
  .gbp-photo-hero img { opacity: 1; filter: none; }
  .gbp-photo-thumb img { opacity: 1; filter: none; }
  .showcase-caption-line { transition: none !important; }
  .showcase-results.visible { opacity: 1; transform: none; }
  .hero-scroll-hint { animation: none; }
}
