:root {
  --bg: #fffaf4;
  --bg-soft: #f6efe7;
  --paper: #ffffff;
  --ink: #241810;
  --muted: #7a6a5e;
  --primary: #8a5a32;
  --primary-dark: #5a351d;
  --primary-soft: #e7d4bf;
  --accent: #c99a5c;
  --olive: #56624b;
  --navy: #1f3140;
  --success: #22a36a;
  --border: rgba(36, 24, 16, 0.10);
  --shadow: 0 24px 70px rgba(55, 35, 20, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  font-family: "Tahoma", "Arial", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 154, 92, 0.13), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(86, 98, 75, 0.10), transparent 30%),
    var(--bg);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--primary);
  color: #fff;
}

.demo-bar {
  background: linear-gradient(90deg, var(--navy), var(--primary-dark));
  color: #fff;
  font-size: 0.92rem;
  padding: 9px 16px;
}

.demo-bar strong {
  color: #ffd89a;
}

.glass-nav {
  background: rgba(255, 250, 244, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(42, 28, 15, 0.06);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  color: var(--ink);
}

.navbar-brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 14px 30px rgba(138, 90, 50, 0.25);
}

.navbar-brand small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  margin-top: -4px;
}

.nav-link {
  color: rgba(36, 24, 16, 0.75);
  font-weight: 700;
  padding: 0.6rem 0.75rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.btn {
  font-weight: 800;
  border-width: 1.5px;
  padding: 0.78rem 1.2rem;
}

.btn-lg {
  padding: 0.9rem 1.35rem;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  box-shadow: 0 16px 30px rgba(138, 90, 50, 0.22);
}

.btn-whatsapp {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
  box-shadow: 0 16px 30px rgba(34, 163, 106, 0.22);
}

.btn-whatsapp:hover {
  background: #178653;
  border-color: #178653;
  color: #fff;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background-color: #fff;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(138, 90, 50, 0.14);
}

.form-label {
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.section-padding {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading span,
.tag,
.eyebrow {
  color: var(--primary);
  background: rgba(138, 90, 50, 0.10);
  border: 1px solid rgba(138, 90, 50, 0.13);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  margin: 18px 0 12px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 40px 0 92px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138, 90, 50, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 90, 50, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
  opacity: 0.7;
}

.min-vh-hero {
  min-height: 690px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.065em;
  margin: 0 0 22px;
}

.hero-copy .lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 650px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(42, 28, 15, 0.08);
  backdrop-filter: blur(14px);
}

.trust-strip div {
  padding: 16px 14px;
  border-inline-start: 1px solid var(--border);
}

.trust-strip div:first-child {
  border-inline-start: 0;
}

.trust-strip strong {
  display: block;
  font-size: 1.08rem;
  color: var(--primary-dark);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-showcase {
  position: relative;
  min-height: 540px;
}

.showcase-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.main-card {
  transform: rotate(-2deg);
}

.main-card img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.floating-offer {
  position: absolute;
  top: 42px;
  right: 42px;
  background: rgba(31, 49, 64, 0.92);
  color: #fff;
  padding: 16px 18px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(31, 49, 64, 0.20);
}

.floating-offer span {
  display: block;
  opacity: 0.75;
  font-size: 0.85rem;
}

.floating-offer strong {
  display: block;
  font-size: 1.15rem;
}

.mini-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: 0 22px 60px rgba(42, 28, 15, 0.15);
  backdrop-filter: blur(14px);
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 245px;
}

.mini-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}

.mini-card strong {
  display: block;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-availability {
  right: -14px;
  bottom: 96px;
}

.card-consult {
  left: -8px;
  bottom: 18px;
}

.hero-search-card {
  margin-top: -48px;
  position: relative;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(16px);
}

/* Cards */
.benefits-section {
  padding-top: 0;
}

.benefit-card,
.package-card,
.smart-form,
.contact-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(42, 28, 15, 0.08);
}

.benefit-card {
  padding: 28px;
  height: 100%;
  transition: 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.benefit-card i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 1.24rem;
  font-weight: 950;
}

.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Categories */
.category-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 280px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: end;
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(42, 28, 15, 0.08);
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-7px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36, 24, 16, 0.82), rgba(36, 24, 16, 0.05));
}

.category-card div {
  position: relative;
  z-index: 1;
  color: #fff;
}

.category-card h3 {
  font-weight: 950;
  margin: 0 0 3px;
}

.category-card span {
  color: rgba(255, 255, 255, 0.78);
}

/* Offer */
.offer-band {
  background:
    linear-gradient(135deg, rgba(31, 49, 64, 0.96), rgba(90, 53, 29, 0.94)),
    url("assets/pattern.svg");
  color: #fff;
}

.offer-band h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.04em;
  margin: 18px 0 12px;
}

.offer-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.offer-band .tag {
  color: #ffd89a;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.15);
}

.offer-price-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(14px);
}

.offer-price-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.offer-price-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 5px 0 18px;
}

/* Products */
.products-section {
  background: var(--bg-soft);
}

.product-filter-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(42, 28, 15, 0.08);
}

.product-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(42, 28, 15, 0.08);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f3eadf;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
  color: var(--primary-dark);
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
}

.product-body {
  padding: 22px;
}

.product-body h3 {
  font-size: 1.25rem;
  font-weight: 950;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--muted);
  min-height: 56px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.price-line strong {
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.price-line span {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-meta span {
  background: var(--bg-soft);
  color: var(--muted);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
}

/* Modal */
.product-modal {
  border: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-modal-close {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.modal-image-wrap {
  height: 100%;
  min-height: 580px;
  background: var(--bg-soft);
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 46px;
}

.modal-info h2 {
  font-weight: 950;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 18px 0 12px;
}

.modal-info p {
  color: var(--muted);
}

.modal-price {
  color: var(--primary-dark);
  font-size: 1.7rem;
  font-weight: 950;
  margin: 20px 0;
}

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

.spec-grid div {
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 14px;
}

.spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.spec-grid strong {
  display: block;
}

.product-bullets {
  margin-top: 20px;
}

.product-bullets p {
  margin-bottom: 8px;
}

.product-bullets i {
  color: var(--success);
}

/* Packages */
.package-card {
  position: relative;
  padding: 30px;
  height: 100%;
}

.package-card.featured {
  background: linear-gradient(180deg, #fff, #fff7ed);
  border: 2px solid rgba(138, 90, 50, 0.22);
  transform: translateY(-14px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 26px;
  background: var(--primary);
  color: #fff;
  padding: 7px 15px;
  border-radius: 999px;
  font-weight: 900;
}

.package-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.package-head span {
  color: var(--primary);
  font-weight: 950;
}

.package-head strong {
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.package-card h3 {
  font-weight: 950;
  margin-bottom: 16px;
}

.package-card ul {
  padding: 0;
  list-style: none;
  margin-bottom: 24px;
}

.package-card li {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  color: var(--muted);
}

.package-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
  margin-left: 8px;
}

/* Custom */
.custom-section {
  background: var(--bg-soft);
}

.custom-steps {
  display: grid;
  gap: 14px;
}

.custom-steps div {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.custom-steps strong {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}

.custom-steps span {
  font-weight: 900;
}

.smart-form {
  padding: 30px;
}

/* Projects */
.project-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(42, 28, 15, 0.08);
  height: 100%;
  transition: 0.25s ease;
}

.project-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card div {
  padding: 22px;
}

.project-card span {
  color: var(--primary);
  font-weight: 950;
}

.project-card h3 {
  font-weight: 950;
  margin: 8px 0;
}

.project-card p {
  color: var(--muted);
  margin: 0;
}

.testimonial-card {
  padding: 24px;
  height: 100%;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--muted);
}

/* Installments */
.installments-section {
  background: linear-gradient(135deg, #fffaf4, #efe4d7);
}

.installment-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.installment-table th {
  background: var(--navy);
  color: #fff;
  white-space: nowrap;
}

.installment-table td,
.installment-table th {
  padding: 18px;
}

.installment-table small {
  display: block;
  padding: 14px 18px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* SEO */
.local-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.local-tags a {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(42, 28, 15, 0.06);
}

.local-tags a:hover {
  background: var(--primary);
  color: #fff;
}

/* FAQ */
.faq-section {
  background: var(--bg-soft);
}

.faq-accordion {
  max-width: 900px;
  margin: auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 20px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}

.accordion-button {
  font-weight: 950;
  padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
  background: rgba(138, 90, 50, 0.10);
  color: var(--primary-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 154, 92, 0.18), transparent 25%),
    var(--bg);
}

.contact-card {
  padding: 32px;
  height: 100%;
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.24;
  margin: 18px 0 12px;
}

.contact-card p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  font-weight: 850;
}

.contact-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 14px;
  color: var(--primary);
}

/* Footer */
.footer {
  background: #1b1713;
  color: #fff;
  padding: 70px 0 24px;
}

.footer-brand {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand:hover {
  color: #fff;
}

.footer p,
.footer small,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 950;
  margin-bottom: 16px;
}

.footer a:not(.btn):not(.footer-brand) {
  display: block;
  margin-bottom: 9px;
}

.footer a:hover {
  color: #fff;
}

.demo-note {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
}

/* Floating */
.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  box-shadow: 0 18px 42px rgba(34, 163, 106, 0.32);
}

.floating-whatsapp:hover {
  color: #fff;
  background: #178653;
}

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

/* Helpers */
.is-hidden {
  display: none !important;
}

.fade-in-up {
  animation: fadeInUp 0.45s ease both;
}

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

.no-results {
  background: #fff;
  border: 1px dashed rgba(138, 90, 50, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-showcase {
    min-height: 500px;
  }

  .mini-card {
    position: static;
    margin-top: 14px;
    width: 100%;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 100px;
  }

  .section-padding {
    padding: 72px 0;
  }

  .hero-section {
    padding-top: 30px;
  }

  .min-vh-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-showcase {
    min-height: auto;
  }

  .main-card {
    transform: none;
  }

  .hero-search-card {
    margin-top: 24px;
  }

  .package-card.featured {
    transform: none;
  }

  .modal-image-wrap {
    min-height: 360px;
  }

  .modal-info {
    padding: 30px;
  }

  .section-heading.text-start {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 74px;
  }

  .demo-bar {
    font-size: 0.78rem;
  }

  .navbar {
    padding: 10px 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip div {
    text-align: center;
  }

  .floating-offer {
    top: 24px;
    right: 24px;
    padding: 12px 14px;
  }

  .hero-search-card,
  .product-filter-panel,
  .smart-form,
  .contact-card {
    padding: 18px;
    border-radius: 22px;
  }

  .category-card {
    min-height: 220px;
    padding: 16px;
  }

  .product-image,
  .project-card img {
    height: 220px;
  }

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

  .floating-whatsapp {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -16px 35px rgba(42, 28, 15, 0.09);
  }

  .mobile-bottom-bar a {
    color: var(--ink);
    text-align: center;
    padding: 10px 6px;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .mobile-bottom-bar a:nth-child(2) {
    background: var(--success);
    color: #fff;
  }

  .mobile-bottom-bar i {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 2px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .section-heading h2 {
    font-size: 1.85rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}
