/* ============================================================
   HustlePay360 — Design tokens
   ============================================================ */
:root {
  --background: #ffffff;
  --foreground: #444444;
  --card: #ffffff;
  --muted: #f5f7f5;
  --muted-foreground: #6f7a72;
  --primary: #23644a;
  --primary-foreground: #ffffff;
  --secondary: #eaf2ec;
  --accent: #ffa000;
  --accent-foreground: #3a2800;
  --border: #e7ebe8;
  --input: #e7ebe8;

  --brand-green: #23644a;
  --brand-green-deep: #184234;
  --brand-green-soft: #eaf2ec;
  --brand-yellow: #ffa000;
  --brand-yellow-soft: #fff4e0;
  --brand-ink: #2a2f2b;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;

  --radius: 0.9rem;
  --maxw: 72rem;
}

/* ============================================================
   Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv01";
}

section {
  scroll-margin-top: 5rem;
}

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

ul,
ol {
  list-style: none;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 2rem;
  }
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--brand-ink);
  font-size: 1.875rem;
  margin-top: 0.75rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title-light {
  color: #ffffff;
}

.section-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .section-text {
    font-size: 1.125rem;
  }
}

.accent-green {
  color: var(--primary);
}
.accent-yellow {
  color: var(--accent);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s,
    transform 0.2s;
  white-space: nowrap;
}

.btn-round {
  border-radius: 999px;
}

.btn-lg {
  height: 3rem;
  padding-inline: 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  background: var(--brand-green-deep);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-accent:hover {
  background: var(--brand-yellow);
}

.btn-outline-green {
  background: var(--background);
  color: var(--primary);
  border-color: rgba(35, 100, 74, 0.25);
}
.btn-outline-green:hover {
  background: var(--brand-green-soft);
}

.btn-outline-light {
  background: transparent;
  color: var(--primary-foreground);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  border-bottom-color: rgba(231, 235, 232, 0.8);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: var(--maxw);
  margin-inline: auto;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .nav {
    padding-inline: 2rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
}
.brand-mark svg {
  width: 1rem;
  height: 1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}
.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--background);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.25rem 0.75rem;
}
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.mobile-cta {
  padding-top: 0.5rem;
}
.mobile-cta a {
  padding: 0;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: rgba(234, 242, 236, 0.6);
  padding-top: 7rem;
  padding-bottom: 5rem;
}

@media (min-width: 640px) {
  .hero {
    padding-top: 8rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 9rem;
  }
}

.hero-grid-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(
      to right,
      rgba(35, 100, 74, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(35, 100, 74, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at top, black, transparent 75%);
  mask-image: radial-gradient(ellipse at top, black, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hero-sub {
    font-size: 1.125rem;
  }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
  .hero-actions .btn {
    width: auto;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-visual {
    justify-content: flex-end;
  }
}

.hero-glow {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(255, 160, 0, 0.25);
  filter: blur(64px);
}

.phone-float {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Floating cards */
.float-card {
  position: absolute;
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .float-card {
    display: flex;
  }
}

.float-card-tl {
  left: -0.5rem;
  top: 4rem;
}
.float-card-br {
  right: 0;
  bottom: -0.5rem;
}

@media (min-width: 1024px) {
  .float-card-tl {
    left: -1.5rem;
  }
  .float-card-br {
    right: 0.5rem;
  }
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.float-icon svg {
  width: 1rem;
  height: 1rem;
}
.float-icon-green {
  background: var(--brand-green-soft);
  color: var(--primary);
}
.float-icon-yellow {
  background: var(--brand-yellow-soft);
  color: var(--accent);
}
.float-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-ink);
}
.float-sub {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* ============================================================
   Phone mockup
   ============================================================ */
.phone {
  position: relative;
  aspect-ratio: 9 / 19;
  width: 16rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--brand-ink);
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(35, 100, 74, 0.2);
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--background);
}

.phone-notch {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.phone-notch span {
  height: 0.375rem;
  width: 4rem;
  border-radius: 999px;
  background: rgba(68, 68, 68, 0.1);
}

.phone-balance {
  margin: 0.5rem 0.75rem 0;
  border-radius: 1rem;
  background: var(--primary);
  padding: 1rem;
  color: var(--primary-foreground);
}
.phone-balance-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.phone-balance-amount {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.phone-balance-amount span {
  font-size: 1rem;
  opacity: 0.7;
}
.phone-balance-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}
.pill {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.7rem;
  font-weight: 600;
}
.pill svg {
  width: 0.75rem;
  height: 0.75rem;
}
.pill-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.pill-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.phone-quick {
  margin: 1rem 0.75rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  text-align: center;
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.quick-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--brand-green-soft);
  color: var(--primary);
}
.quick-icon svg {
  width: 1rem;
  height: 1rem;
}
.quick-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.phone-txns {
  margin: 1rem 0.75rem 0;
  flex: 1;
}
.phone-txns-head {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-txns-head p {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--foreground);
}
.phone-txns-head svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--muted-foreground);
}
.txn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.txn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--muted);
  color: rgba(68, 68, 68, 0.7);
  flex-shrink: 0;
}
.txn-icon svg {
  width: 1rem;
  height: 1rem;
}
.txn-body {
  min-width: 0;
  flex: 1;
}
.txn-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.txn-sub {
  font-size: 0.62rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.txn-amount {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--foreground);
}
.txn-positive {
  color: var(--primary);
}

.phone-nav {
  margin: 0.75rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  background: var(--muted);
  padding: 0.625rem 1rem;
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(68, 68, 68, 0.2);
}
.dot-active {
  background: var(--primary);
}

/* ============================================================
   About
   ============================================================ */
.about {
  background: var(--background);
  padding-block: 5rem;
}

@media (min-width: 640px) {
  .about {
    padding-block: 7rem;
  }
}

.about-inner {
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-panel-wrap {
  order: 2;
}
.about-copy {
  order: 1;
}

@media (min-width: 1024px) {
  .about-panel-wrap {
    order: 1;
  }
  .about-copy {
    order: 2;
  }
}

.about-panel {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(245, 247, 245, 0.6);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .about-panel {
    padding: 2rem;
  }
}

.about-badge {
  position: absolute;
  right: -0.75rem;
  top: -0.75rem;
  border-radius: 999px;
  background: var(--accent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-foreground);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  padding: 1rem;
  transition: border-color 0.2s;
}
.activity:hover {
  border-color: rgba(35, 100, 74, 0.3);
}
.activity.activity-primary {
  border-color: rgba(35, 100, 74, 0.2);
  background: var(--primary);
  color: var(--primary-foreground);
}
.activity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand-green-soft);
  color: var(--primary);
}
.activity-primary .activity-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary-foreground);
}
.activity-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.activity-label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ============================================================
   Services
   ============================================================ */
.services {
  background: var(--brand-ink);
  color: #fff;
  padding-block: 5rem;
}

@media (min-width: 640px) {
  .services {
    padding-block: 7rem;
  }
}

.services-head {
  max-width: 42rem;
}

.services-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 160, 0, 0.4);
  background: rgba(255, 255, 255, 0.07);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  transition: background-color 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--accent-foreground);
}
.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.service-tag {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
}
.service-title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-body {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   How it works
   ============================================================ */
.how {
  background: var(--background);
  padding-block: 5rem;
}

@media (min-width: 640px) {
  .how {
    padding-block: 7rem;
  }
}

.how-head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.how-track {
  position: relative;
  margin-top: 4rem;
}

.how-line-h {
  position: absolute;
  left: 0;
  right: 0;
  top: 2rem;
  height: 2px;
  background: var(--border);
  display: none;
}
.how-line-v {
  position: absolute;
  left: 2rem;
  top: 2rem;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.how-line-fill {
  background: var(--primary);
  transition: width 1400ms ease-out, height 1400ms ease-out;
}
.how-line-h .how-line-fill {
  height: 100%;
  width: 0;
}
.how-line-v .how-line-fill {
  width: 100%;
  height: 0;
}

@media (min-width: 1024px) {
  .how-line-h {
    display: block;
  }
  .how-line-v {
    display: none;
  }
}

.how-steps {
  position: relative;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .how-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.how-step {
  position: relative;
  display: flex;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms, transform 600ms;
}
.how-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .how-step {
    flex-direction: column;
    gap: 0;
  }
}

.how-badge {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: var(--background);
  color: var(--muted-foreground);
  transition: border-color 500ms, background-color 500ms, color 500ms;
}
.how-track.in-view .how-badge {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}
.how-badge svg {
  width: 1.5rem;
  height: 1.5rem;
}
.how-num {
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.65rem;
  font-weight: 700;
}
.how-content {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .how-content {
    margin-top: 1.5rem;
  }
}
.how-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
}
.how-body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
@media (min-width: 1024px) {
  .how-body {
    padding-right: 1rem;
  }
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  background: rgba(234, 242, 236, 0.5);
  padding-block: 5rem;
}

@media (min-width: 640px) {
  .contact {
    padding-block: 7rem;
  }
}

.contact-inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-text {
  max-width: 28rem;
  margin-top: 1rem;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
}
.detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}
.detail-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-ink);
}

.contact-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .contact-card {
    padding: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .field-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-ink);
}
.field input,
.field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(111, 122, 114, 0.7);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(35, 100, 74, 0.2);
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 16rem;
  height: 100%;
}
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--brand-green-soft);
  color: var(--primary);
}
.success-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.contact-success h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-ink);
}
.contact-success p {
  margin-top: 0.5rem;
  max-width: 20rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--background);
  padding-block: 2rem;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--primary);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .cta-box {
    padding: 5rem 3rem;
  }
}

.cta-glow {
  pointer-events: none;
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  filter: blur(40px);
}
.cta-glow-1 {
  right: -4rem;
  top: -4rem;
  background: rgba(255, 160, 0, 0.2);
}
.cta-glow-2 {
  bottom: -5rem;
  left: -2.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.cta-content {
  position: relative;
  max-width: 48rem;
  margin-inline: auto;
}
.cta-title {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}
.cta-text {
  margin-inline: auto;
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 640px) {
  .cta-text {
    font-size: 1.125rem;
  }
}
.cta-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
  .cta-actions .btn {
    width: auto;
  }
}

/* ============================================================
   Benefits
   ============================================================ */
.benefits {
  background: var(--background);
  padding-block: 5rem;
}

@media (min-width: 640px) {
  .benefits {
    padding-block: 7rem;
  }
}

.benefits-head {
  max-width: 42rem;
}

.benefits-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--border);
  grid-template-columns: 1fr;
}

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

.benefit {
  display: flex;
  gap: 1.25rem;
  background: var(--background);
  padding: 1.75rem;
  transition: background-color 0.2s;
}
.benefit:hover {
  background: rgba(234, 242, 236, 0.4);
}

@media (min-width: 640px) {
  .benefit {
    padding: 2.25rem;
  }
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: var(--brand-green-soft);
  color: var(--primary);
  transition: background-color 0.2s, color 0.2s;
}
.benefit:hover .benefit-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}
.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-ink);
}
.benefit-body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--brand-ink);
  color: #fff;
}

.footer-inner {
  padding-block: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

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

.footer-brand .brand-name {
  color: #fff;
}

.footer-desc {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-socials svg {
  width: 1rem;
  height: 1rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}
.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   forms
   ============================================================ */
    .form-success {
      display: none;
      margin-bottom: 1rem;
      padding: 0.875rem 1rem;
      border-radius: 0.5rem;
      background: var(--primary-10);
      color: var(--primary);
      font-size: 0.875rem;
      font-weight: 600;
    }
    .form-success.show { display: block; }
  