/* ============================================
   Pacific Poop Patrol — Enterprise Stylesheet
   ============================================ */
:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --lime: #84cc16;
  --moss: #052e16;
  --forest: #14532d;
  --bg-light: #f1f5f9;
  --text-faint: #94a3b8;
  --ocean: #16a34a;
  --ocean-2: #15803d;
  --sky: #22c55e;
  --sky-light: #84cc16;
  --navy: #14532d;
  --navy-deep: #052e16;
  --foam: #f0fdf4;
  --sand: #fde68a;
  --sand-light: #fef3c7;
  --sun: #f59e0b;
  --coral: #fb7185;
  --text: #0c1e2e;
  --text-dim: #475569;
  --text-faint: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --shadow-sm: 0 1px 2px rgba(12,30,46,0.06);
  --shadow-md: 0 4px 12px rgba(12,30,46,0.08);
  --shadow-lg: 0 16px 48px rgba(12,30,46,0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--text);
  background: #fef9ef;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ocean), var(--sky));
  z-index: 1000;
  transition: width 0.05s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: all 0.3s;
}
nav.topbar.scrolled {
  box-shadow: var(--shadow-md);
}
nav .nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
nav .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
nav .links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}
nav .links a {
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
nav .links a:hover, nav .links a.active {
  color: var(--ocean);
}
nav .links a.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--ocean);
  border-radius: 1px;
}
nav .nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav .phone-link {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  color: white;
  box-shadow: 0 4px 16px rgba(2,132,199,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(2,132,199,0.4);
}
.btn-secondary {
  background: white;
  color: var(--ocean);
  border-color: var(--ocean);
}
.btn-secondary:hover {
  background: var(--foam);
}
.btn-ghost {
  color: var(--text-dim);
  padding: 12px 16px;
}
.btn-ghost:hover { color: var(--ocean); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.hamburger { display: none; }
@media (max-width: 920px) {
  nav .links, nav .phone-link { display: none; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 1px;
    transition: all 0.3s;
  }
  .mobile-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform 0.3s;
    padding: 24px;
    z-index: 99;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu a:last-child { border-bottom: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 130px 24px 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--foam) 0%, white 80%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(253,224,71,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 110px 20px 60px; }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(2,132,199,0.08);
  color: var(--ocean);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--ocean);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--navy-deep);
}
.hero h1 .highlight {
  color: var(--ocean);
  position: relative;
}
.hero h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 12px;
  background: rgba(253,224,71,0.5);
  z-index: -1;
}
.hero .lead {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-trust .item strong {
  color: var(--navy);
  font-weight: 700;
}
.stars {
  color: var(--sun);
  letter-spacing: -2px;
  font-size: 15px;
}

/* ============================================
   INSTANT QUOTE WIDGET
   ============================================ */
.quote-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--sky), var(--sand));
}
.quote-card h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--navy-deep);
}
.quote-card .sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.field-group {
  margin-bottom: 16px;
}
.field-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.field-group input,
.field-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s;
  background: white;
  appearance: none;
  -webkit-appearance: none;
}
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(2,132,199,0.1);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.price-output {
  margin: 20px 0;
  padding: 18px;
  background: linear-gradient(135deg, var(--foam) 0%, white 100%);
  border: 2px dashed var(--ocean);
  border-radius: 12px;
  text-align: center;
}
.price-output .label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-output .price {
  font-size: 38px;
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.03em;
}
.price-output .price .per {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 80px 24px; }
section.tight { padding: 50px 24px; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  font-size: 12px;
  color: var(--ocean);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.section-head .desc {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trustbar {
  background: var(--navy-deep);
  color: white;
  padding: 22px 24px;
}
.trustbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.trustbar .item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trustbar .item .n {
  font-size: 22px;
  font-weight: 800;
  color: var(--sand);
  letter-spacing: -0.02em;
}
.trustbar .item .l {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  position: relative;
}
.card:hover {
  border-color: var(--ocean);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--foam), white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--ocean);
}
.card h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--navy-deep);
}
.card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.card.featured {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--sky) 100%);
  color: white;
  border-color: transparent;
}
.card.featured .ic {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.25);
  color: white;
}
.card.featured h3 { color: white; }
.card.featured p { color: rgba(255,255,255,0.85); }

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  text-align: center;
}
.step-num {
  display: inline-flex;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--ocean);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--ocean);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.step h3 {
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--navy-deep);
}
.step p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-light);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto 40px;
  border: 1px solid var(--border);
}
.pricing-toggle button {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s;
}
.pricing-toggle button.active {
  background: white;
  color: var(--ocean);
  box-shadow: var(--shadow-sm);
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans { grid-template-columns: 1fr; } }
.plan {
  padding: 32px 24px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  position: relative;
}
.plan.popular {
  border-color: var(--ocean);
  box-shadow: 0 12px 32px rgba(2,132,199,0.18);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--ocean);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan .plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.plan .price-block {
  margin-bottom: 18px;
}
.plan .price-amt {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  line-height: 1;
}
.plan .price-per {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}
.plan ul {
  list-style: none;
  margin: 22px 0;
  padding: 0;
}
.plan ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: start;
  gap: 8px;
}
.plan ul li svg {
  flex: 0 0 16px;
  width: 16px; height: 16px;
  color: var(--ocean);
  margin-top: 3px;
}
.plan .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-bg {
  background: linear-gradient(180deg, white 0%, var(--foam) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; left: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--sky-light);
  opacity: 0.4;
  line-height: 1;
}
.testimonial .stars {
  margin-bottom: 14px;
}
.testimonial .quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 15px;
}
.testimonial .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
}
.testimonial .meta {
  font-size: 12px;
  color: var(--text-faint);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}
.faq-q .plus {
  width: 28px; height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--foam);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--ocean);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: white;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(253,224,71,0.18) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(56,189,248,0.25) 0%, transparent 60%);
  z-index: 0;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary {
  background: white;
  color: var(--ocean);
}
.cta-band .btn-primary:hover { background: var(--foam); }
.cta-band .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 70px 24px 30px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand h4 {
  color: white;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: white;
}
.footer-socials a:hover {
  background: var(--ocean);
}
.footer-col h5 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  padding: 5px 0;
  font-size: 14px;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 14px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.1);
  z-index: 50;
  gap: 10px;
}
@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}
.sticky-cta .btn { flex: 1; justify-content: center; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 560px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-dim);
  transform: translateY(150%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .btn { padding: 8px 18px; font-size: 13px; }

/* ============================================
   PAGE HEADER (non-home pages)
   ============================================ */
.page-header {
  padding: 130px 24px 70px;
  background: linear-gradient(180deg, var(--foam) 0%, white 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.page-header .lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--ocean); }

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.before-after {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  cursor: ew-resize;
  background: var(--bg-light);
}
.before-after .before,
.before-after .after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.before-after .before {
  background: linear-gradient(135deg, #92400e 0%, #b45309 50%, #78350f 100%);
}
.before-after .after {
  clip-path: inset(0 0 0 50%);
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 50%, #4d7c0f 100%);
}
.before-after .label {
  position: absolute;
  top: 16px;
  background: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  z-index: 2;
}
.before-after .label-before { left: 16px; }
.before-after .label-after { right: 16px; }
.before-after .divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  z-index: 3;
}
.before-after .handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  color: var(--ocean);
  font-size: 16px;
  font-weight: 800;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.section-bg-light { background: var(--bg-light); }
.section-bg-foam { background: var(--foam); }

.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  fill: var(--white);
}
