/* :root {
  --bg: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
  --primary: #334155;
  --primary-600: #1e293b;
  --primary-300: #94a3b8;
  --primary-gradient: linear-gradient(90deg, #334155 0%, #64748b 100%);
  --ring: 0 0 0 3px rgba(52,65,85,.15);
  --card: #ffffff;
  --alt: #f1f5f9;
  --shadow: 0 10px 30px rgba(52,65,85,.06);
  --radius: 14px;
} */

:root {
  --bg: #eaf6fb;
  --text: #1e293b;
  --muted: #5b6b7a;
  --primary: #3b82f6;
  --primary-600: #2563eb;
  --primary-300: #bae6fd;
  --primary-gradient: linear-gradient(90deg, #bae6fd 0%, #3b82f6 100%);
  --ring: 0 0 0 3px rgba(59, 130, 246, 0.12);
  --card: #fafdff;
  --alt: #dbeafe;
  --shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font: 400 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.3s;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  padding: 80px 0;
}
.section.alt {
  background: var(--alt);
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.2rem);
  margin: 0 0 8px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
}
.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Header */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 10px;
  background: #000;
  color: #fff;
  z-index: 1000;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(52, 65, 85, 0.08);
  color: var(--primary-600);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}
.brand img {
  filter: drop-shadow(0 4px 12px rgba(52, 65, 85, 0.12));
}
.site-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  padding: 10px 8px;
  border-radius: 10px;
}
.site-nav a:hover {
  background: rgba(52, 65, 85, 0.08);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  border-radius: 10px;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #334155;
  margin: 4px 0;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-120%);
    transition: 0.3s ease;
    box-shadow: var(--shadow);
  }
  .site-nav.open {
    transform: translateY(0);
  }
  .site-nav ul {
    flex-direction: column;
    padding: 16px;
  }
}

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--card);
  color: var(--primary-600);
}
.hero-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero-copy h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  line-height: 1.2;
  margin: 10px 0 12px;
}
.eyebrow {
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.hero-copy p {
  color: var(--muted);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}
.trust-bullets {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
  color: var(--primary-600);
}
.hero-art {
  position: relative;
}
.hero-blob {
  position: absolute;
  right: -30px;
  top: -60px;
  width: min(90vw, 720px);
  z-index: -1;
  opacity: 0.12;
}
.device-mock {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(52, 65, 85, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.device-mock img[src*="clean-home"] {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: 0 2px 16px rgba(52, 65, 85, 0.08);
}
@media (max-width: 900px) {
  .device-mock img[src*="clean-home"] {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .device-mock img[src*="clean-home"] {
    height: 140px;
  }
}
.device-mock .badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 13px;
}

/* Buttons */
.btn {
  /* background: var(--primary-gradient); */
  background-color: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  border: 0;
  display: inline-block;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(52, 65, 85, 0.14);
  background: var(--primary-600);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.btn--ghost {
  background: transparent;
  color: var(--primary-600);
  border: 1px solid rgba(52, 65, 85, 0.18);
  padding: 10px 16px;
  box-shadow: none;
  display: inline-block;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn--ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(52, 65, 85, 0.14);
  background: var(--primary-600);
  color: #fff;
}
.btn--lg {
  padding: 14px 20px;
  border-radius: 14px;
}
.btn--sm {
  padding: 8px 12px;
  font-size: 14px;
}
.btn--block {
  display: block;
  width: 100%;
}
/* Style for the "Get a Quote" button */
.btn--quote {
  background-color: #007bff; /* Classy blue color */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  /* transition: background-color 0.3s ease; /* Smooth hover effect */
}

.btn--quote:hover {
  background-color: #0056b3; /* Darker blue on hover */
  cursor: pointer;
}

.btn--quote:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* WhatsApp Button */
.btn--whatsapp {
  background-color: #fff; /* WhatsApp green */
  color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Adds spacing between the icon and text */
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin: auto;
  border-color: #25d366;
  border-width: 2px;
  border-style: solid;
}

.btn--whatsapp:hover {
  transform: scale(1.05); /* Slight scaling effect */
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.2); /* Adds a shadow */
  border-color: #1ebe57; /* Changes border color */
}

.btn--whatsapp svg {
  margin-right: 8px; /* Adds margin to the icon */
}
.btn--whatsapp img {
  margin-right: 8px; /* Adds margin to the icon */
}

/* Ribbon */
.ribbon {
  padding: 18px 0;
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
  border-top: 1px dashed rgba(52, 65, 85, 0.1);
  border-bottom: 1px dashed rgba(52, 65, 85, 0.1);
}
.ribbon-list {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--primary-600);
}
.ribbon-list svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Cards */
.cards {
  background: linear-gradient(120deg, #f8fafc 60%, #f1f5f9 100%);
  border-radius: 18px;
  padding: 32px 0 8px;
}
.cards .card {
  background: var(--card);
  border: 1px solid rgba(52, 65, 85, 0.08);
  padding: 28px 22px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.cards .card:hover {
  box-shadow: 0 12px 32px rgba(52, 65, 85, 0.12);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe 0%, #eaf4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.1);
}
.card-icon svg {
  width: 28px;
  height: 28px;
  color: #2563eb;
  background: linear-gradient(135deg, #93c5fd 0%, #dbeafe 100%);
  border-radius: 8px;
  padding: 4px;
}
.cards .card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-600);
  margin: 0 0 4px;
}
.cards .card p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 6px;
}
.cards .card ul.tick {
  margin-top: 8px;
  padding-left: 18px;
}
.cards.grid-3 {
  gap: 32px;
}
@media (max-width: 900px) {
  .cards.grid-3 {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .cards {
    padding: 16px 0 4px;
  }
  .cards.grid-3 {
    gap: 12px;
  }
  .cards .card {
    padding: 18px 10px 14px;
  }
}
.tick {
  margin: 0;
  padding-left: 18px;
}
.tick li {
  margin: 6px 0;
}
.perks .perk {
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.perk svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: 6px;
}

/* Pricing */
.price-card {
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price {
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2.4rem);
  font-weight: 800;
}
.price .cur {
  font-weight: 600;
  color: var(--primary);
  margin-right: 2px;
}
.price-card.featured {
  position: relative;
  outline: 2px solid var(--primary);
  transform: translateY(-4px);
}
.badge-mini {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}
.fine {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.pricing {
  background: linear-gradient(120deg, #f8fafc 60%, #f1f5f9 100%);
  border-radius: 18px;
  padding: 32px 0 8px;
}
.pricing.grid-3 {
  gap: 32px;
}
.price-card {
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.price-card:hover {
  box-shadow: 0 12px 32px rgba(52, 65, 85, 0.12);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.price-card.featured {
  outline: 2px solid var(--primary);
  box-shadow: 0 16px 40px rgba(52, 65, 85, 0.16);
  transform: translateY(-6px) scale(1.04);
}
.badge-mini {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(52, 65, 85, 0.1);
}
.price {
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2.4rem);
  font-weight: 800;
  margin-bottom: 6px;
}
.price .cur {
  font-weight: 600;
  color: var(--primary);
  margin-right: 2px;
}
.price-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary-600);
  margin: 0 0 4px;
}
.price-card ul {
  margin: 0 0 8px 0;
  padding-left: 18px;
}
.price-card button {
  margin-top: 10px;
}
.fine {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .pricing.grid-3 {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .pricing {
    padding: 16px 0 4px;
  }
  .pricing.grid-3 {
    gap: 12px;
  }
  .price-card {
    padding: 18px 10px 14px;
  }
}

/* Steps */
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
.steps li {
  list-style: none;
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary-gradient);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Slider */
.slider {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}
.slides {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;

  min-width: 0;
}
.slide {
  min-width: 100%;
  flex: 0 0 100%;
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  box-sizing: border-box;
}
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}
.dot[aria-selected="true"] {
  background: var(--primary);
}

/* Chips */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.chips li {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
}

/* FAQs */
.faqs details {
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
  box-shadow: var(--shadow);
}
.faqs summary {
  cursor: pointer;
  font-weight: 600;
}
.faqs p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

/* CTA / Contact */
/* CTA / Contact */
.cta {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.cta-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: #1a2e2e;
}
.contact-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 6px 0;
}
.contact-list svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.quote-form {
  background: #fff;
  border: 1px solid rgba(52, 65, 85, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.quote-form label {
  display: block;
  margin: 10px 0;
}
.quote-form span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.quote-form input,
.quote-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
}
.quote-form input:focus-visible,
.quote-form select:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* Footer */
.site-footer {
  padding: 40px 0 20px;
  border-top: 1px solid rgba(52, 65, 85, 0.08);
  background: #f1f5f9;
}
.foot-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 2fr 1fr 1fr;
}
.foot-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
.foot-brand img {
  border-radius: 8px;
}
.site-footer h4 {
  margin: 0.2rem 0 0.6rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin: 6px 0;
  color: var(--primary-600);
}
.copyright {
  grid-column: 1/-1;
  margin-top: 10px;
  color: var(--muted);
}

/* To top */
.to-top {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #334155;
  color: #f1f5f9;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

body {
  padding-top: 72px;
}

/* Extra Responsive Tweaks */
@media (max-width: 600px) {
  .section {
    padding: 40px 0;
  }
  .site-header {
    font-size: 15px;
  }
  .hero {
    padding: 40px 0 20px;
  }
  .hero-copy h1 {
    font-size: 2rem;
  }
  .cta-grid {
    gap: 16px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
