/* ============================================================
   PrintMere — Premium Print-On-Demand
   Global Stylesheet
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colours pulled from the logo */
  --navy:        #0e1b34;
  --navy-900:    #0a1426;
  --navy-700:    #16264a;
  --navy-600:    #1d3160;
  --blue:        #2f7bf6;
  --blue-bright: #3d8bff;
  --sky:         #6aa9ff;
  --sky-soft:    #a9c9ff;
  --grad: linear-gradient(135deg, #3d8bff 0%, #2f7bf6 45%, #1f5fd6 100%);
  --grad-soft: linear-gradient(135deg, #eaf2ff 0%, #f4f8ff 100%);

  /* Neutrals */
  --white:   #ffffff;
  --ink:     #0e1b34;
  --ink-soft:#3a4763;
  --muted:   #6b7790;
  --line:    #e7ecf4;
  --bg:      #ffffff;
  --bg-alt:  #f5f7fb;
  --bg-tint: #eef3fc;

  /* Type */
  --f-display: 'Poppins', sans-serif;
  --f-head:    'DM Sans', sans-serif;
  --f-body:    'Inter', sans-serif;

  /* Shape & shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(14,27,52,.06), 0 2px 8px rgba(14,27,52,.04);
  --shadow:    0 8px 30px rgba(14,27,52,.08);
  --shadow-lg: 0 24px 60px rgba(14,27,52,.14);
  --shadow-blue: 0 12px 34px rgba(47,123,246,.30);

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-navy { background: var(--navy); color: #dde6f5; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head);
  font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.bg-navy .eyebrow { color: var(--sky); }

h1,h2,h3,h4 { font-family: var(--f-display); color: var(--ink); line-height: 1.12; letter-spacing: -.02em; }
.bg-navy h1,.bg-navy h2,.bg-navy h3 { color: #fff; }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 700; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.bg-navy .section-head p { color: #aab8d4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-head); font-weight: 700; font-size: .98rem;
  padding: 15px 30px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(47,123,246,.42); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--sky); color: var(--blue); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 1.04rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(14,27,52,.05); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--f-head); font-weight: 500; font-size: .96rem; color: var(--ink-soft);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .28s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 84px 0 96px;
  background:
    radial-gradient(1100px 540px at 88% -8%, rgba(106,169,255,.20), transparent 60%),
    radial-gradient(900px 500px at -6% 110%, rgba(47,123,246,.12), transparent 55%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 8px 16px 8px 10px; border-radius: 999px;
  font-family: var(--f-head); font-weight: 600; font-size: .82rem; color: var(--ink-soft);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.85rem); font-weight: 800; margin-bottom: 22px;
}
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub {
  font-family: var(--f-head); font-weight: 700; color: var(--blue);
  font-size: 1.02rem; letter-spacing: .01em; margin-bottom: 16px;
}
.hero-lead { color: var(--ink-soft); font-size: 1.12rem; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust .stars { color: #f5b301; letter-spacing: 2px; font-size: 1rem; }
.hero-trust small { display: block; color: var(--muted); font-size: .82rem; }
.hero-trust strong { font-family: var(--f-head); color: var(--navy); }
.hero-trust .divider { width: 1px; height: 36px; background: var(--line); }

/* Hero visual — stacked product mockups */
.hero-visual { position: relative; }
.hero-stage {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, #eaf2ff, #dbe9ff);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-stage::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(420px 420px at 70% 25%, rgba(255,255,255,.6), transparent 60%);
}
.hero-tee {
  position: absolute; inset: 10% 12% 6%;
  background:
    radial-gradient(140px 140px at 50% 30%, rgba(255,255,255,.9), transparent 70%),
    var(--grad);
  clip-path: polygon(28% 8%,38% 2%,62% 2%,72% 8%,92% 22%,84% 40%,76% 34%,76% 98%,24% 98%,24% 34%,16% 40%,8% 22%);
  box-shadow: inset 0 -30px 60px rgba(14,27,52,.18);
}
.hero-tee-print {
  position:absolute; top:34%; left:50%; transform:translateX(-50%);
  width:46%; text-align:center; color:#fff;
  font-family:var(--f-display); font-weight:800; font-size:1.5rem; line-height:1.1;
  text-shadow:0 2px 10px rgba(0,0,0,.2);
}
.float-card {
  position: absolute; background: #fff; border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  font-family: var(--f-head);
}
.float-card .ic {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--blue);
}
.float-card .ic svg { width: 20px; height: 20px; }
.float-card b { font-size: .9rem; color: var(--navy); display: block; }
.float-card span { font-size: .75rem; color: var(--muted); }
.fc-1 { top: 8%; left: -6%; animation: floaty 6s ease-in-out infinite; }
.fc-2 { bottom: 12%; right: -8%; animation: floaty 7s ease-in-out infinite .8s; }
.fc-3 { bottom: -4%; left: 14%; animation: floaty 6.5s ease-in-out infinite .4s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ---------- Logo strip ---------- */
.logostrip { padding: 30px 0; border-bottom: 1px solid var(--line); background: #fff; }
.logostrip p { text-align: center; font-family: var(--f-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.logostrip .row { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; opacity: .68; }
.logostrip .row span { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--navy); letter-spacing: -.02em; }

/* ============================================================
   FEATURE / WHY cards
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }

.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d7e3fb; }
.feature .ficon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--blue); margin-bottom: 20px;
}
.feature .ficon svg { width: 27px; height: 27px; }
.feature h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.about-media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3.4; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg,#16264a,#0e1b34);
}
.about-media .layers { position: absolute; inset: 0; display: grid; place-items: center; }
.about-media .layer {
  position: absolute; border-radius: 18px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(2px);
}
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 34px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--f-display); font-weight: 800; font-size: 2.1rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .88rem; margin-top: 6px; }
.about-copy h2 { font-size: clamp(2rem,3.6vw,2.65rem); font-weight: 700; margin-bottom: 20px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.about-list { margin-top: 22px; display: grid; gap: 13px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.about-list .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; }
.about-list .ck svg { width: 13px; height: 13px; color: #fff; }

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-thumb { aspect-ratio: 1/1; position: relative; display: grid; place-items: center; overflow: hidden; }
.cat-thumb svg { width: 54%; height: 54%; transition: transform .4s var(--ease); }
.cat-card:hover .cat-thumb svg { transform: scale(1.07); }
.cat-body { padding: 16px 18px 20px; }
.cat-body h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 3px; }
.cat-body span { color: var(--blue); font-family: var(--f-head); font-weight: 600; font-size: .82rem; display: inline-flex; align-items: center; gap: 5px; }
/* tint variants */
.t-a{background:linear-gradient(150deg,#eef4ff,#dde9ff)} .t-b{background:linear-gradient(150deg,#fef0f1,#ffe2e6)}
.t-c{background:linear-gradient(150deg,#eafaf2,#d6f3e3)} .t-d{background:linear-gradient(150deg,#fff5e6,#ffeccc)}
.t-e{background:linear-gradient(150deg,#f1ecff,#e3d9ff)} .t-f{background:linear-gradient(150deg,#e9f7ff,#cfeeff)}
.t-g{background:linear-gradient(150deg,#fdeef8,#fad9f0)} .t-h{background:linear-gradient(150deg,#eef4ff,#d8e6ff)}
.t-i{background:linear-gradient(150deg,#f0f3f7,#e1e8f1)} .t-j{background:linear-gradient(150deg,#fff0ec,#ffe0d6)}
.cat-icon-color{color:var(--navy)}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; position: relative; }
.step { position: relative; text-align: left; }
.step .n {
  font-family: var(--f-display); font-weight: 800; font-size: 1.05rem;
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad); color: #fff; box-shadow: var(--shadow-blue); margin-bottom: 20px;
}
.step h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: 64px; right: -13px; height: 2px;
  background: linear-gradient(90deg, var(--sky-soft), transparent); 
}

/* ============================================================
   BENEFITS (navy band)
   ============================================================ */
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.benefit {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 28px 26px; transition: background .3s, transform .3s;
}
.benefit:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.benefit .bi { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(106,169,255,.16); color: var(--sky); margin-bottom: 18px; }
.benefit .bi svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.12rem; font-weight: 600; color: #fff; margin-bottom: 7px; }
.benefit p { color: #aab8d4; font-size: .93rem; }

/* ============================================================
   EXPERIENCE / SHOWCASE
   ============================================================ */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.exp-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.exp-tile { border-radius: var(--r-lg); aspect-ratio: 1/1; display: grid; place-items: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.exp-tile svg { width: 46%; height: 46%; }
.exp-tile.tall { grid-row: span 2; aspect-ratio: auto; }
.exp-copy h2 { font-size: clamp(2rem,3.6vw,2.6rem); font-weight: 700; margin-bottom: 18px; }
.exp-copy p { color: var(--ink-soft); margin-bottom: 22px; }
.exp-checks { display: grid; gap: 14px; }
.exp-checks li { display: flex; gap: 12px; align-items: flex-start; }
.exp-checks .ck { flex:none; width: 26px; height: 26px; border-radius: 8px; background: var(--grad-soft); color: var(--blue); display: grid; place-items: center; }
.exp-checks .ck svg { width: 15px; height: 15px; }
.exp-checks b { font-family: var(--f-head); color: var(--navy); display: block; }
.exp-checks span { color: var(--muted); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tcard .stars { color: #f5b301; letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 22px; }
.tcard .who { display: flex; align-items: center; gap: 13px; }
.tcard .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; }
.tcard .who b { font-family: var(--f-head); font-size: .95rem; }
.tcard .who small { color: var(--muted); display: block; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  border-radius: var(--r-xl); padding: 64px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(106,169,255,.4), transparent 60%),
    var(--grad);
  box-shadow: var(--shadow-blue);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem,3.6vw,2.6rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-ghost { background:#fff; color:var(--navy); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem,3.4vw,2.5rem); font-weight: 700; margin-bottom: 16px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 32px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.cinfo-item .ci { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-soft); color: var(--blue); display: grid; place-items: center; }
.cinfo-item .ci svg { width: 23px; height: 23px; }
.cinfo-item b { font-family: var(--f-head); display: block; color: var(--navy); margin-bottom: 2px; }
.cinfo-item a, .cinfo-item span { color: var(--ink-soft); }
.cinfo-item a:hover { color: var(--blue); }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 40px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: .98rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-alt); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(47,123,246,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--r-sm);
  background: #eafaf2; border: 1px solid #b9ecce; color: #1c7c4a; font-size: .92rem; font-weight: 600;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: #aab8d4; padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: .94rem; max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07);
  display: grid; place-items: center; color: #cdd9ee; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-family: var(--f-head); font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .86rem;
}
.footer-bottom .pays { display: flex; gap: 8px; align-items: center; opacity: .8; }
.footer-bottom .pays span { font-family: var(--f-head); font-weight: 700; font-size: .72rem; color:#cdd9ee;
  border:1px solid rgba(255,255,255,.16); padding:4px 9px; border-radius:6px; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero {
  padding: 70px 0 60px; text-align: center;
  background:
    radial-gradient(800px 360px at 50% -20%, rgba(106,169,255,.20), transparent 60%),
    linear-gradient(180deg,#fbfdff,#f3f7ff);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.1rem,4.4vw,3rem); font-weight: 800; margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 620px; margin: 0 auto; }
.breadcrumb { font-family: var(--f-head); font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 38px 0 14px; }
.prose h3 { font-size: 1.15rem; font-weight: 600; margin: 26px 0 10px; }
.prose p { color: var(--ink-soft); margin-bottom: 15px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: var(--ink-soft); }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--blue); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .callout { background: var(--bg-tint); border-left: 4px solid var(--blue); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 18px 22px; margin: 24px 0; }
.prose .callout p { margin: 0; color: var(--navy-700); }

/* ============================================================
   ANIMATION on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}
.reveal.d4{transition-delay:.32s}.reveal.d5{transition-delay:.4s}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .fc-1,.fc-2,.fc-3{animation:none}
  html{scroll-behavior:auto}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px){
  .section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .about-grid, .exp-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 36px 26px; }
  .step:not(:last-child)::after { display: none; }
  .benefit-grid, .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .35s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 620px){
  .container { padding-inline: 18px; }
  .section { padding: 60px 0; }
  .cat-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .grid-3, .grid-4, .grid-2, .benefit-grid, .exp-tiles { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .contact-form { padding: 28px 22px; }
  .hero-actions .btn { flex: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
