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

:root {
  --ink: #0f1a14;
  --ink-soft: #3a4a40;
  --ink-mute: #6b7d72;
  --paper: #f5f2eb;
  --paper-warm: #ede9df;
  --paper-deep: #e4dfd3;
  --gold: #9a7c3f;
  --gold-light: #c4a45e;
  --gold-pale: #f0e8d4;
  --green-deep: #1a3a26;
  --green-mid: #2d5c3e;
  --green-accent: #3d7a52;
  --white: #fdfcf9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-soft: 0 2px 20px rgba(15, 26, 20, 0.08);
  --shadow-card: 0 4px 32px rgba(15, 26, 20, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154, 124, 63, 0.18);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green-deep);
}

.nav-cta {
  background: var(--green-deep);
  color: var(--gold-pale) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  color: var(--gold-pale) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 8% 80px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.022'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196, 164, 94, 0.4);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(253, 252, 249, 0.72);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(253, 252, 249, 0.35);
  color: rgba(253, 252, 249, 0.85);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 252, 249, 0.12);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(253, 252, 249, 0.5);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 420px;
}

.h-card {
  position: absolute;
  background: rgba(253, 252, 249, 0.06);
  border: 1px solid rgba(253, 252, 249, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}

.h-card:nth-child(1) {
  width: 300px;
  bottom: 0;
  right: 30px;
  transform: rotate(3deg);
}

.h-card:nth-child(2) {
  width: 320px;
  bottom: 40px;
  right: 15px;
  transform: rotate(1.5deg);
}

.h-card:nth-child(3) {
  width: 340px;
  bottom: 80px;
  right: 0;
  transform: rotate(0deg);
}

.h-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196, 164, 94, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.h-card-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.h-card-body {
  font-size: 0.8rem;
  color: rgba(253, 252, 249, 0.55);
  line-height: 1.6;
}

.h-card-score {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.score-bar {
  flex: 1;
  height: 4px;
  background: rgba(253, 252, 249, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  border-radius: 2px;
}

.score-num {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* TRUST STRIP */
.trust-strip {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--paper-deep);
  padding: 1.25rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-strip p {
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-badges {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge::before {
  content: '✓';
  color: var(--green-accent);
  font-weight: 600;
}

/* SECTION COMMONS */
section {
  padding: 100px 8%;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-deep);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

/* SERVICES */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 66%;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.service-card.featured {
  background: var(--green-deep);
  border-color: var(--green-mid);
}

.service-card.featured .svc-number,
.service-card.featured .svc-title,
.service-card.featured .svc-desc {
  color: var(--white);
}

.service-card.featured .svc-desc {
  color: rgba(253, 252, 249, 0.65);
}

.service-card.featured .svc-tag {
  background: rgba(196, 164, 94, 0.2);
  color: var(--gold-light);
}

.svc-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--paper-deep);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.svc-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.svc-desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.svc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}

/* Service Category Layouts */
.service-categories {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 3.5rem;
}

.service-category {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-bottom: 1px solid var(--paper-deep);
  padding-bottom: 1.25rem;
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.cat-meta {
  flex: 1;
}

.category-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
}

.category-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
  max-width: 750px;
}

@media (max-width: 768px) {
  .category-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .service-categories {
    gap: 3rem;
  }
}

/* HOW IT WORKS */
#how {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--paper-deep) 20%, var(--paper-deep) 80%, transparent);
}

.step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-deep);
  box-shadow: var(--shadow-soft);
}

.step-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.step-body {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* PRICING */
#pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  background: var(--paper);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.price-card.popular {
  background: var(--green-deep);
  border-color: var(--green-mid);
}

.price-card.popular .price-name,
.price-card.popular .price-amount,
.price-card.popular .price-period,
.price-card.popular .price-feature {
  color: var(--white);
}

.price-card.popular .price-feature {
  color: rgba(253, 252, 249, 0.75);
}

.price-card.popular .price-feature::before {
  color: var(--gold-light);
}

.price-card.popular .price-divider {
  border-color: rgba(253, 252, 249, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}

.price-name {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1;
}

.price-currency {
  font-family: var(--serif);
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.price-period {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--paper-deep);
  margin-bottom: 1.5rem;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.price-feature::before {
  content: '✓';
  color: var(--green-accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-btn {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.02em;
}

.price-btn-outline {
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
}

.price-btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

.price-btn-fill {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.price-btn-fill:hover {
  background: var(--gold-light);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* HOW TO SUBMIT */
#submit {
  background: var(--paper);
}

.submit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.submit-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sub-step {
  display: flex;
  gap: 1.25rem;
}

.sub-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sub-step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.sub-step-body {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.sub-step-body code {
  background: var(--paper-deep);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.8rem;
  color: var(--green-deep);
  font-family: 'Courier New', monospace;
}

.payment-panel {
  background: var(--white);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 90px;
}

.payment-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.payment-sub {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 2rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pay-method {
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pay-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pay-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
}

.pay-detail {
  font-size: 0.78rem;
  color: var(--ink-mute);
}

.pay-note {
  background: var(--gold-pale);
  border: 1px solid rgba(154, 124, 63, 0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: var(--gold);
  line-height: 1.6;
}

/* TURNAROUND */
.turnaround {
  margin-top: 3rem;
}

.turn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.turn-item {
  background: var(--white);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.turn-days {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--green-deep);
}

.turn-label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}

/* FAQ */
#faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--paper-deep);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--green-deep);
  font-weight: 500;
}

.faq-q .faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* CTA BANNER */
.cta-banner {
  background: var(--green-deep);
  padding: 80px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner .section-eyebrow {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.cta-banner .section-title {
  color: var(--white);
  margin: 0 auto 1.25rem;
}

.cta-banner p {
  color: rgba(253, 252, 249, 0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-banner .btn-primary {
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
}

.cta-email {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.5);
}

.cta-email a {
  color: var(--gold-light);
  text-decoration: none;
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 4rem 8% 2.5rem;
  color: rgba(253, 252, 249, 0.45);
}

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

.footer-brand {
  color: rgba(253, 252, 249, 0.8);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--gold-light);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(253, 252, 249, 0.4);
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.6);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(253, 252, 249, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 252, 249, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(253, 252, 249, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.34s;
}

.delay-4 {
  animation-delay: 0.46s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 6% 60px;
  }

  .hero-visual {
    display: none;
  }

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

  .services-grid-2 {
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .submit-layout {
    grid-template-columns: 1fr;
  }

  .payment-panel {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 70px 5%;
  }

  .hero {
    padding: 100px 5% 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--paper-deep);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    z-index: 99;
  }

  .hamburger {
    display: flex;
  }

  .services-grid,
  .services-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .turn-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* QUOTE PAGE CSS */

.nav-back {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-back:hover {
  color: var(--green-deep);
}


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






/* ── LAYOUT ── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 5vw 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* ── PAGE HEADER ── */
.page-header {
  grid-column: 1 / -1;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(196, 164, 94, 0.4);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-header-left {}

.page-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.page-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-sub {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-style: italic;
  max-width: 480px;
  margin-top: 0.4rem;
}

.progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-steps {
  display: flex;
  gap: 6px;
}

.ps {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--paper-deep);
  transition: background 0.3s;
}

.ps.active {
  background: var(--green-deep);
}

.ps.done {
  background: var(--gold);
}

.progress-label {
  font-size: 0.72rem;
  color: var(--ink-mute);
  white-space: nowrap;
}

/* ── FORM PANEL ── */
.form-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── SECTION CARD ── */
.section-card {
  background: var(--white);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s;
}

.section-card:hover {
  box-shadow: var(--shadow-card);
}

.section-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--paper-deep);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sc-icon-teal {
  background: rgba(26, 58, 38, 0.06);
}

.sc-icon-gold {
  background: var(--gold-pale);
}

.sc-icon-ink {
  background: rgba(15, 26, 20, 0.06);
}

.sc-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.sc-subtitle {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-top: 1px;
}

.section-card-body {
  padding: 1.5rem 1.75rem;
}

/* ── SERVICE SELECTOR ── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-option {
  position: relative;
}

.service-option input[type="checkbox"],
.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-label {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--paper-deep);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  height: 100%;
}

.service-label:hover {
  border-color: var(--green-mid);
  background: rgba(26, 58, 38, 0.06);
}

.service-option input:checked+.service-label {
  border-color: var(--green-deep);
  background: rgba(26, 58, 38, 0.06);
}

.service-option input:checked+.service-label .sl-check {
  opacity: 1;
}

.sl-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.4rem;
}

.sl-icon {
  font-size: 1.1rem;
}

.sl-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
  font-size: 0.55rem;
  color: white;
  font-weight: 700;
}

.sl-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.sl-desc {
  font-size: 0.72rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

.sl-base {
  font-size: 0.7rem;
  color: var(--green-deep);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ── FIELD GROUPS ── */
.field-group {
  margin-bottom: 1.25rem;
}

.field-group:last-child {
  margin-bottom: 0;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  display: block;
}

.field-hint {
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-weight: 400;
  margin-left: 6px;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-option {
  position: relative;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--paper-deep);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.radio-label:hover {
  border-color: var(--green-mid);
  color: var(--green-deep);
}

.radio-option input:checked+.radio-label {
  border-color: var(--green-deep);
  color: var(--green-deep);
  background: rgba(26, 58, 38, 0.06);
  font-weight: 600;
}

.select-field,
.input-field {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--paper-deep);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--white);
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.select-field:focus,
.input-field:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(26, 58, 38, 0.1);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute);
  font-size: 0.75rem;
  pointer-events: none;
}

.range-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.range-field {
  width: 100%;
  height: 5px;
  accent-color: var(--green-deep);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--ink-mute);
}

.range-value {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
  display: block;
  margin-top: 2px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── JOURNAL SECTION (conditional) ── */
.journal-section {
  display: none;
}

.journal-section.visible {
  display: block;
}

/* ── INDEX CARDS ── */
.index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.index-option {
  position: relative;
}

.index-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.index-label {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(15, 26, 20, 0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all 0.18s;
}

.index-label:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.index-option input:checked+.index-label {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.ix-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.ix-desc {
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-top: 2px;
  line-height: 1.4;
}

.ix-impact {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.rank-option {
  position: relative;
}

.rank-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rank-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid rgba(15, 26, 20, 0.12);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}

.rank-label:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.rank-option input:checked+.rank-label {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.rk-badge {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
}

.rk-label {
  font-size: 0.68rem;
  color: var(--ink-mute);
  line-height: 1.3;
}

/* ── TURNAROUND ── */
.turnaround-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.ta-option {
  position: relative;
}

.ta-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ta-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid rgba(15, 26, 20, 0.12);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}

.ta-label:hover {
  border-color: var(--green-mid);
}

.ta-option input:checked+.ta-label {
  border-color: var(--green-deep);
  background: rgba(26, 58, 38, 0.06);
}

.ta-speed {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.ta-desc {
  font-size: 0.7rem;
  color: var(--ink-mute);
}

.ta-surcharge {
  font-size: 0.7rem;
  color: #c0392b;
  font-weight: 600;
  margin-top: 4px;
}

.ta-free {
  font-size: 0.7rem;
  color: var(--green-deep);
  font-weight: 600;
  margin-top: 4px;
}

/* ── QUOTE PANEL ── */
.quote-panel {
  /* position: sticky; */
  top: 76px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(15, 26, 20, 0.14);
}

.qp-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qp-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}

.qp-subtitle {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
}

.qp-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.qp-no-selection {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.7;
}

.qp-line-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 1.5rem;
}

.qp-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  animation: fadeIn 0.25s ease;
}

.qp-item:last-child {
  border-bottom: none;
}

.qpi-name {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  flex: 1;
}

.qpi-detail {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}

.qpi-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.qp-modifiers {
  margin-top: 1rem;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qp-modifier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  padding: 4px 0;
}

.mod-label {
  color: rgba(255, 255, 255, 0.45);
}

.mod-val {
  font-weight: 500;
}

.mod-val.positive {
  color: var(--gold-light);
}

.mod-val.negative {
  color: #7cd1a1;
}

.qp-total {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.qp-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.qt-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.qt-amount {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s;
}

.qt-amount-usd {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  text-align: right;
}

.qt-turnaround {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.75rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.qt-turnaround strong {
  color: var(--gold-light);
}

.qt-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}

.qp-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qp-cta {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.qp-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.qp-cta:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.25);
  cursor: not-allowed;
  transform: none;
}

.qp-email-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── DISCLAIMER ── */
.disclaimer {
  grid-column: 1 / -1;
  background: var(--gold-pale);
  border: 1px solid rgba(196, 164, 94, 0.4);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.disc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.amount-updated {
  animation: pulse 0.3s ease;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .page-wrap {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: static;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .index-grid {
    grid-template-columns: 1fr;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .turnaround-grid {
    grid-template-columns: 1fr;
  }

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

/* ── DIVIDER LABEL ── */
.divider-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.divider-label::before,
.divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(15, 26, 20, 0.12);
}

.divider-label span {
  font-size: 0.68rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── CONDITIONAL SECTION REVEAL ── */
.cond-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.cond-section.visible {
  max-height: 2000px;
  opacity: 1;
}

/* ── STATS ANALYSIS MULTI-CHECKBOX GRID ── */
.stats-analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.stats-check-option {
  position: relative;
}

.stats-check-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.stats-check-label {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--paper-deep);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  height: 100%;
}

.stats-check-label:hover {
  border-color: var(--green-mid);
  background: rgba(26, 58, 38, 0.04);
}

.stats-check-option input:checked+.stats-check-label {
  border-color: var(--green-deep);
  background: rgba(26, 58, 38, 0.06);
  box-shadow: 0 0 0 1px var(--green-deep);
}

.stats-check-option input:checked+.stats-check-label .sc-name {
  color: var(--green-deep);
  font-weight: 600;
}

.sc-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.sc-desc {
  font-size: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (max-width: 860px) {
  .stats-analysis-grid {
    grid-template-columns: 1fr;
  }
}

/* ── EMAIL COPY WRAPPER & BUTTON ── */
.email-copy-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  vertical-align: middle;
}

.copy-email-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.1s, color 0.2s;
  border-radius: 4px;
  position: relative;
  line-height: 1;
}

.copy-email-btn:hover {
  opacity: 1;
  color: var(--green-deep);
  background: rgba(0, 0, 0, 0.05);
}

/* On dark background (like hero/cta-banner/footer) */
.cta-banner .copy-email-btn:hover,
footer .copy-email-btn:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.copy-email-btn:active {
  transform: scale(0.9);
}

/* Tooltip style */
.copy-email-btn::after {
  content: 'Copy';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -6px) scale(0.8);
  background: var(--ink);
  color: white;
  font-size: 0.65rem;
  padding: 3px 6px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.copy-email-btn:hover::after {
  opacity: 1;
  transform: translate(-50%, -6px) scale(1);
}

.copy-email-btn.copied::after {
  content: 'Copied!';
  background: var(--green-deep);
  opacity: 1;
  transform: translate(-50%, -6px) scale(1);
}

.cta-banner .copy-email-btn.copied::after,
footer .copy-email-btn.copied::after {
  background: var(--green-mid);
}