/* italic font — loaded async via deferred components.css */
@font-face{font-family:'DM Sans';font-style:italic;font-weight:400;font-display:swap;src:url(/fonts/dm-sans-italic-latin.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

/* ====== SITE NAV ====== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(92, 122, 78, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
.nav-brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: var(--cream);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--cream);
}
.nav-links a.active {
  color: var(--cream);
  font-weight: 600;
}
.nav-cta {
  background: var(--cta-red);
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 7px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--cta-red-hover);
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(67,92,57,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.06);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
}
.nav-toggle svg {
  display: block;
}

/* ====== SERVICE CARDS ====== */
.services {
  padding: var(--space-sm) 0;
}
.services h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 450;
  margin-bottom: 12px;
}
.services-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 540px;
}
/* mobile nav menu (hidden on desktop) */
.nav-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(67,92,57,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
}
.nav-menu.open { display: block; }
.nav-menu a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-menu a:last-child { border-bottom: none; }
.nav-menu a:hover, .nav-menu a.active { color: var(--cream); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.service-card {
  background: rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 40px 22px 28px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  border-top: 2px solid rgba(255,255,255,0.06);
  position: relative;
}
.service-card:hover {
  background: rgba(0,0,0,0.16);
  transform: translateY(-3px);
  border-top-color: rgba(255,255,255,0.12);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  margin-bottom: 14px;
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cream);
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-card .card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.service-card:hover .card-link {
  opacity: 1;
}

/* ====== WHY DIFFERENT ====== */
.why-different {
  padding: var(--space-md) 0 var(--space-sm);
}
.why-different h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 450;
  margin-bottom: 16px;
}
.why-different-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.why-point svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-green);
}
.why-point strong {
  color: var(--text-on-sage);
}
.why-quote {
  margin-top: 32px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 3vw, 22px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid rgba(255,255,255,0.15);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  margin-left: -40px;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.about-content .why-different-intro {
  max-width: none;
}
.about-content .why-points {
  margin-top: 0;
}
/* ====== BLOG ====== */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-card {
  display: block;
  background: rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 28px 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.blog-card:hover {
  background: rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cream);
}
.blog-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* blog article */
.article-header {
  padding: 80px 0 40px;
  text-align: center;
}
.article-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 450;
  line-height: 1.2;
  margin-bottom: 14px;
}
.article-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.article-hero {
  max-width: 680px;
  margin: 0 auto 32px;
  border-radius: 14px;
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-body {
  padding: 0 0 60px;
  max-width: 680px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 450;
  margin: 40px 0 14px;
}
.article-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.article-body p strong {
  color: var(--text-on-sage);
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-body li {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-body li strong {
  color: var(--text-on-sage);
}
.article-body blockquote {
  border-left: 3px solid rgba(255,255,255,0.15);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--cream);
}
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.article-table th, .article-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.article-table th { color: var(--cream); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.article-table td { color: var(--text-muted); }
.article-cta {
  background: rgba(0,0,0,0.1);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.article-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.article-cta .btn {
  margin: 0 auto;
}
/* blog: image grids */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 560px) {
  .image-grid { grid-template-columns: 1fr; }
}
.article-body figure {
  margin: 24px 0;
}
.article-body figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: block;
}
.image-grid figure {
  margin: 0;
}
.article-body figcaption {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}
/* blog: key takeaways box */
.key-takeaways {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--cream);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.key-takeaways p {
  margin-bottom: 10px;
}
.key-takeaways ul {
  margin-bottom: 0;
}
/* blog: faq section */
.faq-section dl {
  margin: 0;
}
.faq-section dt {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-sage);
  margin-top: 24px;
  margin-bottom: 6px;
}
.faq-section dd {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 18px;
}

/* ====== ACCORDION / FAQ (text +/- icon for homepage) ====== */
.accordion-trigger .icon {
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-muted);
}
.accordion-item.open .accordion-trigger .icon {
  transform: rotate(45deg);
}

/* red X variant for "problems" lists */
.why-point.nogo svg {
  color: var(--nogo-red);
}

/* ====== PLATFORMS / TAG LIST ====== */
.platform-list {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.platform-list strong {
  color: var(--text-on-sage);
}

/* ====== HERO ====== */
/* hero: split grid layout (text left, visual right) */
.hero {
  padding: var(--space-lg) 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content {
  text-align: left;
}
.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.hero-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
}
.hero-intro::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-muted);
  vertical-align: middle;
  margin-right: 10px;
}
.hero-intro strong {
  color: var(--text-on-sage);
  font-weight: 600;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 450;
  line-height: 1.1;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.hero h1 .underline {
  text-decoration: none;
  background-image: linear-gradient(var(--cream), var(--cream));
  background-position: 0 88%;
  background-size: 100% 3px;
  background-repeat: no-repeat;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 0 24px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 24px; }
  .hero-buttons { justify-content: center; }
  .hero-photo { order: -1; max-width: 200px; margin: 0 auto; }
  .hero-photo img { border-radius: 50%; }
}

/* ====== BUTTONS ====== */
.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-apply {
  background: var(--cta-red);
  color: #fff;
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--cta-red-glow);
  letter-spacing: 0.2px;
}
.btn-apply:hover {
  background: var(--cta-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--cta-red-glow), 0 0 0 4px rgba(196,69,58,0.12);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ====== HOW IT WORKS ====== */
.how-it-works {
  padding: var(--space-md) 0 var(--space-sm);
}
.how-it-works h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 450;
  line-height: 1.3;
  margin-bottom: 12px;
}
.how-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 540px;
}
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
}
.step + .step {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--cream);
}
.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
}
.step-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.step-content strong { color: var(--text-on-sage); }

/* ====== PROOF ====== */
.proof {
  padding: var(--space-sm) 0;
}
.proof h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 450;
  margin-bottom: 10px;
}
.proof-context {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.5;
}
.proof-context strong { color: var(--text-on-sage); }

/* stat banner */
.stat-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--dark);
  border-radius: 16px;
  padding: 36px 0;
  margin-bottom: 24px;
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 44px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* before/after */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.result-card {
  padding: 28px 24px;
  border-radius: 14px;
}
.result-card.before { background: rgba(0,0,0,0.12); }
.result-card.after { background: rgba(0,0,0,0.2); }
.result-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.result-card.before .result-card-label { color: var(--text-muted); }
.result-card.after .result-card-label { color: var(--accent-green); }
.result-card-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.result-card.before .dot { background: var(--text-muted); }
.result-card.after .dot { background: var(--accent-green); }
.result-stat { margin-bottom: 16px; }
.result-stat:last-child { margin-bottom: 0; }
.result-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 3px;
}
.result-card.before .result-number { color: var(--text-muted); }
.result-card.after .result-number { color: var(--cream); }
.result-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  padding: var(--space-sm) 0 var(--space-md);
}
.testimonials h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 450;
  margin-bottom: 10px;
  text-align: center;
}
.testimonials-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}
.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card {
  background: rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 32px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(0,0,0,0.12);
}
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-text {
  font-size: 16.5px;
  line-height: 1.6;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.testimonial-inline {
  background: none;
  border-radius: 0;
  padding: 0;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--cream);
  line-height: 1.5;
  text-align: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.testimonial-inline::before {
  content: '\201C';
  font-size: 3em;
  line-height: 0.5;
  position: absolute;
  left: -0.6em;
  top: -0.1em;
  color: rgba(255,255,255,0.06);
  font-style: normal;
}
.testimonial-inline .author {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--text-on-sage);
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.12);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; font-size: 14.5px; }
.author-title { font-size: 13px; color: var(--text-muted); }

/* ====== CONTACT SECTION (standardized plumber layout) ====== */
.slabel {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}
.contact-section {
  padding: var(--space-sm) 0;
}
.contact-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 450;
  line-height: 1.15;
  margin-bottom: 10px;
  text-align: center;
}
.contact-section h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 20px;
}
.contact-section .trust-badges {
  margin-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  gap: 22px;
  margin-bottom: 36px;
}
.contact-section .trust-badge {
  justify-content: flex-start;
}
.contact-section .trust-badge svg {
  opacity: 1;
}

/* ====== CONTACT FORM ====== */
.contact {
  padding: var(--space-lg) 0 var(--space-md);
  text-align: center;
}
.contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 450;
  margin-bottom: 10px;
}
.contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-align: center;
}
.contact-phone {
  display: block;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  transition: color 0.2s;
}
.contact-phone:hover { opacity: 0.8; }

.contact-section .container {
  max-width: 720px;
}
.contact-form {
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.form-input,
.form-textarea {
  background: rgba(0,0,0,0.12);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(244,241,235,0.35);
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* intl-tel-input overrides */
.iti { width: 100%; }
.iti .form-input { padding-left: 90px; }
.iti__country-container { --iti-border-color: transparent; }
.iti__selected-country {
  background: transparent !important;
  border-radius: 10px 0 0 10px;
  padding-left: 12px;
}
.iti__arrow { border-top-color: var(--text-muted); }
.iti__dropdown-content {
  background: var(--sage-dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
}
.iti__country { color: var(--cream); }
.iti__country:hover, .iti__country--highlight { background: rgba(255,255,255,0.1); }
.iti__dial-code { color: var(--text-muted); }
.iti__search-input {
  background: rgba(0,0,0,0.2);
  color: var(--cream);
  border-color: rgba(255,255,255,0.1);
}

.form-submit {
  margin-top: 22px;
  width: 100%;
  background: var(--cta-red);
  color: #fff;
  padding: 16px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--cta-red-glow);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: var(--cta-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--cta-red-glow), 0 0 0 4px rgba(196,69,58,0.12);
}

/* ====== FOOTER ====== */
.footer {
  padding: 40px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-col {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: var(--cream);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--cream); }
.footer-col-center {
  text-align: center;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: -50px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-badge svg {
  opacity: 0.6;
}
.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--cream); }
.footer-col-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-locations {
  display: flex;
  gap: 6px;
  font-size: 13px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}
.footer-social a:hover {
  color: var(--cream);
  transform: translateY(-1px);
}

/* ====== SERVICE PAGE ANIMATIONS ====== */

/* --- Accordion (line-based dividers, rotating plus icon) --- */
.accordion-item { border-top: 1px solid rgba(255,255,255,0.08); }
.accordion-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.accordion-trigger { width: 100%; background: none; border: none; color: var(--cream); font: inherit; font-size: 15px; font-weight: 700; padding: 18px 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-trigger:hover { color: #fff; }
.accordion-trigger svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; transition: transform 0.3s ease; }
.accordion-item.open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-body-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.accordion-item .accordion-trigger { max-width: 680px; }

/* --- Services carousel --- */
.svc-card {
  display: none;
  background: var(--sage-deeper, #435c39);
  border-radius: var(--radius);
  padding: 32px 36px;
  align-items: center;
  gap: 24px;
  min-height: 140px;
  animation: fadeIn 0.35s ease forwards;
}
.svc-card.active { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.svc-icon {
  flex-shrink: 0;
  min-width: 56px;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
}
.svc-copy { flex: 1; min-width: 0; }
.svc-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; line-height: 1.25; }
.svc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.svc-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.svc-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.dot.active { background: rgba(255,255,255,0.9); transform: scale(1.3); }
.svc-arrows { display: flex; gap: 8px; }
.arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-on-sage, #fff);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}
.arrow:hover { background: rgba(255,255,255,0.16); }
.svc-progress {
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 14px;
  overflow: hidden;
}
.svc-progress-bar {
  height: 100%;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  width: 0%;
}

/* --- Proof block (wraps gauges + comparison table) --- */
.proof-block { margin-top: 44px; background: rgba(0,0,0,0.3); border-radius: 14px; padding: 40px 36px; }

/* --- PageSpeed ring gauges --- */
.gauge-title { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 32px; }
.gauge-row { display: flex; justify-content: center; gap: 60px; align-items: flex-start; }
.gauge { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gauge-ring { position: relative; width: 140px; height: 140px; margin: 0 auto; }
.gauge-ring svg { transform: rotate(-90deg); width: 140px; height: 140px; }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 10; }
.ring-progress { fill: none; stroke-width: 10; stroke-linecap: round; }
.ring-green { stroke: var(--accent-green); filter: drop-shadow(0 0 8px rgba(74,173,91,0.4)); }
.ring-red { stroke: var(--nogo-red); }
.gauge-num { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'DM Serif Display', serif; font-size: 36px; font-weight: 700; color: var(--cream); }
.gauge-label { font-size: 14px; font-weight: 600; color: var(--cream); text-align: center; width: 100%; }
.gauge-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.vs-divider { font-family: 'DM Serif Display', serif; font-size: 16px; color: rgba(255,255,255,0.25); margin-top: 60px; }

/* --- Comparison table (inside proof-block) --- */
.comparison-table { margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; }
.comparison-header { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px; padding-bottom: 8px; }
.comparison-col-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.comparison-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px; padding: 12px 0; align-items: center; opacity: 0; transform: translateY(12px); transition: opacity 0.3s ease var(--d, 0s), transform 0.3s ease var(--d, 0s); }
.comparison-row + .comparison-row { border-top: 1px solid rgba(255,255,255,0.04); }
.comparison-table.animate .comparison-row { opacity: 1; transform: translateY(0); }
.comparison-metric { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.comparison-val { font-size: 13px; font-weight: 600; text-align: center; padding: 6px 10px; border-radius: 6px; min-width: 90px; }
.comparison-bad { background: rgba(196, 92, 74, 0.15); color: var(--nogo-red); }
.comparison-good { background: rgba(74, 173, 91, 0.15); color: var(--accent-green); }

/* --- Compare grid (before/after cards — shared) --- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.compare-card { background: rgba(0,0,0,0.2); border-radius: 14px; padding: 28px 24px; }
.compare-card.before { background: rgba(0,0,0,0.12); }
.compare-card.before-alt { background: rgba(0,0,0,0.12); }
.compare-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
.compare-label.bad { color: var(--nogo-red); }
.compare-label.good { color: var(--accent-green); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.45; }
.compare-list li svg { width: 14px; height: 14px; min-width: 14px; margin-top: 2px; flex-shrink: 0; }
.compare-list .faded { color: rgba(255,255,255,0.4); font-style: italic; }
.stat-row { margin-bottom: 20px; }
.stat-row:last-child { margin-bottom: 0; }
.stat-value { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--cream); line-height: 1.1; }
.stat-row .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; line-height: 1.4; }

/* --- Step tag (email page) --- */
.step-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-green); margin-top: 6px; }

/* --- Flow card (vertical process — Google Ads) --- */
.flow-card { margin-top: 44px; background: rgba(0,0,0,0.3); border-radius: 14px; padding: 36px 32px; }
.flow-steps { display: flex; flex-direction: column; }
.flow-step { display: flex; align-items: flex-start; gap: 20px; position: relative; padding-bottom: 32px; }
.flow-step:last-child { padding-bottom: 0; }
.flow-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 1px; background: rgba(255,255,255,0.1); }
.flow-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: var(--dark); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.flow-icon svg { width: 18px; height: 18px; stroke: var(--accent-green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.flow-step:last-child .flow-icon { background: rgba(74,173,91,0.15); }
.flow-text { padding-top: 2px; }
.flow-title { font-size: 15px; font-weight: 700; color: var(--cream); margin-bottom: 3px; }
.flow-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* --- Email preview (white card + annotation notes) --- */
.email-preview { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.email-card { background: #fff; border-radius: 14px; overflow: hidden; }
.email-header { padding: 18px 24px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.email-from { font-size: 12px; color: rgba(0,0,0,0.45); margin-bottom: 3px; }
.email-subject { font-size: 16px; font-weight: 700; color: var(--dark); }
.email-body { padding: 24px; }
.email-body p { font-size: 14px; color: #444; line-height: 1.65; }
.email-body p + p { margin-top: 12px; }
.email-body .name { font-weight: 600; color: var(--dark); }
.email-footer { padding: 14px 24px; border-top: 1px solid rgba(0,0,0,0.08); font-size: 11px; color: rgba(0,0,0,0.35); }
.email-notes { display: flex; flex-direction: column; gap: 20px; padding-top: 16px; }
.email-note { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.email-note svg { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; stroke: var(--accent-green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* --- GBP SERP mockup --- */
.gbp-mock { margin-top: 44px; background: var(--dark); border-radius: 14px; overflow: hidden; }
.gbp-searchbar { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.04); }
.gbp-searchbar .g-icon { width: 20px; height: 20px; }
.gbp-searchbar span { font-size: 14px; color: var(--text-muted); }
.gbp-body { display: grid; grid-template-columns: 1fr 1fr; }
.gbp-organic { padding: 18px; border-right: 1px solid rgba(255,255,255,0.04); }
.organic-result { margin-bottom: 16px; }
.organic-result:last-child { margin-bottom: 0; }
.organic-url { font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.organic-title { font-size: 13px; font-weight: 600; color: #8ab4f8; margin-bottom: 3px; }
.organic-desc { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.45; }
.gbp-panel { padding: 18px; }
.panel-image { width: 100%; aspect-ratio: 16/10; border-radius: 8px; object-fit: cover; margin-bottom: 14px; }
.panel-name { font-size: 16px; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.panel-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars-icons { color: #f4b400; font-size: 12px; letter-spacing: 1px; }
.stars-text { font-size: 12px; color: rgba(255,255,255,0.5); }
.panel-meta { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 14px; }
.panel-actions { display: flex; gap: 8px; }
.panel-btn { font-size: 11px; font-weight: 600; color: #8ab4f8; padding: 6px 12px; border: 1px solid rgba(138,180,248,0.25); border-radius: 16px; background: none; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .comparison-row { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ring-progress { transition: none !important; }
}

/* --- Services carousel mobile --- */
@media (max-width: 540px) {
  .svc-card { flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px; min-height: unset; }
  .svc-icon { width: 48px; min-width: 48px; height: 48px; font-size: 22px; }
  .svc-title { font-size: 16px; }
  .svc-desc { font-size: 13.5px; }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 640px) {
  .hero { padding: 80px 0 70px; }
  .how-it-works, .proof, .testimonials, .contact, .services, .why-different { padding: 70px 0; }
  .results-grid { grid-template-columns: 1fr; }
  .stat-banner { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .stat-item + .stat-item::before { display: none; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-text { font-size: 15.5px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .footer-grid { flex-direction: column; gap: 16px; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col-center { text-align: center; order: 3; margin-top: 4px; }
  .footer-col-right { text-align: center; flex-direction: column; gap: 10px; order: 2; }
  .footer-locations { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-contact { align-items: center; }
  .trust-badges { flex-direction: column; align-items: center; gap: 10px; margin-top: -40px; }
  .contact-section .trust-badges { flex-direction: row; margin-top: 0; flex-wrap: wrap; gap: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about-photo { margin-left: 0; }
  .about-photo img { max-width: 280px; margin: 0 auto; }
  .about-content .why-points { text-align: left; }

  /* mobile nav */
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { font-size: 12px; padding: 8px 14px; }

  /* service page mobile */
  .proof-block { padding: 28px 20px; }
  .gauge-row { gap: 28px; }
  .gauge-ring, .gauge-ring svg { width: 110px; height: 110px; }
  .gauge-num { font-size: 28px; }
  .vs-divider { font-size: 14px; }
  .comparison-table { padding-top: 20px; margin-top: 24px; }
  .comparison-header, .comparison-row { grid-template-columns: 1.8fr 1fr 1fr; gap: 6px; }
  .comparison-metric, .comparison-val { font-size: 12px; }
  .comparison-val { padding: 6px 6px; }
  .comparison-col-label { font-size: 9px; }
  .compare-grid { grid-template-columns: 1fr; }
  .email-preview { grid-template-columns: 1fr; }
  .gbp-body { grid-template-columns: 1fr; }
  .gbp-organic { display: none; }
  .panel-actions { flex-wrap: wrap; }
  .flow-card { padding: 28px 20px; }
  .flow-step { gap: 16px; }
  .flow-step:not(:last-child)::after { left: 15px; }
  .flow-icon { width: 32px; height: 32px; min-width: 32px; }
  .flow-icon svg { width: 15px; height: 15px; }
  .step-number { width: 38px; height: 38px; min-width: 38px; font-size: 16px; }
  .comparison-val { min-width: 70px; }
}

/* ====== RECAPTCHA BADGE ====== */
.grecaptcha-badge { visibility: hidden !important; }

/* ====== NEW: LEAD PARAGRAPH ====== */
.lead {
  font-size: var(--text-lead);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: var(--width-narrow);
}
.lead strong { color: var(--text-on-sage); }

/* ====== NEW: PULLQUOTE ====== */
.pullquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  max-width: 640px;
  position: relative;
  padding-left: 0;
}
.pullquote::before {
  content: '\201C';
  font-size: 4em;
  line-height: 0.5;
  position: absolute;
  left: -0.05em;
  top: -0.1em;
  color: rgba(255,255,255,0.06);
  font-style: normal;
}

/* ====== HERO KICKER EDITORIAL LINE ====== */
.hero .kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  vertical-align: middle;
  margin-right: 10px;
}

/* ====== NEW: SECTION BACKGROUNDS ====== */
.section--dark {
  background: radial-gradient(ellipse at 30% 50%, #253320 0%, var(--dark) 70%);
  padding: var(--space-md) 0;
  position: relative;
}
.section--dark::before,
.section--dark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(244,241,235,0.06);
}
.section--dark::before { top: 0; }
.section--dark::after { bottom: 0; }

.section--cream {
  background: var(--cream);
  color: var(--dark);
  padding: var(--space-sm) 0;
  position: relative;
}
.section--cream .container {
  max-width: 700px;
}
.section--cream .kicker,
.section--cream .section-label { color: var(--sage); }
.section--cream h2 { color: var(--dark); }
.section--cream p { color: rgba(30,40,25,0.7); }
.section--cream strong { color: var(--dark); }

/* ====== NEW: PROOF STRIP ====== */
.proof-strip {
  background: var(--dark);
  padding: 28px 0;
  position: relative;
  z-index: 2;
  margin-top: -20px;
}
.proof-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.proof-strip-item { text-align: center; }
.proof-strip-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-strip-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* ====== NEW: TRUST ROW ====== */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item svg { flex-shrink: 0; color: var(--accent-green); }

/* ====== NEW: CAPACITY NOTE ====== */
.capacity-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  font-weight: 500;
  text-align: center;
}

/* ====== NEW: CONTACT OR DIVIDER ====== */
.contact-or {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 16px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ====== NEW: MULTI-STEP FORM ====== */
.multistep-form { position: relative; min-height: 280px; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.3s ease; }
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.form-progress-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.form-progress-bar.filled { background: var(--cream); }
.form-progress-bar.active { background: var(--cta-red); }
.form-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.form-back {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-back:hover { background: rgba(255,255,255,0.05); }
.form-next {
  flex: 1;
  background: var(--cta-red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-next:hover {
  background: var(--cta-red-hover);
  transform: translateY(-1px);
}

/* ====== NEW: STICKY CALL BAR (mobile) ====== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--dark);
  padding: 12px 20px;
  border-top: 1px solid rgba(244,241,235,0.1);
}
.sticky-call-inner {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
.sticky-call a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}
.sticky-call-phone {
  background: var(--cta-red);
  color: #fff;
}
.sticky-call-form {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ====== NEW: SECTION--DARK RESULT CARDS ====== */
.section--dark .result-card.before { background: rgba(255,255,255,0.04); }
.section--dark .result-card.after {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ====== NEW: CREAM SECTION PROBLEM ICONS ====== */
.section--cream .xitem .xicon svg path,
.section--cream .why-point.nogo svg path {
  stroke: var(--cta-red);
}

/* ====== RESPONSIVE: NEW COMPONENTS ====== */
@media (max-width: 640px) {
  .sticky-call { display: block; }
  body { padding-bottom: 72px; }
  .proof-strip-inner { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .proof-strip-inner { gap: 16px; }
  .proof-strip-number { font-size: 22px; }
  .trust-row { gap: 16px; }
}

/* ====== HOMEPAGE REBUILD: TRUSTED BY ====== */
.trusted-by { padding: 20px 0; text-align: center; }
.trusted-by-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.trusted-by-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.5;
}
.trusted-by-logos span {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}

/* ====== HOMEPAGE REBUILD: HOW IT WORKS (horizontal cards) ====== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 32px 24px 28px;
  border-top: 2px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.step-card:hover {
  background: rgba(0,0,0,0.16);
  transform: translateY(-3px);
}
.step-card .step-number {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cream);
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ====== HOMEPAGE REBUILD: PROOF SPLIT LAYOUT ====== */
.proof-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.proof-context {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.proof-context strong { color: var(--text-on-sage); }
.case-pullquote {
  border-left: 3px solid rgba(255,255,255,0.15);
  padding-left: 20px;
  margin-top: 32px;
}
.case-pullquote p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(17px, 2.5vw, 20px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 16px;
}
.case-pullquote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.case-pullquote footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.case-pullquote footer strong {
  color: var(--cream);
  display: block;
}
.case-pullquote footer span {
  font-size: 12px;
  color: var(--text-muted);
}
.proof-data {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ====== HOMEPAGE REBUILD: ABOUT SECTION ====== */
.about-section {
  padding: var(--space-md) 0 var(--space-sm);
}
.about-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ====== HOMEPAGE REBUILD: SERVICES CREAM ====== */
.section--cream .service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.section--cream .service-card {
  background: rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 40px 20px 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  border-top: 2px solid rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
}
.section--cream .service-card:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.section--cream .service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  margin-bottom: 14px;
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.section--cream .service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.section--cream .service-card p {
  font-size: 13.5px;
  color: rgba(30,40,25,0.65);
  line-height: 1.55;
  margin-bottom: 12px;
}
.section--cream .service-card .card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.section--cream .service-card:hover .card-link { opacity: 1; }
.service-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}
.section--cream .service-price {
  color: rgba(30,40,25,0.5);
}

/* ====== HOMEPAGE REBUILD: TESTIMONIALS SECTION ====== */
.testimonials-section {
  padding: var(--space-sm) 0 var(--space-md);
}
.testimonials-section .pullquote {
  text-align: center;
  margin: 0 auto 24px;
}
.testimonials-section .testimonial-author {
  justify-content: center;
  margin-bottom: 40px;
}
.testimonials-section .divider {
  margin: 0 auto 40px;
}

/* ====== HOMEPAGE REBUILD: FAQ SECTION ====== */
.faq-section {
  padding: var(--space-sm) 0 var(--space-md);
}

/* ====== HOMEPAGE REBUILD: CONTACT SPLIT LAYOUT ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info .contact-sub {
  text-align: left;
  margin-bottom: 20px;
}
.contact-info .contact-phone {
  text-align: left;
  font-size: 24px;
  margin-bottom: 24px;
}
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.contact-testimonial {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  border-left: 2px solid rgba(255,255,255,0.12);
  padding-left: 16px;
  margin: 0;
}
.contact-testimonial footer {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  display: block;
}
.contact-section.section--dark h2 {
  text-align: left;
}
.contact-section.section--dark h2::before {
  display: none;
}

/* ====== HOMEPAGE REBUILD: RESPONSIVE ====== */
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .proof-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info .contact-sub,
  .contact-info .contact-phone,
  .contact-section.section--dark h2 { text-align: center; }
  .contact-trust { align-items: center; }
  .contact-testimonial { text-align: center; border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
  .section--cream .service-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { text-align: center; }
  .about-photo { margin-left: 0; }
  .about-photo img { max-width: 280px; margin: 0 auto; }
  .about-content .why-points { text-align: left; }
}
@media (max-width: 480px) {
  .section--cream .service-grid { grid-template-columns: 1fr; }
  .trusted-by-logos { gap: 20px; }
  .trusted-by-logos span { font-size: 12px; }
}
