/* Made My Day Cleaning — static site styles */

:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Roboto", sans-serif;
  color: var(--slate-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3.serif { font-family: "Roboto", sans-serif; font-weight: 400; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--sky-500), var(--emerald-500));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.logo-name {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}
.logo-tag {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.main-nav { display: none; }
.header-cta { display: none; }
@media (min-width: 768px) {
  .main-nav { display: flex; gap: 2rem; }
  .main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
  }
  .main-nav a:hover { color: var(--slate-900); }
  .main-nav a[aria-current="page"] { color: var(--sky-600); }
  .header-cta { display: flex; align-items: center; gap: 1rem; }
}
.header-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--slate-600);
}
.header-phone:hover { color: var(--sky-600); }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; height: 2.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-900);
}
@media (min-width: 768px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--slate-100);
  background: #fff;
  padding: 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--slate-600);
}
.mobile-nav a[aria-current="page"] { color: var(--sky-600); }

/* ---------- Buttons & badges ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-dark { background: var(--slate-900); color: #fff; box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1); }
.btn-dark:hover { background: var(--slate-800); }
.btn-light { background: #fff; color: var(--slate-900); }
.btn-light:hover { background: var(--slate-100); }
.btn-outline { background: transparent; border-color: var(--slate-200); color: var(--slate-900); }
.btn-outline:hover { background: var(--slate-50); }
.btn-outline-dark { background: transparent; border-color: var(--slate-700); color: #fff; }
.btn-outline-dark:hover { background: var(--slate-800); }
.btn-sky { background: var(--sky-600); color: #fff; }
.btn-sky:hover { background: var(--sky-700); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
.badge-emerald { background: var(--emerald-100); color: var(--emerald-700); }
.badge-sky { background: var(--sky-100); color: var(--sky-700); }
.badge-sky-soft { background: var(--sky-50); color: var(--sky-700); }
.badge-amber { background: var(--amber-100); color: var(--amber-700); }
.badge-popular {
  background: linear-gradient(135deg, var(--sky-500), var(--emerald-500));
  color: #fff;
}

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
.section-tight { padding: 2.5rem 0; }

.section-heading { text-align: center; margin-bottom: 2.5rem; }
.section-heading h2 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
@media (min-width: 768px) { .section-heading h2 { font-size: 3rem; } }
.section-heading p {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 42rem;
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-100) 0%, var(--sky-50) 100%);
  border-bottom: 1px solid var(--slate-200);
  padding: 3.5rem 0;
}
@media (min-width: 768px) { .hero { padding: 5rem 0; } }
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 1.5rem 0;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .accent { color: var(--sky-600); }
.hero-lead {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 32rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .hero-lead { font-size: 1.25rem; } }
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  height: 31rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}
.float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.float-card .icon-circle { background: var(--emerald-100); color: var(--emerald-600); }
.float-card strong { display: block; color: var(--slate-900); }
.float-card span { font-size: 0.875rem; color: var(--slate-500); }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 1rem;
}
.trust-badge strong { display: block; font-size: 0.875rem; font-weight: 500; }
.trust-badge span { font-size: 0.75rem; color: var(--slate-500); }

.icon-circle {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--sky-50);
  color: var(--sky-600);
}
.icon-tile {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-tile.sky { background: var(--sky-100); color: var(--sky-600); }
.icon-tile.emerald { background: var(--emerald-100); color: var(--emerald-600); }
.icon-tile.amber { background: var(--amber-100); color: var(--amber-600); }
.icon-tile.purple { background: var(--purple-100); color: var(--purple-600); }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  align-items: stretch;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.service-card .btn { margin-top: auto; }
.service-card.popular {
  border-color: var(--sky-500);
  box-shadow: 0 10px 24px -4px rgba(14, 165, 233, 0.25);
}
.service-card .popular-flag {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
}
.service-card .icon-tile { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--sky-100); color: var(--sky-600); margin-bottom: 1.5rem; }
.service-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.service-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1rem; }
.service-price .amount { font-size: 1.875rem; font-weight: 600; }
.service-price .unit { color: var(--slate-500); }
.service-card > p { color: var(--slate-600); margin-bottom: 1.5rem; }
.feature-list { display: grid; gap: 0.75rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.feature-list svg { color: var(--emerald-500); flex-shrink: 0; margin-top: 0.125rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sky-600);
  font-weight: 500;
}
.text-link:hover { color: var(--sky-700); }

/* ---------- Why choose us ---------- */
.split-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .split-grid { grid-template-columns: 1fr 1fr; } }
.split-grid h2 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}
@media (min-width: 768px) { .split-grid h2 { font-size: 3rem; } }
.split-grid .lead { font-size: 1.125rem; color: var(--slate-600); margin-bottom: 2rem; }
.why-list { display: grid; gap: 1.5rem; }
.why-list li { display: flex; gap: 1rem; }
.why-list h3 { font-family: inherit; font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.why-list p { font-size: 0.875rem; color: var(--slate-600); }
.split-grid figure img {
  width: 100%;
  height: 37rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
}

.bg-slate { background: #eef2f7; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.bg-white { background: #fff; }

/* ---------- Dark CTA ---------- */
.cta-dark {
  background: var(--slate-900);
  color: #fff;
  text-align: center;
}
.cta-dark h2 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .cta-dark h2 { font-size: 3rem; } }
.cta-dark p {
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--sky-100) 0%, var(--sky-50) 100%);
  border-bottom: 1px solid var(--slate-200);
  padding: 3.5rem 0;
}
@media (min-width: 768px) { .page-hero { padding: 4.5rem 0; } }
.page-hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 1.5rem 0;
}
@media (min-width: 768px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 48rem;
}
@media (min-width: 768px) { .page-hero p { font-size: 1.25rem; } }

/* ---------- Discounts banner ---------- */
.discount-banner {
  background: var(--emerald-50);
  border-top: 1px solid var(--emerald-200);
  border-bottom: 1px solid var(--emerald-200);
}
.discount-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .discount-inner { flex-direction: row; } }
.discount-intro { display: flex; align-items: center; gap: 1rem; }
.discount-intro h2 { font-family: inherit; font-size: 1rem; font-weight: 600; }
.discount-intro p { font-size: 0.875rem; color: var(--slate-600); }
.discount-chips { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.discount-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--emerald-200);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  font-weight: 600;
}
.discount-chip .pill {
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.pill-strong { background: var(--emerald-500); color: #fff; }
.pill-soft { background: var(--emerald-100); color: var(--emerald-700); }
.pill-neutral { background: var(--slate-100); color: var(--slate-600); }

/* ---------- Service detail ---------- */
.service-detail {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1fr 1fr; } }
.service-detail + .service-detail { margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--slate-200); }
.service-detail-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.service-detail h2 {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .service-detail h2 { font-size: 2.25rem; } }
.service-detail .tagline { font-size: 1.125rem; color: var(--sky-600); font-weight: 500; margin-bottom: 1rem; }
.service-detail .desc { color: var(--slate-600); margin-bottom: 1.5rem; }
.service-panel {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.panel-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--slate-200);
}
.price-row:last-child { border-bottom: none; }
.price-row .label { color: var(--slate-600); }
.price-row .price { font-weight: 600; }
.big-price { display: flex; align-items: baseline; gap: 0.5rem; }
.big-price .amount { font-size: 2.25rem; font-weight: 700; }
.big-price .unit { color: var(--slate-500); }
.price-note { font-size: 0.875rem; color: var(--slate-500); margin-top: 0.5rem; }
.panel-section + .panel-section { margin-top: 2rem; }
.included-list { display: grid; gap: 0.75rem; }
.included-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--slate-700); }
.included-list svg { color: var(--emerald-500); flex-shrink: 0; margin-top: 0.25rem; }
.discount-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald-50);
  color: var(--emerald-700);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ---------- Light CTA ---------- */
.cta-light {
  background: var(--sky-100);
  border-top: 1px solid var(--slate-200);
  text-align: center;
}
.cta-light h2 {
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .cta-light h2 { font-size: 2.25rem; } }
.cta-light p { font-size: 1.125rem; color: var(--slate-600); margin-bottom: 2rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-grid h2 {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.contact-list { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-list h3 { font-family: inherit; font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-list .primary {
  font-size: 1.125rem;
  color: var(--sky-600);
  font-weight: 500;
}
.contact-list .primary:hover { color: var(--sky-700); }
.contact-list .meta { font-size: 0.875rem; color: var(--slate-500); margin-top: 0.25rem; }
.contact-list .body { color: var(--slate-600); }

.info-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.5rem;
}
.info-card h3 { font-family: inherit; font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.check-list { display: grid; gap: 0.75rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; color: var(--slate-600); }
.check-list svg { color: var(--emerald-500); flex-shrink: 0; }

.contact-cta-card {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: 1rem;
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.12);
  padding: 2rem;
}
.contact-cta-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-cta-card p { color: var(--slate-600); margin-bottom: 1.5rem; }
.contact-cta-card .btn + .btn { margin-top: 0.75rem; }
.contact-cta-card hr { border: none; border-top: 1px solid var(--slate-100); margin: 1.5rem 0; }
.contact-cta-card .small { font-size: 0.875rem; color: var(--slate-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-900); color: #fff; }
.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 3rem 0 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer .logo-tag { color: var(--slate-400); }
.footer-about {
  color: var(--slate-400);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}
.site-footer h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-links { display: grid; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--slate-400); }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact svg { color: var(--sky-500); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact a { color: #fff; font-weight: 500; }
.footer-contact a:hover { color: var(--sky-500); }
.footer-contact .sub, .footer-contact span { font-size: 0.875rem; color: var(--slate-400); }
.footer-contact a.plain { color: var(--slate-400); font-weight: 400; font-size: 0.875rem; }
.footer-contact a.plain:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* ---------- Utilities ---------- */
.icon { width: 1.25rem; height: 1.25rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--slate-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }
