/* =========================
   Bubble Cleans Website
   Unminified production-ready CSS
   ========================= */

:root {
  --pink: #CE4980;
  --black: #1C1C1A;
  --gray: #8A8A8A;
  --blush: #F9EEF3;
  --border: #F1D3E1;
  --soft: #F7F7F7;
  --white: #FFFFFF;
  --text: #4B4B4B;
  --shadow-sm: 0 12px 28px rgba(28, 28, 26, 0.06);
  --shadow-md: 0 18px 40px rgba(28, 28, 26, 0.10);
  --shadow-lg: 0 22px 60px rgba(28, 28, 26, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1200px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: #FCFAFB;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
}

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

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-panel h2,
.contact-copy h2,
.hero-copy h1 {
  margin: 0 0 18px;
  line-height: 1.1;
  color: var(--black);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  max-width: 760px;
}

.section-heading h2,
.about-panel h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading p,
.about-panel p,
.contact-copy p,
.hero-copy p,
.service-card p,
.step-card p,
.about-card p,
.faq-item p {
  margin: 0;
  color: var(--text);
}

.section-tag {
  margin: 0 0 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--pink);
}

.section-tag-light {
  color: #F7B5CE;
}

.lead {
  font-size: 1.15rem;
  max-width: 720px;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand img {
  height: 64px;
  width: auto;
  border-radius: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.site-nav a:not(.button):hover {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--black);
  display: block;
  border-radius: 99px;
}

.menu-label {
  font-size: 0.95rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  box-shadow: var(--shadow-md);
}

.button-secondary {
  background: var(--blush);
  border-color: var(--border);
  color: var(--black);
}

.button-secondary:hover {
  background: var(--white);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 96px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(206, 73, 128, 0.16), transparent 34%),
    radial-gradient(circle at left, rgba(138, 138, 138, 0.10), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  color: var(--pink);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.highlight-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel-outer {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.hero-panel-inner {
  background: linear-gradient(135deg, #FCE5EF 0%, #FFFFFF 55%, #F1F1F1 100%);
  border-radius: 28px;
  padding: 28px;
}

.hero-panel-inner > * + * {
  margin-top: 18px;
}

.hero-status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-status-row h2 {
  margin: 0;
  font-size: 1.7rem;
}

.status-badge {
  background: var(--pink);
  color: var(--white);
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.mini-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--gray);
}

.mini-label.light {
  color: rgba(255,255,255,0.7);
}

.included-box,
.notice-box,
.light-card,
.dark-card {
  border-radius: 22px;
  padding: 22px;
}

.included-box {
  background: var(--soft);
}

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

.dark-card {
  background: var(--black);
  color: var(--white);
}

.dark-card h3,
.light-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.light-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.notice-box {
  background: var(--blush);
  color: var(--pink);
  font-weight: 700;
}

.service-grid,
.about-cards {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.about-card,
.faq-item,
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.service-card {
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card h3,
.step-card h3,
.about-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--black);
}

.icon-badge,
.step-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.two-column-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 18px;
}

.step-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--soft);
}

.step-number {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-panel {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.about-panel h2,
.about-panel p {
  color: var(--white);
}

.about-panel p:last-child {
  opacity: 0.84;
}

.about-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-card {
  padding: 26px;
}

.about-card h3 {
  color: var(--pink);
  font-size: 2rem;
  line-height: 1;
}

.narrow-container {
  max-width: 940px;
}

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

.faq-item {
  background: var(--soft);
  padding: 26px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: linear-gradient(135deg, var(--black) 0%, #343434 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  opacity: 0.84;
}

.contact-note {
  margin-top: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px 18px;
  color: #F7B5CE;
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  color: var(--black);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form label span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(206, 73, 128, 0.12);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  color: var(--gray);
}

.footer-brand img {
  height: 52px;
  width: auto;
  border-radius: 12px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-column-section,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 16px 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(241, 211, 225, 0.5);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .highlight-grid,
  .split-cards,
  .about-cards,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    position: relative;
  }

  .brand img {
    height: 56px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 72px;
  }
}

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

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-status-row,
  .step-card {
    flex-direction: column;
  }

  .contact-wrap {
    padding: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
