:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-card: #ffffff;
  --color-accent: #1d4ed8;
  --color-accent-soft: #fcd34d;
  --color-blue: #1d4ed8;
  --color-blue-soft: #e0f2ff;
  --color-text: #0f172a;
  --color-muted: #475569;
  --shadow-soft: 0 25px 60px rgba(15, 23, 42, 0.08);
  --container-width: min(1280px, 92vw);

  /* Simple Type Scale */
  --font-size-xs: 0.85rem;
  /* 13.6px */
  --font-size-sm: 0.9rem;
  /* 14.4px */
  --font-size-base: 1rem;
  /* 16px - body */
  --font-size-md: 1.15rem;
  /* 18.4px */
  --font-size-lg: 1.5rem;
  /* 24px - H3 */
  --font-size-xl: 2rem;
  /* 32px - H2 */
  --font-size-2xl: 2.5rem;
  /* 40px - H1 secondary */
  --font-size-3xl: 3rem;
  /* 48px - H1 primary */

  /* Simple Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.65;

  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

button,
.btn,
.pill,
.ghost {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent-soft);
  outline-offset: 2px;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fcd34d;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 0;
}

.logo {
  justify-self: start;
}

.site-nav {
  justify-self: center;
}

.header-cta {
  justify-self: end;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 70px;
  transition: transform 0.2s ease;
  margin-top: -5px;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo:focus,
.logo:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.logo:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.logo-img {
  display: none;
}

.logo-type {
  display: flex !important;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-name {
  display: block !important;
  font-family: 'Open Sans', sans-serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  transition: color 0.2s ease;
}

.logo:hover .logo-name {
  color: var(--color-blue);
}

.logo-tagline {
  display: block !important;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.logo:hover .logo-tagline {
  color: var(--color-blue);
}

.logo-subtitle {
  display: block !important;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-muted);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.35rem;
  transition: color 0.2s ease;
}

.logo:hover .logo-subtitle {
  color: var(--color-blue);
}

.site-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: var(--font-size-base);
  flex-wrap: wrap;
  white-space: nowrap;
  align-items: center;
}

.site-nav a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  letter-spacing: -0.01em;
}

.site-nav a:hover {
  color: var(--color-blue);
  text-decoration: none;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-blue);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-nav a:hover::after {
  opacity: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pill {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--color-blue);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: var(--font-size-base);
  letter-spacing: -0.01em;
  line-height: 1;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  color: #0f172a;
}

.nav-toggle {
  display: none;
  background: transparent;
  padding: 0.5rem;
}

.nav-toggle__line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #0f172a;
  margin: 0.3rem 0;
}

.hero {
  padding: 6rem 0 4rem;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 0;
}

.hero-form-card {
  width: 100%;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  max-width: 560px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-form__row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-form__row label {
  flex: 1 1 180px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.rating-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.hero-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
}

.hero-form input,
.hero-form select {
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--color-text);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.hero-form input[type="date"] {
  position: relative;
  cursor: pointer;
}

.hero-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

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

.hero-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230f172a' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.hero-form .form-note,
.hero-form .form-status {
  margin: 0;
  font-size: 0.9rem;
}

.hero-form .form-status {
  min-height: 1.1rem;
  font-weight: 600;
}

.sub-hero {
  padding: 4rem 0;
  background: #f8fafc;
}

.sub-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.sub-hero__copy p {
  margin-bottom: 0.8rem;
}

.sub-hero__media img {
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-proof div {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: #fdf9ef;
}

.hero-proof p {
  margin: 0.2rem 0;
}

.eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue);
  font-weight: 700;
}

.hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-text);
}

.hero .eyebrow {
  color: var(--color-blue);
  font-size: var(--font-size-sm);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn.primary {
  background: var(--color-blue);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
  transition: all 0.2s ease;
}

.btn.primary:hover {
  background: #1e40af;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.4);
  transform: translateY(-1px);
}

.btn.secondary {
  border: 2px solid var(--color-blue);
  background: #ffffff;
  color: var(--color-blue);
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.1);
}

.btn.secondary:hover {
  background: var(--color-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.btn.text {
  background: none;
  color: var(--color-accent);
  padding: 0;
  font-weight: 600;
  font-size: var(--font-size-base);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn:hover,
.pill:hover,
.ghost:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.hero-stats .stat {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: var(--color-text);
}

.hero-stats .label {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-snug);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-slideshow-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 1.5rem !important;
  box-shadow: var(--shadow-soft) !important;
  opacity: 0 !important;
  transition: opacity 0.5s ease-in-out !important;
  z-index: 1 !important;
  display: block !important;
}

.hero-slideshow-image.active {
  opacity: 1 !important;
  z-index: 2 !important;
}

.slideshow-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.slideshow-dots .dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

.slideshow-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero-media__card {
  position: relative;
  background: var(--color-card);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  margin-top: 1rem;
  z-index: 1;
}

.hero-media__card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--color-muted);
}

.hero-media__card p {
  margin: 0;
  font-style: italic;
}

.proof {
  padding: 3rem 0 4rem;
  margin-top: 0;
}

.proof-grid {
  background: #ffffff;
  border-radius: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.proof-grid p {
  margin: 0.2rem 0;
}

.stat {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}

.label {
  color: var(--color-muted);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: var(--line-height-snug);
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-heading p {
  color: var(--color-muted);
  max-width: 700px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.products {
  padding: 6rem 0;
  background: #f8fafc;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 2.5rem;
}

.product-grid article {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.product-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
}

.product-grid ul {
  color: var(--color-muted);
  line-height: 1.4;
  padding-left: 1rem;
}

.product-grid li {
  position: relative;
  margin-bottom: 0.5rem;
}

.product-grid li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.product-tag {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  color: var(--color-accent-soft);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.product-showcase {
  padding: 4rem 0;
  background: #fffdf6;
}

.product-summary {
  padding: 4rem 0;
  background: #ffffff;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.summary-grid article {
  background: var(--color-blue-soft);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(29, 78, 216, 0.1);
  box-shadow: 0 25px 45px rgba(29, 78, 216, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-grid h3 {
  margin: 0;
  color: var(--color-blue);
}

.summary-grid ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--color-muted);
}

.summary-grid li {
  margin-bottom: 0.4rem;
}

.service-highlights {
  padding: 6rem 0;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.service-grid article {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.09);
}

.service-grid h3 {
  margin: 0.3rem 0;
  color: var(--color-text);
}

.service-grid p {
  margin: 0.2rem 0;
}

.detail-section {
  padding: 4rem 0;
  background: #ffffff;
}

.detail-gallery {
  padding: 3rem 0 1rem;
  background: #f8fafc;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.product-copy {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.photo-grid img {
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.badge {
  background: rgba(15, 23, 42, 0.05);
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.link-row a {
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: underline;
}

@media (min-width: 1100px) {
  .site-nav {
    flex-wrap: nowrap;
  }

  .pill-list {
    flex-wrap: nowrap;
  }
}

.advantage {
  padding: 5rem 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.advantage-panel {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.promise {
  padding: 5rem 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.promise-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill-list span {
  background: rgba(249, 115, 22, 0.08);
  color: var(--color-text);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.checklist li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-muted);
}

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent-soft);
}

.process {
  padding: 5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-steps li {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.step-index {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  color: var(--color-accent-soft);
  font-weight: 700;
}

.pricing {
  padding: 6rem 0;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.pricing-card,
.guarantee-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.pricing-card ul,
.guarantee-card ul {
  color: var(--color-muted);
  padding-left: 1.2rem;
}

.price {
  font-size: 1.2rem;
  color: var(--color-muted);
}

.price span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.fine-print {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.gallery {
  padding: 6rem 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery figure {
  margin: 0;
  background: #ffffff;
  padding: 1rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.gallery figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.testimonials {
  padding: 4rem 0;
  background: #f8fafc;
}

/* Google Rating Summary */
.google-rating-summary {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.google-rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.stars-filled {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.rating-count {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* Testimonial Cards */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 0.7;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

/* Google Review Card Styling */
.google-review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.google-review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviewer-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: #6b7280;
}

.google-logo {
  height: 18px;
  width: auto;
  opacity: 0.9;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-text {
  color: #374151;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #059669;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.testimonial .meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
}

/* Reviews Page Specific Styles */
.reviews-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
}

.reviews-hero h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.google-rating-summary-large {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.rating-overview {
  background: #ffffff;
  padding: 2.5rem 4rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rating-number-large {
  font-size: 5rem;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1;
}

.rating-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.stars-large {
  color: #fbbf24;
  font-size: 2rem;
  letter-spacing: 0.15em;
}

.rating-text-large {
  font-size: 1.125rem;
  color: var(--color-muted);
  font-weight: 500;
  margin: 0;
}

.google-branding {
  margin-top: 0.5rem;
}

.google-branding img {
  height: 24px;
  width: auto;
  opacity: 0.8;
}

.reviews-grid-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.reviews-grid-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.reviews-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  color: #ffffff;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn.secondary {
  background: #ffffff;
  color: #1d4ed8;
  border: 2px solid #ffffff;
}

.cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.service-areas,
.resources,
.contact {
  padding: 6rem 0;
}

.areas-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.areas-grid article,
.resource-grid article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.resource-grid .tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-soft);
}

.text-link {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-info ul li {
  margin-bottom: 0.6rem;
}

.team-card {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  background: rgba(248, 250, 252, 0.9);
  border-radius: 1rem;
  padding: 1rem;
  align-items: center;
}

.team-card img {
  width: 88px;
  height: auto;
  border-radius: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--color-text);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230f172a' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.contact-form label.full {
  grid-column: span 2;
}

.form-note {
  grid-column: span 2;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.form-status {
  grid-column: span 2;
  min-height: 1.2rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease, background 0.3s ease, transform 0.3s ease;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.625rem;
  background: rgba(16, 185, 129, 0.1);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.form-status:not(:empty) {
  transform: translateY(0);
}

.site-footer {
  padding: 5rem 0 3rem;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
}

.footer-grid .logo {
  font-size: 1.4rem;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Discreet admin dashboard link */
.footer-meta a[href*="dashboard"] {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  margin-left: 1rem;
}

.footer-meta a[href*="dashboard"]:hover {
  opacity: 1;
  color: #fbbf24;
}

.utility-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 100;
}

.utility-buttons a,
.utility-buttons button {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #0f172a;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.is-visible {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }

  /* Hide header CTA on tablet/mobile */
  .header-cta {
    display: none;
  }

  /* Full-screen navigation overlay for mobile */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-top: 80px;
    padding-bottom: 80px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999;
    /* CRITICAL: Force scrolling to work on iOS and Android */
    overflow-y: scroll !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain;
    /* Ensure scrollbar is hidden but scrolling works */
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: -3px 0 12px rgba(0, 0, 0, 0.12);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  /* Special shift for home/index pages only - "Shutters" becomes first visible */
  body[data-page="home"] .site-nav {
    padding-top: 78px;
  }

  /* Remove MENU header - it was causing overlap */
  .site-nav::before {
    display: none;
  }

  /* Navigation links - single column with minimal spacing */
  .site-nav a {
    display: block !important;
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.65rem 1.5rem;
    margin: 0.125rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #0f172a;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
    line-height: 1.3;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  }

  .site-nav a:active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(0.98);
  }

  /* Dashboard admin link at bottom */
  .site-nav a[href*="dashboard"] {
    background: rgba(15, 23, 42, 0.9);
    color: white;
    border: 2px solid #0f172a;
    margin-top: 1rem;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
  }

  /* Compact hamburger button - Brand yellow with centered lines */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5px;
    padding: 8px;
    background: #fcd34d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1000000;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(252, 211, 77, 0.3);
  }

  /* Close button style when menu is open */
  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    width: auto;
    height: auto;
    padding: 12px 20px 12px 45px;
    border-radius: 25px;
    border: 2px solid #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
    display: flex;
    align-items: center;
    gap: 0;
  }

  .nav-toggle[aria-expanded="true"]::after {
    content: "Close";
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    margin-left: 5px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line {
    position: absolute;
    background: #0f172a;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    left: 15px;
    margin-top: -1px;
    width: 18px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
    left: 15px;
    margin-top: -1px;
    width: 18px;
  }

  .nav-toggle:hover {
    background: #fbbf24;
    transform: scale(1.03);
    box-shadow: 0 3px 10px rgba(252, 211, 77, 0.4);
  }

  .nav-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    background: #0f172a;
    border-radius: 1px;
    transition: all 0.25s ease;
  }

  /* Removed duplicate styles - handled above */

  .product-grid,
  .process-steps,
  .gallery-grid,
  .areas-grid,
  .resource-grid,
  .photo-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .advantage-grid,
  .promise-grid,
  .split-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-copy {
    margin-bottom: 1.5rem;
  }

  .hero-media__card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  /* Base mobile container */
  .container {
    width: 90vw;
    padding: 0 1rem;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  html, body {
    max-width: 100vw;
  }

  /* Mobile typography adjustments */
  h1 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Hero specific mobile adjustments */
  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .hero .lead {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-pillars {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .hero-pillars li {
    margin-bottom: 0.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  /* Header mobile optimization */
  .header-grid {
    grid-template-columns: auto auto;
    padding: 0.5rem 0;
    gap: 1rem;
  }

  .header-cta {
    display: none;
  }

  .logo-img {
    max-width: 140px;
    height: auto;
  }

  .nav-toggle {
    padding: 0.5rem;
  }

  /* Mobile navigation improvements - COMMENTED OUT to preserve single column design
  .site-nav {
    padding: 1.5rem 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  }

  .site-nav a {
    padding: 0.875rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }
  */

  /* Hero section mobile */
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    order: 1;
    margin-bottom: 0.5rem;
  }

  .hero-panel {
    gap: 1rem;
    order: 2;
    display: flex;
    flex-direction: column;
  }

  /* Mobile headline optimization - show eyebrow and h1 ABOVE slideshow */
  .hero-copy .eyebrow {
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 0.35rem;
    display: block !important;
  }

  .hero-copy h1 {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block !important;
  }

  /* Hide less critical hero copy elements on mobile for conversion focus */
  .hero-copy .hero-badge,
  .hero-copy .hero-pillars {
    display: none;
  }

  /* Show lead text below form on mobile */
  .hero-copy .lead {
    order: 4;
    display: block !important;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    margin: 1.5rem 0 1rem;
    color: var(--color-muted);
  }

  .hero-ctas {
    justify-content: center;
    order: 3;
    margin-top: 0.75rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-media {
    height: 320px;
    border-radius: 1rem;
    order: 1;
    margin-bottom: 1rem;
  }

  .hero-slideshow-image {
    border-radius: 1rem;
  }

  .slideshow-dots {
    bottom: 1rem;
    flex-wrap: wrap;
    max-width: 90%;
    justify-content: center;
    gap: 0.4rem;
  }

  .slideshow-dots .dot {
    width: 9px;
    height: 9px;
    border-width: 1.5px;
    flex-shrink: 0;
  }

  .hero-media__card {
    position: relative;
    order: 1.5;
    margin: 1rem 0;
    padding: 1rem;
    font-size: 0.875rem;
    text-align: center;
    background: rgba(252, 211, 77, 0.1);
    border-left: 3px solid var(--color-accent-soft);
    z-index: 1;
  }

  .hero-media__card span {
    font-size: 0.8rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    padding: 1.125rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
  }

  .hero-ctas .btn.text {
    display: none;
  }

  /* Hero form mobile - appears after slideshow */
  .hero-form-card {
    padding: 1rem;
    border-radius: 1rem;
    max-width: 100%;
    order: 2;
    margin: 0;
  }

  .hero-form-card .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .hero-form-card h3 {
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-form {
    gap: 0.75rem;
  }

  .hero-form__row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-form__row label {
    flex: none;
    width: 100%;
  }

  .hero-form label {
    font-size: 0.875rem;
    gap: 0.35rem;
    font-weight: 600;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    font-size: 16px;
    padding: 0.75rem;
    border-radius: 0.5rem;
    min-height: 48px;
  }

  /* Better mobile select styling - make it look like a proper button */
  .hero-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    cursor: pointer;
    font-weight: 500;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%230f172a' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
  }

  .hero-form select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
  }

  .hero-form button[type="submit"] {
    padding: 0.875rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    min-height: 48px;
    font-weight: 600;
  }

  .rating-row {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }

  .stars {
    font-size: 0.875rem;
  }

  .rating-text {
    font-size: 0.8rem;
  }

  .hero-proof {
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .hero-proof .stat {
    font-size: 1.25rem;
  }

  .hero-proof .label {
    font-size: 0.7rem;
  }

  .hero-proof p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero-form .form-note {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 0.25rem;
  }

  /* Grid layouts mobile */
  .hero-stats,
  .product-grid,
  .process-steps,
  .gallery-grid,
  .areas-grid,
  .resource-grid,
  .contact-form,
  .footer-grid,
  .split-grid,
  .promise-grid,
  .proof-grid,
  .service-grid,
  .advantage-panel,
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Section spacing mobile */
  .products,
  .service-highlights,
  .advantage,
  .promise,
  .process,
  .pricing,
  .gallery,
  .service-areas,
  .contact {
    padding: 3rem 0;
  }

  .proof {
    padding: 2rem 0 3rem;
  }

  /* Cards and articles mobile */
  .product-grid article,
  .service-grid article,
  .process-steps li {
    padding: 1.5rem;
  }

  /* Contact section mobile */
  .contact {
    padding: 2.5rem 0;
  }

  .contact-grid {
    padding: 0.75rem;
    gap: 0.875rem;
    border-radius: 0.625rem;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
  }

  .contact-info {
    order: 3;
  }

  .contact-form {
    order: 2;
    gap: 0.4rem !important;
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
  }

  /* Ed Cox card appears ABOVE form on mobile */
  .team-card {
    order: 1;
    margin-bottom: 1.5rem;
    margin-top: 0;
  }

  .contact-form * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
  }

  .contact-info .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
  }

  .contact-info h2 {
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

  .contact-info ul {
    margin: 0.5rem 0;
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .contact-info ul li {
    margin-bottom: 0.25rem;
  }

  .contact-form label {
    font-size: 0.75rem !important;
    gap: 0.2rem !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.2 !important;
    width: 100% !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px !important;
    padding: 0.5rem !important;
    border-radius: 0.375rem !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    min-height: 44px !important;
  }

  /* Better mobile select styling for contact form too */
  .contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 2px solid #cbd5e1 !important;
    cursor: pointer;
    font-weight: 500;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%230f172a' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px !important;
    padding-right: 2.5rem !important;
  }

  .contact-form label.full {
    width: 100% !important;
  }

  .contact-form textarea {
    min-height: 80px !important;
  }

  .contact-form button[type="submit"] {
    padding: 0.625rem !important;
    font-size: 0.9rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0 !important;
    min-height: 44px !important;
  }

  .contact-form .form-note {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0 !important;
  }

  .contact-form .form-status {
    margin-top: 0.4rem !important;
  }

  /* Gallery mobile optimization */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery figure {
    padding: 0.875rem;
    margin: 0 auto;
    max-width: 100%;
  }

  .gallery figure img {
    height: 240px;
    border-radius: 0.75rem;
    object-fit: cover;
  }

  .gallery figcaption {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }

  /* Gallery button mobile */
  .gallery .btn {
    display: block;
    width: 100%;
    max-width: 90%;
    margin: 2.5rem auto 0;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }

  /* Utility buttons mobile */
  .utility-buttons {
    right: 1rem;
    bottom: 1rem;
    flex-direction: row;
    gap: 0.625rem;
  }

  .utility-buttons a,
  .utility-buttons button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-width: auto;
  }

  /* Footer mobile */
  .footer-grid {
    gap: 2rem;
  }

  .site-footer {
    padding: 3rem 0 2rem;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
  }

  /* Pill list mobile */
  .pill-list {
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .pill-list span {
    font-size: 0.8rem;
    padding: 0.4rem 0.875rem;
  }

  /* Badge row mobile */
  .badge-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .badge {
    font-size: 0.8rem;
  }

  /* Pricing mobile */
  .pricing-card,
  .guarantee-card {
    padding: 1.5rem;
  }

  /* Team card mobile */
  .team-card {
    flex-direction: row;
    text-align: left;
    gap: 0.875rem;
    padding: 1rem;
    margin-top: 1rem;
  }

  .team-card img {
    width: 70px;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 0.5rem;
  }

  .team-card .name {
    font-size: 1rem;
    margin-bottom: 0.125rem;
  }

  .team-card .role {
    font-size: 0.8rem;
    margin-bottom: 0.375rem;
  }

  .team-card .quote {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Touch target improvements */
  a, button, input, select, textarea {
    min-height: 44px; /* iOS recommended touch target */
  }

  /* Sub hero mobile */
  .sub-hero {
    padding: 3rem 0 2rem;
  }

  .sub-hero__grid {
    gap: 2rem;
  }

  .sub-hero__media img {
    max-height: 250px;
    object-fit: cover;
    border-radius: 1rem;
  }

  /* Checklist mobile */
  .checklist {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }

  /* Section headings mobile */
  .section-heading {
    text-align: center;
    margin-bottom: 2rem;
  }

  .eyebrow {
    font-size: 0.85rem;
  }

  /* Detail section mobile */
  .detail-section {
    padding: 3rem 0;
  }

  /* Link row mobile */
  .link-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Testimonials mobile */
  .testimonials {
    padding: 2.5rem 0;
  }

  .testimonial {
    padding: 1.5rem;
  }

  /* Google Reviews Mobile Optimization */
  .google-rating-summary {
    margin-top: 1.5rem;
  }

  .google-rating-score {
    padding: 1.25rem 2rem;
  }

  .rating-number {
    font-size: 2.5rem;
  }

  .stars-filled {
    font-size: 1.25rem;
  }

  .rating-count {
    font-size: 0.85rem;
    text-align: center;
  }

  .google-review-card {
    padding: 1.25rem;
  }

  .reviewer-avatar {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .reviewer-name {
    font-size: 0.9rem;
  }

  .review-date {
    font-size: 0.75rem;
  }

  .google-logo {
    height: 16px;
  }

  .review-stars {
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .verified-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }

  /* Reviews Page Mobile */
  .reviews-hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .rating-overview {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    text-align: center;
  }

  .rating-number-large {
    font-size: 3.5rem;
  }

  .stars-large {
    font-size: 1.5rem;
  }

  .rating-text-large {
    font-size: 0.95rem;
    text-align: center;
  }

  .rating-details {
    align-items: center;
  }

  .reviews-grid-section {
    padding: 2.5rem 0;
  }

  .reviews-grid-section .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reviews-cta {
    padding: 3rem 0;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    padding: 0 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Prevent text overflow */
  * {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Image responsiveness */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Fix form status mobile */
  .form-status {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  /* Native dropdowns - simple and familiar for all users */

  /* ============================================
     PREMIUM BOTTOM NAVIGATION BAR (MOBILE)
     Always-visible primary actions in thumb zone
     GPU-accelerated 60fps animations
     ============================================ */

  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
    /* GPU acceleration for smooth animations */
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  .bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    min-width: 64px;
    text-decoration: none;
    color: #64748b;
    position: relative;
    /* Buttery smooth spring physics easing */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    /* GPU acceleration - force hardware layer */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    /* Prevent layout shifts */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
  }

  .bottom-nav__icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    /* Smoother, more elastic animation */
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                stroke 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    /* GPU acceleration */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .bottom-nav__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  /* Smooth tap feedback with spring bounce */
  .bottom-nav__item:active {
    transform: translate3d(0, -3px, 0) scale(0.95);
    color: #0f172a;
    transition: transform 0.1s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.1s ease-out;
  }

  .bottom-nav__item:active .bottom-nav__icon {
    transform: translate3d(0, -1px, 0) scale(1.15);
    stroke: #0f172a;
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
                stroke 0.1s ease-out;
  }

  .bottom-nav__item:active .bottom-nav__label {
    transform: translate3d(0, 1px, 0);
    transition: transform 0.1s ease-out;
  }

  /* Active page indicator */
  .bottom-nav__item.active {
    color: #fcd34d;
  }

  .bottom-nav__item.active .bottom-nav__icon {
    stroke: #fcd34d;
  }

  .bottom-nav__item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 32px;
    height: 3px;
    background: #fcd34d;
    border-radius: 0 0 3px 3px;
  }

  /* CTA item (Call button) - premium emphasis */
  .bottom-nav__item--cta {
    color: #1d4ed8;
    position: relative;
  }

  .bottom-nav__item--cta .bottom-nav__icon {
    stroke: #1d4ed8;
  }

  .bottom-nav__item--cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 48px;
    height: 48px;
    background: rgba(29, 78, 216, 0.08);
    border-radius: 50%;
    z-index: -1;
    /* Smooth elastic bounce for CTA emphasis */
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .bottom-nav__item--cta:active::after {
    transform: translate3d(-50%, -50%, 0) scale(1.25);
    background: rgba(29, 78, 216, 0.2);
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.1s ease-out;
  }

  /* Hide on desktop */
  @media (min-width: 1025px) {
    .bottom-nav {
      display: none;
    }
  }

  /* Add padding to body to prevent content from being hidden */
  @media (max-width: 1024px) {
    body {
      padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
  }
}

/* ============================================
   IMAGE SHOWCASES
   ============================================ */

.image-showcase {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.image-showcase .container {
  width: var(--container-width);
  margin: 0 auto;
}

/* Standard 3-column grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.showcase-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.showcase-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.showcase-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

/* Wide 2-column layout for larger images */
.image-showcase--wide {
  padding: 4rem 0;
}

.showcase-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
}

.showcase-item-large {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.showcase-item-large img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.showcase-item-large figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .image-showcase {
    padding: 2rem 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .showcase-item img {
    height: 240px;
  }

  .showcase-item figcaption {
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  /* Wide layout goes single column on mobile */
  .image-showcase--wide {
    padding: 2.5rem 0;
  }

  .showcase-grid-wide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .showcase-item-large img {
    height: 300px;
  }

  .showcase-item-large figcaption {
    padding: 1rem;
    font-size: 1rem;
  }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .showcase-item img {
    height: 260px;
  }

  .showcase-item-large img {
    height: 350px;
  }
}