:root {
  --primary: #d7a67b;
  --primary-dark: #d4952f;
  --primary-light: #f5c67a;
  --secondary: #0f1923;
  --gradient-primary: linear-gradient(135deg, #d7a67b 0%, #c49568 100%);
  --secondary-dark: #0f1923;
  --dark: #222222;
  --text: #444444;
  --text-light: #666666;
  --white: #ffffff;
  --off-white: #fff9f0;
  --light-bg: #fff8e7;
  --cream-bg: #fffbf5;
  --border: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition: 0.3s ease;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream-bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  background: none;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(980px, 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.btn-primary {
  color: var(--white);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  color: var(--secondary);
  background: var(--primary-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 245, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.footer-logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
}

.header-link i {
  color: var(--primary-dark);
}

.header-link .fa-phone-alt {
  transform: scaleX(-1);
}

.hero-section {
  padding: 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
  background: var(--off-white);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-md);
}

.hero-shell::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 26px 32px;
  background: var(--off-white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  width: fit-content;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 25, 35, 0.08);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  line-height: 1.1;
}

h1 {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  margin-bottom: 12px;
}

.hero-intro {
  max-width: 560px;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 14px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  list-style: none;
  max-width: 640px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 13px;
}

.hero-points li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 14px;
}

.hero-metrics article {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
  font-size: 1.35rem;
}

.hero-metrics span {
  color: var(--text-light);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card img {
  width: 90%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.hero-floating-card {
  position: absolute;
  left: 28px;
  bottom: 20px;
  max-width: 260px;
  padding: 16px;
  border: none;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.floating-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(215, 166, 123, 0.16);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 1.15rem;
}

.hero-floating-card p {
  color: var(--text-light);
  font-size: 13px;
}

.consult-strip {
  padding: 20px 0;
  background: var(--secondary);
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: flex-end;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.form-field-group {
  display: grid;
  gap: 8px;
}

.form-field-group label {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.form-field-group input,
.form-field-group select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: none;
  border-radius: 6px;
  background: var(--white);
  color: var(--secondary);
  font-size: 14px;
}

.form-field-group input::placeholder {
  color: var(--text-light);
}

.consult-form button {
  min-height: 44px;
  padding: 0 32px;
}

.proof-strip {
  padding: 10px 0;
  background: var(--light-bg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 42px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-item strong {
  display: block;
  color: var(--secondary);
  font-size: 15px;
}

.proof-item span {
  color: var(--text-light);
  font-size: 12px;
}

.proof-icon,
.proof-fa {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid !important;
  place-items: center;
  flex-shrink: 0;
  align-self: center;
  background: var(--cream-bg);
  color: var(--primary-dark);
  line-height: 1;
}

.proof-icon.google {
  font-size: 22px;
  font-weight: 700;
}

.proof-fa {
  font-size: 18px;
}

.section {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.solutions-section {
  padding-top: 28px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.solution-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
}

.solution-body {
  padding: 16px 16px 18px;
}

.solution-body h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.solution-body ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.solution-body li {
  position: relative;
  padding-left: 18px;
  color: var(--text-light);
  font-size: 13px;
}

.solution-body li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

.center-cta {
  margin-top: 26px;
  text-align: center;
}

.why-section {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
}

.why-item i {
  color: var(--primary-dark);
  margin-top: 4px;
}

.videos-section {
  background: var(--cream-bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 315px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-tile iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

.play-chip {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.before-after-section {
  background: var(--light-bg);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.before-after-grid img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: block;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.testimonial-top h3 {
  font-size: 1.1rem;
}

.stars {
  color: var(--primary-dark);
  letter-spacing: 0.12em;
  font-size: 13px;
}

.google-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--light-bg);
  color: var(--secondary);
  font-weight: 700;
}

.testimonial-card p,
.testimonial-card small {
  color: var(--text-light);
  font-size: 14px;
}

.journey-section {
  background: var(--cream-bg);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.journey-step {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.journey-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.journey-card p {
  color: var(--text-light);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--secondary);
  font-weight: 500;
}

.faq-question i {
  color: var(--primary-dark);
  transition: transform var(--transition);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition), padding var(--transition);
}

.faq-answer p {
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-light);
  font-size: 14px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 18px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.map-shell {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-shell iframe {
  width: 100%;
  display: block;
  border: 0;
}

.map-shell:not(.map-shell-double) {
  min-height: 440px;
}

.map-shell:not(.map-shell-double) iframe {
  height: 440px;
}

.map-shell-double {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  box-shadow: none;
  border: none;
  overflow: visible;
}

.map-shell-double iframe {
  flex: 1;
  height: 210px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.map-form-card {
  background: var(--cream-bg);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.map-form-card h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.map-form-card p {
  margin-bottom: 24px;
  color: var(--text-light);
  font-size: 14px;
}

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

.map-form .form-field input,
.map-form .form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--secondary);
  font-size: 14px;
}

.map-form .form-field input:focus,
.map-form .form-field select:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(215, 166, 123, 0.1);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(15, 25, 35, 0.64);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  width: min(980px, 100%);
  overflow: hidden;
  border-radius: 28px;
  background: var(--off-white);
  box-shadow: var(--shadow-lg);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 25, 35, 0.1);
  color: var(--secondary);
  cursor: pointer;
}

.popup-media {
  position: relative;
  min-height: 100%;
  background: var(--off-white);
}

.popup-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
}

.popup-media-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 249, 240, 0.84);
  backdrop-filter: blur(14px);
}

.popup-kicker {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popup-media-copy h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.popup-media-copy ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.popup-media-copy li {
  position: relative;
  padding-left: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.popup-media-copy li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

.popup-form-shell {
  padding: 46px 34px;
  background: var(--cream-bg);
}

.popup-form h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.popup-form p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.popup-fields {
  display: grid;
  gap: 14px;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--secondary);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 4px rgba(215, 166, 123, 0.16);
}

.popup-submit {
  width: 100%;
  margin-top: 18px;
}

.site-footer {
  background: var(--secondary);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0 28px;
}

.footer-block h3 {
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--primary-light);
  letter-spacing: 0.02em;
}

.footer-block p,
.footer-block a,
.footer-bottom p {
  color: var(--white);
  font-size: 13px;
  line-height: 1.7;
}

.footer-block a:hover {
  color: var(--white);
}

.footer-hours {
  color: var(--white);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.6;
}

.footer-bottom {
  padding: 14px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: var(--white);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #25d366;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.floating-whatsapp i {
  font-size: 32px;
  line-height: 1;
}

.mobile-action-bar {
  display: none;
}

.input-error {
  border-color: #d9534f !important;
}

.error-message {
  margin-top: 6px;
  color: #c03a2b;
  font-size: 12px;
}

.consult-form .error-message {
  color: var(--off-white);
}

@media (max-width: 1100px) {
  .consult-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .video-grid,
  .map-form-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-metrics,
  .popup-card {
    grid-template-columns: 1fr;
  }

  .popup-media img {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .hide-mobile {
    display: none;
  }

  .hero-shell,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 32px 20px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 32px 20px;
  }

  h1 {
    max-width: none;
  }

  .hero-image-card {
    width: 100%;
  }

  .hero-image-card img {
    width: 100%;
  }

  .hero-floating-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .proof-grid,
  .solution-grid,
  .video-grid,
  .journey-grid,
  .testimonial-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .consult-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-row {
    min-height: 74px;
  }

  .popup-overlay {
    align-items: flex-start;
    overflow-y: auto;
  }

  .popup-card {
    margin: 12px 0 24px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .section {
    padding: 44px 0;
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    background: var(--white);
  }

  .header-row {
    min-height: 60px;
    gap: 12px;
  }

  .brand-logo,
  .footer-logo {
    height: 34px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-link {
    gap: 6px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(112px, 0.8fr);
    min-height: auto;
    border-radius: 0;
    background: var(--light-bg);
    box-shadow: none;
    padding: 8px 0 0;
  }

  .hero-copy {
    padding: 10px 10px 14px 10px;
    background: transparent;
  }

  .eyebrow,
  .hero-badge {
    display: none;
  }

  h1 {
    font-size: 1rem;
    line-height: 1.28;
    margin-bottom: 8px;
  }

  .hero-intro {
    display: none;
  }

  .hero-points {
    gap: 4px;
    max-width: none;
  }

  .hero-points li {
    padding-left: 12px;
    font-size: 9px;
    line-height: 1.35;
  }

  .hero-points li::before {
    font-size: 9px;
    top: 1px;
  }

  .hero-visual {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 4px 0 0;
  }


  .hero-image-card img {
    width: 122%;
    max-width: none;
    max-height: 168px;
    object-fit: contain;
    object-position: bottom center;
    border-radius:10px;
  }

  .consult-strip {
    background: var(--secondary);
    /* padding: 40px 0; */
  }

  .consult-form {
    padding: 20px;
    gap: 12px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .consult-form input,
  .consult-form select,
  .consult-form button {
    min-height: 42px;
    border-radius: 6px;
    font-size: 13px;
  }

  .consult-form button {
    width: fit-content;
    min-width: 88px;
    justify-self: center;
    padding: 0 18px;
    box-shadow: none;
  }

  .proof-strip {
    padding: 10px 0 0;
    background: transparent;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--cream-bg);
    box-shadow: var(--shadow-sm);
  }

  .proof-item {
    min-height: 68px;
    justify-content: center;
    align-items: center;
    padding: 10px 8px;
    text-align: center;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .proof-item > div {
    width: 100%;
    text-align: center;
  }

  .proof-item:nth-child(2n) {
    border-right: none;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .proof-item strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .proof-item span {
    font-size: 11px;
    line-height: 1.25;
  }

  .proof-icon,
  .proof-fa {
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }

  .proof-icon.google {
    font-size: 18px;
  }

  .proof-fa {
    font-size: 16px;
  }

  .solutions-section {
    padding-top: 18px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
  }

  .mobile-action-link {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 8px 6px 10px;
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    text-align: center;
  }

  .mobile-action-link i {
    font-size: 14px;
  }

  .mobile-action-link .fa-phone-alt {
    transform: scaleX(-1);
  }
  }
}
