/* =============================================
   FNL SERVICES — Main Stylesheet
   Brand: Capital meets craft.
   Palette: Forest emerald · cream · coral
   Type: Fraunces (display) + Inter (body)
   ============================================= */

:root {
  /* Core palette — editorial / premium / NOT corporate-blue */
  --ink:        #11231b;          /* deepest forest, near-black */
  --forest:     #0e3a2c;          /* primary brand */
  --forest-2:   #155943;          /* hover / mid */
  --moss:       #4a7a64;          /* mid green */
  --sage:       #c9d8c5;          /* soft sage tint */
  --cream:      #faf6ef;          /* page bg */
  --cream-2:    #f3ede0;          /* card bg */
  --paper:      #ffffff;
  --coral:      #e85d3c;          /* accent — marketing energy */
  --coral-2:    #c94a2a;          /* accent hover */
  --gold:       #d9b170;          /* warmth (used sparingly) */
  --ink-soft:   #3d4a43;
  --gray:       #6b7670;
  --gray-soft:  #9ba39e;
  --line:       #e3decf;          /* warm divider */
  --line-soft:  #ede8db;
  --red:        #c0392b;
  --green:      #2f8f5e;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Shape */
  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --t-fast: .18s var(--ease);
  --t:      .32s var(--ease);
  --t-slow: .55s var(--ease);

  /* Shadows */
  --sh-1: 0 1px 2px rgba(17,35,27,.04);
  --sh-2: 0 8px 24px rgba(17,35,27,.06);
  --sh-3: 0 22px 60px rgba(17,35,27,.10);
  --sh-4: 0 40px 100px rgba(17,35,27,.14);

  --header-h: 76px;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { cursor: pointer; border: 0; background: transparent; font: inherit; color: inherit; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--forest); color: var(--cream); }

/* ---------------- Typography ---------------- */
.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6.2vw, 5.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem,  4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 500; }
h5 { font-size: 1rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--moss); font-family: var(--font-body); }

h1 em, h2 em, h3 em { font-style: italic; color: var(--coral); font-weight: 400; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
p.lede { font-size: 1.18rem; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px;
  background: var(--moss);
}

/* ---------------- Layout primitives ---------------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }
.container-wide   { max-width: 1440px; margin: 0 auto; padding: 0 28px; }

.section { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; }
.section-lg { padding: 140px 0; }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--cream); }
.section-ink p { color: rgba(250,246,239,.72); }
.section-forest { background: var(--forest); color: var(--cream); }
.section-forest h1, .section-forest h2, .section-forest h3 { color: var(--cream); }
.section-forest p { color: rgba(250,246,239,.78); }
.section-cream2 { background: var(--cream-2); }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .section-lg { padding: 90px 0; }
}

/* ---------------- Top strip ---------------- */
.top-strip {
  background: var(--ink);
  color: rgba(250,246,239,.72);
  font-size: 12px;
  letter-spacing: .04em;
}
.top-inner {
  max-width: 1440px; margin: 0 auto; padding: 9px 28px;
  display: flex; align-items: center; gap: 22px;
  font-family: var(--font-body);
}
.ts-item { display: inline-flex; align-items: center; gap: 8px; }
.ts-link:hover { color: var(--cream); }
.ts-spacer { flex: 1; }
.ts-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); display: inline-block; }
@media (max-width: 768px) {
  .top-strip { display: none; }
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,.92);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.site-header.is-scrolled { background: rgba(250,246,239,.98); border-bottom-color: var(--line); }
.header-inner {
  max-width: 1440px; margin: 0 auto;
  height: var(--header-h);
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Brand mark */
.brand-mark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
}
.bm-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--forest); color: var(--cream);
  border-radius: 50%;
  letter-spacing: -0.02em;
  font-size: 14px; font-weight: 500;
  position: relative;
}
.bm-logo::after {
  content: ""; position: absolute; inset: -3px;
  border: 1px solid var(--forest);
  border-radius: 50%; opacity: .25;
}
.bm-letter { display: none; }
.bm-logo::before { content: "fnl"; }
.bm-name { font-size: 22px; color: var(--ink); letter-spacing: -.01em; }
.bm-name em { font-style: italic; color: var(--coral); font-weight: 400; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav > a, .nav-group > a {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
  display: inline-flex; align-items: center; gap: 4px;
}
.primary-nav > a:hover, .nav-group > a:hover { color: var(--forest); background: rgba(14,58,44,.05); }
.primary-nav > a.active, .nav-group > a.active { color: var(--forest); }
.primary-nav > a.active::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px; background: var(--coral); border-radius: 2px;
}
.nav-caret { font-size: 12px; opacity: .5; transition: transform var(--t-fast); }
.nav-group:hover .nav-caret { transform: rotate(90deg); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 11px 22px !important; border-radius: 999px;
  margin-left: 10px;
  border: 1px solid var(--ink);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: var(--coral); border-color: var(--coral); color: var(--cream) !important; transform: translateY(-1px); }

/* Dropdown */
.nav-group { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-3);
  padding: 24px;
  display: grid; grid-template-columns: repeat(2, 220px);
  gap: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 110;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nd-col h6 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.nd-col a {
  display: block;
  font-size: 14px; font-weight: 500;
  padding: 7px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--t-fast), padding var(--t-fast);
}
.nd-col a:last-child { border-bottom: 0; }
.nd-col a:hover { color: var(--forest); padding-left: 6px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; align-items: stretch;
    padding: 22px 28px 32px; gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform var(--t);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav > a, .nav-group > a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    font-size: 1.05rem;
  }
  .nav-cta { margin-left: 0; margin-top: 16px; align-self: flex-start; }
  .nav-dropdown {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: 0; padding: 12px 0 6px 16px;
    grid-template-columns: 1fr; gap: 14px;
    background: transparent;
  }
  .nd-col a { padding: 6px 0; font-size: 14px; }
  .nav-caret { display: none; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-fill { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-fill:hover { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.btn-coral { background: var(--coral); color: var(--cream); border-color: var(--coral); }
.btn-coral:hover { background: var(--coral-2); border-color: var(--coral-2); color: var(--cream); }
.btn-forest { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn-forest:hover { background: var(--forest-2); border-color: var(--forest-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-cream { background: transparent; color: var(--cream); border-color: rgba(250,246,239,.4); }
.btn-ghost-cream:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-cream:hover { background: var(--coral); color: var(--cream); border-color: var(--coral); }
.btn-arrow::after {
  content: "→"; transition: transform var(--t-fast);
}
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-lg { padding: 17px 36px; font-size: 15.5px; }

/* ---------------- Hero (Home) ---------------- */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(232,93,60,.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(14,58,44,.08), transparent 60%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .25;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
}
.hero-grid {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 64px;
}
.hero-text {
  text-align: center;
  max-width: 920px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--moss);
  margin: 0 auto 24px;
  font-family: var(--font-body);
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--moss);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 30px;
}
.hero-title em { font-style: italic; color: var(--coral); font-weight: 400; }
.hero-title .underline {
  position: relative; display: inline-block;
}
.hero-title .underline::after {
  content: ""; position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px; background: var(--coral);
  opacity: .25;
  z-index: -1;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 1080px;
  align-items: stretch;
}
.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--sh-2);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--coral);
}
.hero-card-num {
  font-family: var(--font-display);
  font-size: 3.6rem; font-weight: 300;
  line-height: 1; color: var(--forest);
  margin-bottom: 6px;
}
.hero-card-num em { color: var(--coral); }
.hero-card-label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: .02em;
}

.hero-trust {
  margin-top: 0;
  padding: 22px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  box-shadow: var(--sh-2);
}
.hero-trust strong { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; }
.hero-trust span { font-size: 13px; opacity: .72; }

/* Scrolling marquee — brands/types of clients we serve */
.hero-strip {
  margin-top: 90px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-strip-track {
  display: flex; gap: 60px;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.hero-strip-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--moss);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 60px;
}
.hero-strip-track span::after {
  content: "✻"; font-style: normal; color: var(--coral); opacity: .55;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 880px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid { gap: 40px; }
  .hero-side { grid-template-columns: 1fr; gap: 14px; }
  .hero-strip { margin-top: 60px; }
}

/* ---------------- Generic page hero ---------------- */
.page-hero {
  padding: 80px 0 70px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse 70% 80% at 80% 20%, rgba(232,93,60,.08), transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin-bottom: 22px;
  max-width: 18ch;
}
.page-hero h1 em { color: var(--coral); }
.page-hero p {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.6;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* Crumbs */
.crumbs {
  font-size: 13px; color: var(--gray);
  margin-bottom: 24px;
  font-family: var(--font-body);
  letter-spacing: .02em;
}
.crumbs a { color: var(--moss); }
.crumbs a:hover { color: var(--coral); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ---------------- Service grid (homepage / services list) ---------------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.svc-card {
  position: relative;
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t-fast);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--moss); }
.svc-num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 2.2rem;
  color: var(--coral);
  line-height: 1;
}
.svc-divider {
  height: 1px; background: var(--line);
  margin: 22px 0 18px;
}
.svc-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin-bottom: 14px;
  font-weight: 500;
}
.svc-card p { font-size: .98rem; color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.svc-card-links {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 24px;
}
.svc-card-links span {
  font-size: 12px;
  padding: 5px 11px;
  background: var(--cream-2);
  color: var(--ink-soft);
  border-radius: 999px;
  font-weight: 500;
}
.svc-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--ink);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.svc-card-cta::after {
  content: "→"; transition: transform var(--t-fast); color: var(--coral);
}
.svc-card-cta:hover::after { transform: translateX(5px); }
.svc-card-cta:hover { color: var(--coral); }

@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ---------------- Two-column section ---------------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col-7-5 { display: grid; grid-template-columns: 7fr 5fr; gap: 72px; align-items: center; }
@media (max-width: 880px) {
  .two-col, .two-col-7-5 { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------------- Stats / why us ---------------- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-cell {
  padding: 38px 28px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat-cell:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num em { color: var(--coral); font-style: italic; }
.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .03em;
  font-weight: 500;
}
@media (max-width: 880px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 18px; }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat-cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------------- Process / Steps ---------------- */
.process-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-list::before {
  content: ""; position: absolute;
  top: 28px; left: 4%; right: 4%;
  height: 1px; background: var(--line);
  z-index: 0;
}
.proc-item {
  padding: 0 18px;
  position: relative; z-index: 1;
}
.proc-num {
  width: 56px; height: 56px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--forest);
  margin-bottom: 22px;
}
.proc-item h4 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 500; }
.proc-item p { font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 880px) {
  .process-list { grid-template-columns: 1fr; gap: 28px; }
  .process-list::before { display: none; }
}

/* ---------------- Pricing / package cards ---------------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card {
  padding: 36px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.pkg-card.featured {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-8px);
}
.pkg-card.featured h4, .pkg-card.featured .pkg-price-num { color: var(--cream); }
.pkg-card.featured p, .pkg-card.featured .pkg-features li { color: rgba(250,246,239,.78); }
.pkg-card:hover { box-shadow: var(--sh-3); }
.pkg-card.featured:hover { transform: translateY(-12px); }
.pkg-tag {
  position: absolute; top: -14px; left: 30px;
  background: var(--coral); color: var(--cream);
  padding: 6px 14px; font-size: 11px;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
}
.pkg-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  margin-bottom: 6px;
}
.pkg-sub { font-size: 13px; color: var(--moss); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; margin-bottom: 24px; }
.pkg-price {
  display: flex; align-items: baseline; gap: 4px;
  margin: 18px 0 6px;
}
.pkg-price-cur { font-family: var(--font-display); font-size: 1.4rem; color: var(--moss); }
.pkg-price-num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--ink); font-weight: 500; }
.pkg-price-suffix { font-size: 14px; color: var(--ink-soft); margin-left: 4px; }
.pkg-incl { font-size: 12px; color: var(--moss); margin-bottom: 24px; letter-spacing: .03em; }
.pkg-features { list-style: none; padding: 0; margin: 24px 0 28px; flex: 1; }
.pkg-features li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.pkg-features li::before {
  content: "›"; position: absolute; left: 0;
  color: var(--coral); font-weight: 600;
}
.pkg-card.featured .pkg-features li { border-bottom-color: rgba(250,246,239,.08); }
.pkg-actions { display: flex; flex-direction: column; gap: 10px; }
.pkg-actions .btn { justify-content: center; width: 100%; }

@media (max-width: 980px) { .pkg-grid { grid-template-columns: 1fr; } .pkg-card.featured { transform: none; } }

/* ---------------- Micro-services grid ---------------- */
.micro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.micro-card {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-fast), transform var(--t-fast);
  display: flex; flex-direction: column;
  position: relative;
}
.micro-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.micro-card .micro-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600;
  color: var(--moss);
  margin-bottom: 14px;
}
.micro-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.micro-card p {
  font-size: 14px; color: var(--ink-soft);
  margin-bottom: 22px; flex: 1;
}
.micro-card .micro-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.micro-card .micro-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  font-weight: 500;
}
.micro-card .micro-price small {
  font-family: var(--font-body);
  font-size: 12px; color: var(--moss);
  text-transform: uppercase; letter-spacing: 1px;
  margin-left: 4px;
  font-weight: 500;
}
.micro-buy {
  background: var(--ink); color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  transition: background var(--t-fast);
  border: 0;
  cursor: pointer;
}
.micro-buy:hover { background: var(--coral); color: var(--cream); }
@media (max-width: 980px) { .micro-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .micro-grid { grid-template-columns: 1fr; } }

/* ---------------- About / quote / story ---------------- */
.editorial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.32;
  color: var(--ink);
  margin: 60px auto;
  max-width: 28ch;
  text-align: center;
  position: relative;
}
.editorial-quote::before {
  content: '"'; position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  font-size: 5rem; color: var(--coral);
  font-style: italic; opacity: .35;
  font-weight: 400;
}
.editorial-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--moss);
  margin-top: 22px; font-weight: 500;
}

/* ---------------- Contact form / forms ---------------- */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--moss);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 15px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(14,58,44,.10);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.form-actions { display: flex; gap: 14px; margin-top: 8px; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 18px;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.success { background: rgba(47,143,94,.10); color: #1f6b44; border: 1px solid rgba(47,143,94,.25); }
.form-msg.error { background: rgba(192,57,43,.08); color: #963023; border: 1px solid rgba(192,57,43,.20); }
@media (max-width: 760px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------------- Service detail page ---------------- */
.svc-detail-grid {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}
.svc-detail-grid h2 { margin-bottom: 24px; }
.svc-detail-grid p { color: var(--ink-soft); margin-bottom: 18px; }
.svc-bullets { list-style: none; padding: 0; margin: 28px 0; }
.svc-bullets li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
}
.svc-bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 14px;
  width: 22px; height: 22px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.svc-bullets li strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }

.svc-aside {
  position: sticky; top: 100px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.svc-aside h4 { margin-bottom: 18px; font-size: 1.3rem; font-weight: 500; }
.svc-aside .pkg-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.svc-aside .pkg-row:last-of-type { border-bottom: 0; }
.svc-aside .pkg-row .label { font-size: 14px; color: var(--ink-soft); }
.svc-aside .pkg-row .num { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); font-weight: 500; }
@media (max-width: 980px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-aside { position: static; }
}

/* ---------------- Checkout ---------------- */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.summary-card {
  position: sticky; top: 100px;
  background: var(--cream-2);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.summary-card h4 { font-size: 1.15rem; margin-bottom: 18px; font-weight: 500; }
.sum-row { display: flex; justify-content: space-between; padding: 11px 0; font-size: 14px; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.sum-row.total { font-size: 1.05rem; padding-top: 18px; border-top: 1.5px solid var(--ink); border-bottom: 0; margin-top: 6px; color: var(--ink); font-weight: 600; }
.sum-row.total .num { font-family: var(--font-display); font-size: 1.6rem; }
@media (max-width: 980px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 36px; }
  .summary-card { position: static; }
}

/* ---------------- Payment page ---------------- */
.pay-wrap {
  max-width: 640px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--sh-2);
  text-align: center;
}
.pay-amount {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 500;
  color: var(--ink);
  margin: 16px 0 4px; line-height: 1;
}
.pay-amount-cur { color: var(--moss); font-weight: 400; }
.pay-order { font-size: 13px; color: var(--gray); letter-spacing: 1px; font-family: var(--font-mono); }
.qr-box {
  display: inline-block;
  padding: 24px;
  background: var(--paper);
  border: 1px dashed var(--moss);
  border-radius: var(--radius);
  margin: 28px 0 18px;
}
.qr-box img { display: block; max-width: 240px; }
.upi-apps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.upi-app {
  padding: 14px 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.upi-app:hover { border-color: var(--coral); transform: translateY(-2px); background: var(--paper); }
.upi-app .upi-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 700; letter-spacing: -0.5px; }
.upi-app .ic-gpay { background: linear-gradient(135deg,#4285f4,#34a853); }
.upi-app .ic-phonepe { background: #5f259f; }
.upi-app .ic-paytm { background: linear-gradient(135deg,#00baf2,#002970); }
.upi-app .ic-other { background: var(--ink); }

.pay-status { margin-top: 26px; padding: 16px; background: var(--cream); border-radius: var(--radius); font-size: 14px; color: var(--ink-soft); }
.pay-status .pulse {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--coral);
  margin-right: 8px;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------------- Status / result page ---------------- */
.status-wrap {
  max-width: 580px; margin: 60px auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--sh-2);
}
.status-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 2rem;
}
.status-icon.success { background: rgba(47,143,94,.12); color: var(--green); }
.status-icon.failed  { background: rgba(192,57,43,.12); color: var(--red); }
.status-icon.pending { background: rgba(217,177,112,.18); color: #a87c2c; }
.status-detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.status-detail-row .label { color: var(--gray); }
.status-detail-row .val { color: var(--ink); font-weight: 500; }

/* ---------------- Policy / legal pages ---------------- */
.legal-body {
  max-width: 820px; margin: 0 auto;
}
.legal-body h2 {
  margin: 48px 0 18px;
  font-size: 1.7rem; font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-body h3 {
  margin: 32px 0 12px;
  font-size: 1.25rem; font-weight: 500;
}
.legal-body p, .legal-body li { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 1rem; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  padding: 16px 22px;
  background: var(--cream-2);
  border-left: 3px solid var(--coral);
  border-radius: 4px;
  margin-bottom: 32px;
  letter-spacing: .02em;
}

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: var(--cream); margin-top: 0; }

.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(250,246,239,.08); }
.ft-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.ft-cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.ft-eyebrow {
  display: block; font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--coral);
  font-weight: 500; margin-bottom: 16px;
}
.ft-cta-text h3 { color: var(--cream); font-size: clamp(1.7rem, 3.5vw, 2.4rem); max-width: 22ch; font-weight: 500; }
.ft-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.footer-main { padding: 70px 0 50px; }
.ft-grid {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.ft-col h6 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.ft-col a {
  display: block;
  font-size: 14.5px; color: rgba(250,246,239,.72);
  padding: 6px 0;
  transition: color var(--t-fast);
}
.ft-col a:hover { color: var(--cream); }
.ft-col-brand .ft-brand {
  font-family: var(--font-display);
  font-size: 1.7rem; color: var(--cream);
  margin-bottom: 14px; display: inline-block;
}
.ft-col-brand .ft-brand em { font-style: italic; color: var(--coral); }
.ft-strap { color: rgba(250,246,239,.72); font-size: 14.5px; max-width: 30ch; margin-bottom: 22px; line-height: 1.55; }
.ft-legal { font-size: 12.5px; color: rgba(250,246,239,.5); line-height: 1.7; letter-spacing: .02em; }
.ft-contact a { padding: 0; display: inline; }
.ft-contact { font-size: 14.5px; color: rgba(250,246,239,.72); margin-bottom: 14px; line-height: 1.7; }
.ft-addr { font-size: 12.5px; color: rgba(250,246,239,.5); line-height: 1.65; }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(250,246,239,.08);
  font-size: 12.5px;
}
.fb-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  color: rgba(250,246,239,.5);
}
.fb-links { display: flex; gap: 22px; flex-wrap: wrap; }
.fb-links a { color: rgba(250,246,239,.5); transition: color var(--t-fast); }
.fb-links a:hover { color: var(--cream); }

@media (max-width: 980px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ft-col-brand { grid-column: 1 / -1; }
  .fb-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .ft-grid { grid-template-columns: 1fr; }
}

/* ---------------- Misc utility ---------------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.max-50 { max-width: 50ch; }
.max-60 { max-width: 60ch; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Selection on dark sections */
.section-ink ::selection, .section-forest ::selection, .site-footer ::selection { background: var(--coral); color: var(--cream); }

/* =============================================================
   CHECKOUT PAGE
   ============================================================= */
.checkout-form-wrap { background: #fff; padding: 40px; border: 1px solid var(--moss); border-radius: var(--radius-lg); }
.ck-form .ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.ck-form .field { display: block; margin-bottom: 18px; }
.ck-form .field span {
  display: block; font-size: 13px; color: var(--ink); font-weight: 500;
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.ck-form .field span em { color: var(--coral); font-style: normal; font-weight: 700; }
.ck-form .field input, .ck-form .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--sage); border-radius: 10px;
  background: var(--cream); font-family: var(--font-body); font-size: 15px;
  color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.ck-form .field input:focus, .ck-form .field textarea:focus {
  outline: none; border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(74,122,100,0.15);
}
.ck-form .ck-terms { margin: 22px 0; padding: 14px 18px; background: var(--cream-2); border-radius: 10px; }
.ck-form .ck-terms .cb { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--ink-soft); cursor: pointer; line-height: 1.5; }
.ck-form .ck-terms .cb input[type=checkbox] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--forest); }
.ck-form .ck-terms a { color: var(--coral); font-weight: 500; }
.btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.ck-note { font-size: 12.5px; color: var(--gray); margin-top: 14px; text-align: center; line-height: 1.6; }
.ck-note a { color: var(--coral); }

/* Order summary card */
.checkout-summary {
  position: sticky; top: 100px; background: var(--ink); color: var(--cream);
  padding: 32px; border-radius: var(--radius-lg);
}
.checkout-summary h4 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.4rem;
  margin-bottom: 24px; color: var(--cream);
}
.cs-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(250,246,239,0.1); font-size: 14px; }
.cs-row.cs-total {
  border-bottom: 0; padding-top: 18px; margin-top: 8px;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  border-top: 1px solid rgba(250,246,239,0.2);
}
.cs-row .cs-label { color: rgba(250,246,239,0.65); }
.cs-row .cs-val { color: var(--cream); font-weight: 500; }
.cs-pkg { padding: 18px 20px; background: rgba(250,246,239,0.06); border-radius: 10px; margin-bottom: 18px; }
.cs-pkg-name { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.3; }
.cs-pkg-tag { font-size: 11px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 6px; }

/* Discount line — sits between Package price and Subtotal */
.cs-row-discount .cs-label { color: var(--gold); }
.cs-row-discount .cs-val-discount { color: var(--gold); font-weight: 500; }

/* Promo code box (lives inside .checkout-summary, dark cream-on-ink theme) */
.cs-promo {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(250,246,239,0.12);
}
.cs-promo-label {
  display: block; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; font-weight: 600;
}
.cs-promo-row { display: flex; gap: 8px; }
.cs-promo-row input {
  flex: 1; min-width: 0; padding: 11px 13px;
  background: rgba(250,246,239,0.06); color: var(--cream);
  border: 1px solid rgba(250,246,239,0.18); border-radius: 8px;
  font-family: var(--font-mono); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: border-color .15s ease;
}
.cs-promo-row input::placeholder { color: rgba(250,246,239,0.4); text-transform: none; letter-spacing: 0; }
.cs-promo-row input:focus { outline: none; border-color: var(--gold); }
.cs-promo-btn {
  padding: 11px 18px;
  background: var(--gold); color: var(--ink);
  border: 0; border-radius: 8px; font-weight: 600;
  font-size: 13px; cursor: pointer; white-space: nowrap;
  transition: filter .15s ease, transform .15s ease;
}
.cs-promo-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cs-promo-btn:disabled { opacity: .6; cursor: wait; transform: none; }

.cs-promo-feedback {
  margin-top: 10px; font-size: 12.5px; min-height: 1em;
  line-height: 1.4; color: rgba(250,246,239,0.7);
}
.cs-promo-feedback.is-success { color: var(--gold); }
.cs-promo-feedback.is-error   { color: #ffb4a1; }

.cs-promo-applied {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px;
  background: rgba(217,177,112,0.12);  /* gold tint */
  border: 1px solid rgba(217,177,112,0.4);
  border-radius: 8px;
  font-size: 13px; color: var(--cream);
}
.cs-promo-applied strong { color: var(--gold); font-family: var(--font-mono); letter-spacing: 0.04em; }
.cs-promo-remove {
  background: transparent; border: 0; color: rgba(250,246,239,0.65);
  font-size: 12px; cursor: pointer; padding: 4px 8px; border-radius: 6px;
  transition: color .15s ease, background .15s ease;
}
.cs-promo-remove:hover { color: var(--cream); background: rgba(250,246,239,0.08); }

.ck-trust { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(250,246,239,0.1); display: grid; grid-template-columns: 1fr; gap: 12px; }
.ck-trust-item { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }
.ck-trust-item strong { color: var(--cream); font-weight: 500; }
.ck-trust-item span { color: rgba(250,246,239,0.55); }

/* =============================================================
   PAYMENT PAGE
   ============================================================= */
.pay-wrap { max-width: 540px; margin: 0 auto; }
.pay-loading { text-align: center; padding: 80px 20px; }
.pay-loading p { margin-top: 24px; color: var(--ink-soft); font-size: 15px; }
.spinner {
  width: 48px; height: 48px; margin: 0 auto;
  border: 3px solid var(--sage); border-top-color: var(--forest); border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pay-card {
  background: #fff; padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--moss); box-shadow: var(--sh-2);
}
.pay-meta { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.pay-meta span { font-size: 12.5px; color: var(--gray); letter-spacing: 0.06em; text-transform: uppercase; }
.pay-meta strong { font-family: var(--font-mono); font-size: 14px; color: var(--ink); font-weight: 500; }
#payAmount { font-family: var(--font-display); font-size: 1.6rem; color: var(--forest); font-weight: 500; }
.pay-divider { height: 1px; background: var(--cream-2); margin: 14px 0; }

#paySlot { padding: 20px 0; text-align: center; }
.pay-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pay-qr-box { background: #fff; padding: 18px; border: 1px solid var(--sage); border-radius: 14px; display: inline-block; }
.pay-qr-box img, .pay-qr-box canvas { display: block; width: 220px; height: 220px; }
.pay-qr-help { font-size: 13.5px; color: var(--ink-soft); }
.pay-qr-help strong { color: var(--ink); }

.pay-pick-title {
  margin: 0 0 14px; font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.pay-apps { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.pay-app {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--sage); border-radius: 12px; background: var(--cream);
  text-decoration: none; color: var(--ink); transition: all .2s ease;
  font-weight: 500; font-size: 15px;
}
.pay-app:hover, .pay-app:active {
  border-color: var(--forest); transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 58, 44, .08);
}
.pay-app-logo {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: #fff; border: 1px solid var(--sage);
}
.pay-app-logo svg { width: 28px; height: 28px; display: block; }
.pay-app-name { flex: 1; font-weight: 600; }
.pay-app-arrow {
  font-size: 1.3rem; color: var(--moss); transition: transform .2s ease, color .2s ease;
}
.pay-app:hover .pay-app-arrow { transform: translateX(3px); color: var(--forest); }
.pay-pick-help {
  font-size: 12.5px; color: var(--moss); margin: 18px 0 10px;
  line-height: 1.55;
}
.pay-app-vpa-row { display: flex; gap: 8px; margin: 6px 0 0; }
.pay-app-vpa-row input {
  flex: 1; min-width: 0; padding: 11px 13px;
  border: 1px solid var(--sage); border-radius: 9px;
  font-size: 12px; font-family: var(--font-mono);
  background: var(--cream-2); color: var(--ink-soft);
}
.pay-app-vpa-row button {
  padding: 11px 16px; background: var(--forest); color: var(--cream); border: 0;
  border-radius: 9px; font-weight: 500; cursor: pointer; font-size: 13px;
  white-space: nowrap; transition: background .15s;
}
.pay-app-vpa-row button:hover { background: var(--ink); }

.pay-status { display: flex; align-items: center; gap: 10px; }
.ps-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.3);opacity:0.6;} }
.pay-status.success .ps-dot { background: #2da570; animation: none; }
.pay-status.failed .ps-dot { background: var(--coral); animation: none; }
.pay-note { margin-top: 14px; font-size: 12.5px; color: var(--gray); text-align: center; }

.pay-error {
  background: #fff; padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--coral); text-align: center;
}
.pay-error h3 { color: var(--coral); margin-bottom: 12px; }
.pay-error p { color: var(--ink-soft); margin-bottom: 22px; }

/* =============================================================
   PAYMENT STATUS PAGE
   ============================================================= */
.ps-wrap { max-width: 640px; margin: 0 auto; }
.ps-card {
  background: #fff; padding: 44px; border-radius: var(--radius-lg);
  border: 1px solid var(--moss); text-align: center;
}
.ps-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; }
.ps-icon.success { background: #e8f5ec; color: #2da570; }
.ps-icon.failed { background: #fceae5; color: var(--coral); }
.ps-icon.pending { background: #fdf3e0; color: var(--gold); }
.ps-card h2 { font-family: var(--font-display); margin-bottom: 12px; font-weight: 500; }
.ps-card p { color: var(--ink-soft); margin-bottom: 24px; }
.ps-details { background: var(--cream); padding: 22px; border-radius: 12px; margin: 24px 0; text-align: left; }
.ps-details .cs-row .cs-label { color: var(--ink-soft); }
.ps-details .cs-row .cs-val { color: var(--ink); }
.ps-actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; }

@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .checkout-summary { position: static; }
  .checkout-form-wrap { padding: 28px 22px; }
  .ck-form .ck-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 0; }
  .pay-card { padding: 26px 20px; }
  .pay-qr-box img, .pay-qr-box canvas { width: 200px; height: 200px; }
  .ps-card { padding: 32px 22px; }
}
