.page-header {
  padding: 140px 0 calc(var(--space-16) + 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background: var(--color-blue-900);
  z-index: 0;
}

.page-header__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 10% 30%, rgba(107, 139, 118, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 85% 65%, rgba(107, 139, 118, 0.12) 0%, transparent 70%);
}

.page-header::before {
  content: '910';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-family: var(--font-heading);
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-sage-500);
  transform-origin: bottom left;
  z-index: 2;
}

.page-header .container {
  position: relative;
  z-index: 3;
}

.page-header .section-label {
  color: var(--color-sage-400);
}

.page-header h1 {
  color: var(--color-neutral-0);
  margin-bottom: var(--space-4);
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-header {
    padding: 160px 0 calc(var(--space-20) + 40px);
  }
}

.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px var(--container-pad);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 34, 55, 0.93) 0%,
    rgba(17, 34, 55, 0.88) 30%,
    rgba(17, 34, 55, 0.50) 60%,
    rgba(17, 34, 55, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-6);
}

.hero__label svg {
  width: 16px;
  height: 16px;
}

.hero .hero-title {
  color: var(--color-neutral-0);
  margin-bottom: var(--space-6);
}

.hero__desc {
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
}

.hero__phone-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__phone-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-0);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.hero__phone-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-neutral-0);
}

.hero__phone-btn svg {
  width: 20px;
  height: 20px;
}

.hero__phone-info {
  display: flex;
  flex-direction: column;
}

.hero__phone-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__phone-number {
  color: var(--color-neutral-0);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--text-body-lg);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.hero__phone-number:hover {
  opacity: 0.8;
  color: var(--color-neutral-0);
}

@media (min-width: 768px) {
  .hero {
    padding: 150px var(--container-pad);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 185px var(--container-pad);
  }

  .hero__content {
    margin-left: calc(max(0px, (100vw - var(--container-xl)) / 2));
  }
}

.proof-bar {
  background: var(--color-blue-900);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.proof-bar::before {
  content: '910';
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-family: var(--font-heading);
  font-size: clamp(200px, 25vw, 380px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

.proof-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-neutral-0);
  line-height: 0.8;
  letter-spacing: -0.02em;
}

.proof-bar__stat-row {
  display: flex;
  align-items: flex-end;
  gap: var(--space-4);
}

.proof-bar__number-label {
  font-size: var(--text-sm);
  color: var(--color-sage-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}

.proof-bar__stat-desc {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 400px;
}

.proof-bar__testimonial {
  position: relative;
  padding-left: var(--space-8);
  border-left: 3px solid var(--color-sage-500);
}

.proof-bar__stars {
  display: flex;
  gap: 3px;
  color: #FBBF24;
  margin-bottom: var(--space-3);
}

.proof-bar__stars svg {
  width: 18px;
  height: 18px;
}

.proof-bar__quote-text {
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-4);
  max-width: 440px;
}

.proof-bar__quote-author {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  font-weight: var(--fw-medium);
}

@media (min-width: 768px) {
  .proof-bar {
    padding: var(--space-20) 0;
  }

  .proof-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.how-it-works {
  position: relative;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .how-it-works__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .how-it-works__grid .step-card {
    padding: var(--space-6) var(--space-8);
    border-right: 1px solid var(--color-border-light);
  }

  .how-it-works__grid .step-card:first-child {
    padding-left: 0;
  }

  .how-it-works__grid .step-card:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.pricing-section .grid--3 {
  align-items: start;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.why-grid__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.why-grid__image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.why-grid__badge {
  position: absolute;
  bottom: 60px;
  right: -40px;
  background: var(--color-sage-600);
  color: var(--color-neutral-0);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-grid__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.why-grid__badge-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  line-height: 1.3;
  opacity: 0.9;
}

.why-grid__content .section-label { margin-bottom: var(--space-2); }
.why-grid__content .section-title { margin-bottom: var(--space-4); }

.check-list { list-style: none; margin-bottom: var(--space-6); }
.check-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-body);
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
}
.check-list li svg { flex-shrink: 0; color: var(--color-sage-500); }

.btn--link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-brand-blue);
  font-weight: var(--fw-semibold);
  font-size: var(--text-body);
  text-decoration: none;
  transition: gap var(--transition-fast);
}
.btn--link-arrow:hover { gap: var(--space-3); }
.btn--link-arrow svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.btn--link-arrow:hover svg { transform: translateX(3px); }

@media (min-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
  .why-grid__image-wrap img { height: 680px; }
  .why-grid__content { padding-left: var(--space-6); }
  .why-grid__badge { right: -48px; bottom: 80px; }
}

.value-bento {
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.value-bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.value-bento__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-bento__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.value-bento__badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: var(--color-sage-600);
  color: var(--color-neutral-0);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  text-align: center;
}

.value-bento__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  margin-bottom: 2px;
}

.value-bento__badge-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  line-height: 1.3;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

.value-bento__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.value-bento__card {
  background: var(--color-neutral-0);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.value-bento__card--lg {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}

.value-bento__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--color-brand-navy);
  margin-bottom: var(--space-6);
  line-height: 1.3;
}

.value-bento__pills {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.value-bento__pill {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-text-secondary);
  background: var(--color-neutral-100);
  padding: 5px var(--space-3);
  border-radius: var(--radius-full);
  line-height: 1;
}

.value-bento__pill--outline {
  background: transparent;
  border: 1px solid var(--color-border-light);
}

.value-bento__card-above {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-weight: var(--fw-medium);
}

.value-bento__card-stat {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-brand-navy);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.value-bento__card--sm .value-bento__card-stat {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-2);
}

.value-bento__card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 420px;
}

.value-bento__card--lg .value-bento__card-desc {
  margin-bottom: var(--space-6);
}

.value-bento__card--sm .value-bento__card-desc {
  margin-bottom: 0;
}

.value-bento__card--sm .value-bento__pill {
  margin-bottom: var(--space-3);
}

.value-bento__card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .value-bento__grid {
    grid-template-columns: 5fr 7fr;
    grid-template-rows: auto auto;
    gap: var(--space-5);
  }

  .value-bento__image {
    grid-row: 1 / 3;
  }

  .value-bento__image img {
    height: 100%;
    min-height: 520px;
  }

  .value-bento__cards {
    grid-row: 1 / 3;
    justify-content: stretch;
  }

  .value-bento__card--lg {
    flex: 1;
  }
}

.service-area {
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}

.service-area__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.service-area__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 34, 55, 0.94) 0%,
    rgba(17, 34, 55, 0.88) 50%,
    rgba(17, 34, 55, 0.80) 100%
  );
  z-index: 1;
}

.service-area .container {
  position: relative;
  z-index: 2;
}

.service-area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.service-area__content .section-title {
  color: var(--color-neutral-0);
  margin-bottom: var(--space-4);
}

.service-area__communities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.community-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  transition: all var(--transition-fast);
}

.community-tag:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.community-tag svg {
  color: var(--color-brand-blue);
}

.service-area__cta-card {
  background: var(--color-neutral-0);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.service-area__cta-icon {
  width: 64px;
  height: 64px;
  background: var(--color-blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--color-brand-blue);
}

.service-area__cta-card h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-h4);
}

.service-area__cta-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.service-area__cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-area__cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .service-area {
    padding: var(--space-24) 0;
  }

  .service-area__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-16);
  }
}

@media (min-width: 1024px) {
  .service-area__grid {
    grid-template-columns: 1.4fr 0.6fr;
  }
}

.faq-preview {
  background: var(--color-neutral-50);
}

.services-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.services-detail__block {
  padding: var(--space-8);
  background: var(--color-neutral-0);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.services-detail__block h3 {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
}

.services-detail__block ul {
  list-style: none;
}

.services-detail__block li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.services-detail__block li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.services-detail__block li.accepted svg {
  color: var(--color-success);
}

.services-detail__block li.rejected svg {
  color: var(--color-error);
}

@media (min-width: 768px) {
  .services-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: var(--container-lg);
  margin: 0 auto;
}

.bento-card {
  position: relative;
  overflow: hidden;
}

.bento-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-3);
}

.bento-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-body);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
  }

  .bento-card:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
  .bento-card:nth-child(2) { grid-column: 4 / 6; grid-row: 1; }
  .bento-card:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
  .bento-card:nth-child(4) { grid-column: 3 / 6; grid-row: 2; }
}

.signup-page {
  background: var(--color-neutral-50);
  min-height: 100vh;
}

.signup-page section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.signup-form-wrap {
  background: var(--color-neutral-0);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8);
  max-width: var(--container-sm);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .signup-form-wrap {
    padding: var(--space-12);
  }
}

.form-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-brand-navy);
  margin-bottom: var(--space-2);
}

.form-step__desc {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.service-option {
  border: 2px solid var(--color-border-base);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: var(--space-4);
}

.service-option:hover {
  border-color: var(--color-blue-400);
  background: var(--color-blue-50);
}

.service-option.is-selected {
  border-color: var(--color-blue-900);
  background: var(--color-blue-50);
}

.service-option__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.service-option__title {
  font-weight: 500;
  color: var(--color-blue-900);
}

.service-option__price {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-xl);
  color: var(--color-blue-900);
}

.service-option__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.frequency-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.frequency-option {
  border: 2px solid var(--color-border-base);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.frequency-option:hover {
  border-color: var(--color-blue-400);
}

.frequency-option.is-selected {
  border-color: var(--color-blue-900);
  background: var(--color-blue-50);
}

.frequency-option__label {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-blue-900);
  margin-bottom: var(--space-1);
}

.frequency-option__price {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--color-blue-900);
}

.frequency-option__savings {
  font-size: var(--text-xs);
  color: var(--color-sage-600);
  font-weight: var(--fw-medium);
}

.review-summary {
  background: var(--color-neutral-50);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.review-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-sm);
}

.review-summary__row:last-child {
  border-bottom: none;
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--color-blue-900);
}

.review-summary__label {
  color: var(--color-text-secondary);
}

.review-summary__value {
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.faq-page .accordion {
  max-width: var(--container-md);
  margin: 0 auto;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.faq-category-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  background: var(--color-neutral-100);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-category-btn:hover,
.faq-category-btn.is-active {
  background: var(--color-blue-900);
  color: var(--color-neutral-0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--color-sage-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-sage-600);
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
}

.contact-info__label {
  font-weight: 500;
  color: var(--color-blue-900);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.contact-info__value a {
  color: var(--color-text-link);
}

.account-page section {
  padding-bottom: var(--space-24);
}

.account-form-wrap {
  background: var(--color-neutral-0);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8);
  max-width: var(--container-sm);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .account-form-wrap {
    padding: var(--space-12);
  }
}

.image-break {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

.image-break--tall {
  height: 400px;
}

.image-break--parallax img {
  height: 120%;
  object-position: center 30%;
}

@media (min-width: 768px) {
  .image-break { height: 400px; }
  .image-break--tall { height: 500px; }
}

.sage-accent {
  background: var(--color-sage-50);
  position: relative;
  overflow: hidden;
}

.sage-accent__watermark {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(-12deg);
  font-size: 280px;
  font-weight: 800;
  color: var(--color-sage-200);
  opacity: 0.15;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

@media (min-width: 768px) {
  .sage-accent__watermark {
    font-size: 380px;
  }
}

.sage-accent .container {
  position: relative;
  z-index: 1;
}

.recycle-highlight {
  position: relative;
  overflow: hidden;
  background: var(--color-sage-50);
  padding: var(--space-20) 0;
}

.recycle-highlight__icon {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%) rotate(-15deg);
  width: 550px;
  height: 550px;
  pointer-events: none;
  opacity: 0.06;
}

.recycle-highlight__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recycle-highlight__content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.recycle-highlight__content .section-title {
  margin-bottom: var(--space-4);
}

.recycle-highlight__content .lead {
  margin-bottom: var(--space-8);
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .recycle-highlight__icon {
    width: 550px;
    height: 550px;
    right: 15%;
  }
}

@media (min-width: 1200px) {
  .recycle-highlight__icon {
    width: 550px;
    height: 550px;
    right: 15%;
  }
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.split-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
  .split-section__image {
    height: 480px;
  }
  .split-section--reverse {
    direction: rtl;
  }
  .split-section--reverse > * {
    direction: ltr;
  }
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-sage-500);
  border: none;
  margin: 0;
}

.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

.editorial-head {
  max-width: 640px;
}

.editorial-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.editorial-head__kicker {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-sage-600);
  margin-bottom: var(--space-4);
}

.editorial-head__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.editorial-head__desc {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .pricing-section .grid--3 {
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: start;
  }

  .pricing-card--featured {
    transform: scale(1.03);
    z-index: 2;
  }
}

.section--compact {
  padding-top: var(--space-14);
  padding-bottom: var(--space-14);
}

@media (min-width: 768px) {
  .section--compact {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
}

.section--flush {
  padding-top: 0;
  padding-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
