/* ==========================================================================
   IJ Creative Solutions - Design System
   Palette sampled from the logo mark: green #2EAE7F, sky #53C1EE, blue #397ABC.
   Brand hues drive gradients and graphics. Anything carrying text uses the
   -ink variants, which clear WCAG AA.
   ========================================================================== */

:root {
  /* Brand, as drawn in the logo */
  --green:      #2EAE7F;
  --sky:        #53C1EE;
  --blue:       #397ABC;

  /* Accessible text/button variants of the same hues */
  --green-ink:  #217D5B;   /* 5.06:1 on white */
  --green-deep: #1B654A;
  --blue-ink:   #2F669D;   /* 5.99:1 on white */
  --navy:       #1A3856;   /* 12.04:1 on white */
  --navy-deep:  #12283D;

  --grad: linear-gradient(115deg, var(--green) 0%, var(--sky) 55%, var(--blue) 100%);
  --grad-soft: linear-gradient(115deg, rgba(46,174,127,.10), rgba(83,193,238,.10));

  /* Neutrals */
  --paper:      #FFFFFF;
  --paper-2:    #F4F8F9;
  --paper-3:    #E9F0F3;
  --line:       #DBE4E9;
  --line-soft:  #EAF0F3;
  --ink:        #0E1B24;
  --ink-2:      #3A4A56;
  --ink-3:      #5E6E7A;

  /* Type */
  --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape lock: cards 14px, buttons 10px, pills full */
  --r-card: 14px;
  --r-btn: 10px;

  --shadow-sm: 0 1px 2px rgba(14,27,36,.06), 0 1px 3px rgba(14,27,36,.05);
  --shadow-md: 0 6px 20px rgba(26,56,86,.10);
  --shadow-lg: 0 20px 54px rgba(26,56,86,.17);

  --wrap: 1220px;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-ink); text-underline-offset: 3px; }
a:hover { color: var(--green-ink); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.14; font-weight: 700; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

/* ---------- Type ---------- */
.display { font-family: var(--display); font-weight: 700; letter-spacing: -.033em; line-height: 1.04; }
h1.display { font-size: clamp(2.15rem, 4.5vw, 3.6rem); }
h2.display { font-size: clamp(1.85rem, 3.4vw, 2.75rem); line-height: 1.1; }
h3 { font-size: 1.18rem; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.19rem); color: var(--ink-2); line-height: 1.6; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--paper { background: var(--paper-2); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.82); }

.sec-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head p { color: var(--ink-2); margin-bottom: 0; }

.eyebrow {
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--green-ink); margin-bottom: .85rem; display: block;
}
.section--navy .eyebrow { color: #6FE0B2; }

/* Signature gradient rule */
.grad-rule { height: 5px; width: 72px; background: var(--grad); border-radius: 4px; margin-bottom: 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: var(--r-btn); border: 1.5px solid transparent;
  font-family: var(--sans); font-weight: 700; font-size: .96rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--green-ink); color: #fff; border-color: var(--green-ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; box-shadow: var(--shadow-md); }

.btn--blue { background: var(--blue-ink); color: #fff; border-color: var(--blue-ink); }
.btn--blue:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper-2); border-color: var(--blue-ink); color: var(--blue-ink); }

.btn--onnavy { background: #fff; color: var(--navy-deep); border-color: #fff; }
.btn--onnavy:hover { background: #DFF5EC; color: var(--navy-deep); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.13); color: #fff; border-color: #fff; }

.btn--sm { padding: .55rem 1.05rem; font-size: .87rem; }
@media (max-width: 400px) { .btn { white-space: normal; text-align: center; } }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: fixed; left: 0; top: 0; z-index: 999; transform: translateY(-120%);
  background: var(--navy); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-btn) 0; font-weight: 700; text-decoration: none;
  transition: transform .15s ease;
}
.skip:focus { transform: translateY(0); color: #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.88); font-size: .82rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #6FE0B2; }
.topbar__meta { display: flex; align-items: center; gap: 1.3rem; }
.topbar__tag { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: #6FE0B2; }
.topbar__tag svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .topbar__meta span { display: none; } }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__in { display: flex; align-items: center; gap: 1.25rem; min-height: var(--nav-h); }
/* The logo lockup already carries the brand name, so no wordmark is set beside it. */
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { width: 210px; height: auto; }
@media (max-width: 420px) { .brand img { width: 168px; } }

.nav__links { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
/* :not(.btn) so the CTA button in the nav keeps its own white-on-green
   treatment instead of inheriting the muted nav-link colour. */
.nav__links a:not(.btn) {
  padding: .5rem .62rem; border-radius: var(--r-btn); text-decoration: none;
  font-weight: 600; font-size: .875rem; color: var(--ink-2); white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}
.nav__links a:not(.btn):hover { color: var(--green-ink); background: var(--paper-2); }
.nav__links a:not(.btn)[aria-current="page"] { color: var(--green-ink); background: #E3F5EE; }
.nav__cta { display: flex; align-items: center; gap: .6rem; margin-left: .5rem; }
.nav__cta .nav__phone { display: none; }   /* shown in the mobile menu only */
.nav__phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 800; color: var(--navy); text-decoration: none; font-size: .93rem; }
.nav__phone svg { width: 17px; height: 17px; color: var(--green-ink); }

.burger {
  display: none; margin-left: auto; background: none; border: 1.5px solid var(--line);
  border-radius: var(--r-btn); padding: .5rem .6rem; cursor: pointer; color: var(--navy);
}
.burger svg { width: 22px; height: 22px; }

@media (max-width: 1240px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: .1rem;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .75rem 20px 1.1rem; box-shadow: var(--shadow-lg); margin: 0;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__links.is-open a { padding: .72rem .6rem; font-size: 1rem; }
  .nav__links.is-open .nav__cta { display: flex; flex-direction: column; align-items: stretch; margin: .6rem 0 0; }
  .nav__links.is-open .nav__cta .nav__phone { display: inline-flex; }
  .nav__links.is-open .nav__phone { justify-content: center; padding: .6rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 460px at 92% -12%, rgba(83,193,238,.20), transparent 62%),
    radial-gradient(620px 420px at 2% 8%, rgba(46,174,127,.14), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line-soft);
}
/* The quote card is much taller than the copy column. Centering would float the
   headline down the viewport on a laptop, so the copy is pinned to the top and
   only re-centers once the columns stack on mobile. */
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.75rem);
  align-items: start; padding-block: clamp(2.25rem, 3.5vw, 3.25rem);
}
.hero__grid > div:first-child { padding-top: clamp(.5rem, 1.5vw, 1.5rem); }
.hero h1 { color: var(--navy-deep); margin-bottom: 1rem; }
.hero__lede { font-size: clamp(1.05rem, 1.5vw, 1.16rem); color: var(--ink-2); max-width: 52ch; margin-bottom: 1.6rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.75rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.hero__proof strong { display: block; font-family: var(--display); font-size: 1.45rem; color: var(--navy); line-height: 1.1; }
.hero__proof span { font-size: .82rem; color: var(--ink-3); font-weight: 600; }
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__grid > div:first-child { padding-top: 0; }
}

.quotecard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 2.4vw, 1.85rem);
  position: relative; overflow: hidden;
}
.quotecard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad); }
.quotecard__head { margin-bottom: 1.05rem; }
.quotecard__head h2 { font-size: 1.28rem; margin-bottom: .3rem; }
.quotecard__head p { font-size: .88rem; color: var(--ink-3); margin: 0; }
.quotecard__foot { margin-top: .85rem; font-size: .78rem; color: var(--ink-3); text-align: center; }

/* ---------- Forms ---------- */
.field { margin-bottom: .85rem; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.field .req { color: #C2410C; }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .82rem; border: 1.5px solid var(--line);
  border-radius: var(--r-btn); background: #fff; color: var(--ink); font-size: .95rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #68767F; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,174,127,.18);
}
.field textarea { resize: vertical; min-height: 88px; }
.field .help { font-size: .76rem; color: var(--ink-3); margin-top: .28rem; display: block; }
.field .err { font-size: .78rem; color: #B91C1C; margin-top: .28rem; font-weight: 600; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #DC2626; }
.field.has-error .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.formnote { padding: .8rem 1rem; border-radius: var(--r-btn); font-size: .9rem; font-weight: 600; margin-bottom: 1rem; display: none; }
.formnote--ok { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; display: block; }
.formnote--bad { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; display: block; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust { background: var(--navy); color: #fff; }
.trust__in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.2rem; padding-block: 1.05rem; }
.trust__item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.95); }
.trust__item svg { width: 19px; height: 19px; color: #6FE0B2; flex: none; }

/* ==========================================================================
   Category blocks
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.15rem; }
.bento > * { grid-column: span 2; }
.bento > .cell--wide { grid-column: span 3; }
@media (max-width: 940px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento > *, .bento > .cell--wide { grid-column: span 1; } }
@media (max-width: 580px) { .bento { grid-template-columns: 1fr; } }

.cat {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  text-decoration: none; color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.cat::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad); }
.cat:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }
.cat__body { padding: 1.5rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.cat__ico { width: 30px; height: 30px; color: var(--green-ink); margin-bottom: .85rem; }
.cat h3 { font-family: var(--display); font-size: 1.2rem; margin-bottom: .35rem; color: var(--navy); }
.cat p { font-size: .89rem; color: var(--ink-2); margin-bottom: .9rem; }
.cat__items { font-size: .8rem; color: var(--ink-3); margin: 0 0 1.1rem; padding: 0; list-style: none; }
.cat__items li { display: inline; }
.cat__items li::after { content: ", "; }
.cat__items li:last-child::after { content: ""; }
.cat__n { font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.cat__link { margin-top: auto; font-weight: 700; font-size: .88rem; color: var(--green-ink); display: inline-flex; align-items: center; gap: .35rem; }
.cat__link svg { width: 15px; height: 15px; transition: transform .18s ease; }
.cat:hover .cat__link svg { transform: translateX(3px); }

.cat--feature { background: var(--navy-deep); border-color: var(--navy-deep); }
.cat--feature h3 { color: #fff; }
.cat--feature p { color: rgba(255,255,255,.8); }
.cat--feature .cat__items, .cat--feature .cat__n { color: rgba(255,255,255,.58); }
.cat--feature .cat__ico { color: #6FE0B2; }
.cat--feature .cat__link { color: #6FE0B2; }
.cat--tint { background: linear-gradient(168deg, #EAF7F2 0%, #fff 60%); }
.cat--tint2 { background: linear-gradient(168deg, #E9F5FC 0%, #fff 60%); }

/* ==========================================================================
   Product catalog
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.6rem; }
.chip {
  padding: .45rem .95rem; border: 1.5px solid var(--line); border-radius: 999px;
  background: #fff; font-size: .85rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: all .15s ease; white-space: nowrap;
}
.chip:hover { border-color: var(--green-ink); color: var(--green-ink); }
.chip[aria-pressed="true"] { background: var(--green-ink); border-color: var(--green-ink); color: #fff; }

.groupname {
  font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin: 2.25rem 0 .9rem; padding-bottom: .5rem; border-bottom: 2px solid var(--paper-3);
}
.groupname:first-of-type { margin-top: 0; }

.prodgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(258px, 100%), 1fr)); gap: 1rem; }
.prod {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.15rem 1.2rem 1.2rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.prod:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.prod__cat { font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green-ink); margin-bottom: .45rem; }
.prod h3 { font-size: 1rem; margin-bottom: .35rem; color: var(--navy); letter-spacing: -.01em; }
.prod p { font-size: .865rem; color: var(--ink-2); margin-bottom: .95rem; flex: 1; line-height: 1.55; }
.prod__actions { display: flex; gap: .45rem; align-items: center; }
.prod__actions .btn { flex: 1; }
.iconbtn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex: none; border: 1.5px solid var(--line);
  border-radius: var(--r-btn); color: var(--navy); background: #fff; text-decoration: none;
  transition: all .15s ease;
}
.iconbtn:hover { border-color: var(--green-ink); background: #EAF7F2; color: var(--green-ink); }
.iconbtn svg { width: 17px; height: 17px; }
.count { font-size: .88rem; color: var(--ink-3); margin-bottom: 1.1rem; font-weight: 600; }
.noresult { padding: 3rem 1rem; text-align: center; color: var(--ink-3); display: none; }

/* ==========================================================================
   Process
   ========================================================================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 3px solid transparent;
  border-image: var(--grad) 1; }
.process__i { padding: 1.5rem 1.4rem 1.6rem; border-right: 1px solid var(--line); }
.process__i:last-child { border-right: 0; }
.process__i h3 { font-family: var(--display); font-size: 1.15rem; color: var(--navy); margin-bottom: .4rem; }
.process__i p { font-size: .88rem; color: var(--ink-2); margin: 0; }
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process__i { border-bottom: 1px solid var(--line); }
  .process__i:nth-child(2n) { border-right: 0; }
}
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } .process__i { border-right: 0; } }

/* ==========================================================================
   Web design page
   ========================================================================== */
.web__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .web__grid { grid-template-columns: 1fr; } }
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; padding: .55rem 0; font-size: .96rem; color: var(--ink-2); }
.checklist svg { width: 18px; height: 18px; color: var(--green-ink); flex: none; margin-top: .25rem; }
.section--navy .checklist li { color: rgba(255,255,255,.88); border-bottom: 1px solid rgba(255,255,255,.12); }
.section--navy .checklist svg { color: #6FE0B2; }

.pricecard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 1.6rem 1.5rem; position: relative; overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
}
.pricecard--hi { border-color: var(--green); box-shadow: var(--shadow-md); }
.pricecard--hi::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad); }
.pricecard h3 { font-family: var(--display); font-size: 1.25rem; color: var(--navy); margin-bottom: .25rem; }
.pricecard__from { font-size: .78rem; color: var(--ink-3); font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.pricecard__amt { font-family: var(--display); font-size: 2.1rem; color: var(--green-ink); line-height: 1.1; margin: .3rem 0 .9rem; }
.pricecard p { font-size: .89rem; color: var(--ink-2); }
.pricecard .btn { margin-top: auto; }

/* ==========================================================================
   Areas / FAQ / CTA
   ========================================================================== */
.areas { display: flex; flex-wrap: wrap; gap: .5rem; }
.area { padding: .48rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .88rem; font-weight: 600; color: var(--ink-2); }

.faq { max-width: 840px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 1.05rem 2.5rem 1.05rem 0; font-weight: 700; font-size: 1.02rem; color: var(--navy); list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.45rem; width: 10px; height: 10px;
  border-right: 2.5px solid var(--green-ink); border-bottom: 2.5px solid var(--green-ink);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.65rem; }
.faq details p { padding-bottom: 1.1rem; margin: 0; color: var(--ink-2); font-size: .96rem; max-width: 70ch; }

.ctaband { background: linear-gradient(118deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue-ink) 130%); color: #fff; text-align: center; }
.ctaband h2 { color: #fff; margin-bottom: .7rem; }
.ctaband p { color: rgba(255,255,255,.86); max-width: 58ch; margin-inline: auto; margin-bottom: 1.75rem; }
.ctaband .btn-row { justify-content: center; }

.crumbs { font-size: .82rem; color: var(--ink-3); padding-top: 1.1rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--green-ink); text-decoration: underline; }
.crumbs span { margin-inline: .4rem; opacity: .5; }

.pagehead {
  background:
    radial-gradient(700px 340px at 88% 0%, rgba(83,193,238,.17), transparent 62%),
    radial-gradient(520px 300px at 3% 10%, rgba(46,174,127,.12), transparent 60%),
    var(--paper-2);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.pagehead h1 { margin-top: .9rem; color: var(--navy-deep); }
.pagehead .lede { max-width: 64ch; margin-bottom: 1.5rem; }

.prose { max-width: 68ch; }
.prose h2 { font-family: var(--display); font-size: 1.5rem; margin-top: 2.25rem; color: var(--navy); }
.prose h3 { font-size: 1.08rem; margin-top: 1.6rem; color: var(--navy); }
.prose p, .prose li { color: var(--ink-2); font-size: 1rem; }
.prose strong { color: var(--ink); }

.speclist { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 2.5rem; }
.speclist li { break-inside: avoid; display: flex; gap: .6rem; align-items: flex-start; padding: .5rem 0; font-size: .93rem; color: var(--ink-2); }
.speclist svg { width: 17px; height: 17px; color: var(--green-ink); flex: none; margin-top: .25rem; }
@media (max-width: 680px) { .speclist { columns: 1; } }

.kwlinks { display: flex; flex-wrap: wrap; gap: .4rem; }
.kwlinks a { font-size: .82rem; padding: .38rem .8rem; background: var(--paper-3); border-radius: 999px; text-decoration: none; color: var(--ink-2); font-weight: 600; transition: background-color .15s ease, color .15s ease; }
.kwlinks a:hover { background: var(--green-ink); color: #fff; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.infolist { list-style: none; padding: 0; margin: 0; }
.infolist li { display: flex; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.infolist svg { width: 20px; height: 20px; color: var(--green-ink); flex: none; margin-top: .3rem; }
.infolist strong { display: block; font-size: .77rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .2rem; }
.infolist a { font-weight: 700; text-decoration: none; }
.mapwrap { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); }
.mapwrap iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.72); font-size: .9rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.75rem); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer a:hover { color: #6FE0B2; }
.footer__brand img { width: 200px; margin-bottom: 1.1rem; }
.footer__brand p { color: rgba(255,255,255,.62); font-size: .88rem; max-width: 36ch; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- Sticky mobile bar ---------- */
.mobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: .5rem;
  padding: .6rem .75rem; padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobar .btn { flex: 1; }
@media (max-width: 760px) { .mobar { display: flex; } body { padding-bottom: 68px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.mt3 { margin-top: 1.5rem; } .mt4 { margin-top: 2rem; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ==========================================================================
   Blog
   ========================================================================== */
.postgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(310px, 100%), 1fr)); gap: 1.2rem; }
.postcard {
  display: flex; flex-direction: column; background: #fff; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-card); text-decoration: none; color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.postcard::before { content: ""; height: 5px; background: var(--grad); }
.postcard:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }
.postcard__body { padding: 1.3rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.postcard h3 { font-family: var(--display); font-size: 1.1rem; color: var(--navy); margin-bottom: .45rem; line-height: 1.22; }
.postcard p { font-size: .89rem; color: var(--ink-2); margin-bottom: 1rem; flex: 1; }
.postmeta { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green-ink); margin-bottom: .6rem; }
.postmeta span { color: var(--ink-3); font-weight: 600; }
.postcard__link { margin-top: auto; font-weight: 700; font-size: .87rem; color: var(--green-ink); display: inline-flex; align-items: center; gap: .35rem; }
.postcard__link svg { width: 15px; height: 15px; transition: transform .18s ease; }
.postcard:hover .postcard__link svg { transform: translateX(3px); }

/* Article */
.article { max-width: 720px; margin-inline: auto; }
.article__head { max-width: 760px; margin-inline: auto; }
.article h2 {
  font-family: var(--display); font-size: 1.5rem; color: var(--navy);
  margin: 2.4rem 0 .7rem; letter-spacing: -.02em;
}
.article h3 { font-family: var(--display); font-size: 1.13rem; color: var(--navy); margin: 1.8rem 0 .5rem; }
.article p { font-size: 1.06rem; line-height: 1.72; color: var(--ink-2); margin-bottom: 1.15rem; }
.article ul, .article ol { margin: 0 0 1.4rem; padding-left: 1.3rem; }
.article li { font-size: 1.03rem; line-height: 1.66; color: var(--ink-2); margin-bottom: .55rem; }
/* :not(.btn) so buttons inside an article keep their own colour and never
   inherit the underlined body-link treatment. */
.article a:not(.btn) { color: var(--blue-ink); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; }
.article a:not(.btn):hover { color: var(--green-ink); }
.article .note {
  background: linear-gradient(168deg, #EAF7F2 0%, #F4FBF8 100%);
  border-left: 4px solid var(--green); border-radius: 0 var(--r-btn) var(--r-btn) 0;
  padding: 1.1rem 1.3rem; margin: 1.8rem 0; font-size: 1rem; color: var(--ink-2);
}
.article .note p:last-child { margin-bottom: 0; }

.article__foot {
  margin-top: 3rem; padding-top: 1.75rem; border-top: 2px solid var(--paper-3);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.article__foot p { margin: 0; font-size: .95rem; color: var(--ink-2); }

.related { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 1rem; }

/* ==========================================================================
   Hero client logo bar
   ========================================================================== */
.clients { margin-top: 2.4rem; padding-top: 1.9rem; border-top: 1px solid var(--line); }

.clients__label {
  display: flex; align-items: center; gap: .7rem;
  margin: 0 0 1rem; font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
  white-space: nowrap;
}
.clients__label .num {
  font-family: var(--display); font-size: 1.02rem; font-weight: 700;
  letter-spacing: -.02em; text-transform: none;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
/* hairline that runs out to the edge of the column */
.clients__label::after {
  content: ""; flex: 1; height: 1px; min-width: 1rem;
  background: linear-gradient(90deg, var(--line), transparent);
}

.clients__row {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: 1.5rem; margin: 0; padding: 0; list-style: none;
}
.clients__row li { margin: 0; flex: 0 0 auto; line-height: 0; }
.clients__row img {
  height: 27px; width: auto; max-width: 96px; object-fit: contain;
  opacity: .95; transition: opacity .2s ease, transform .2s ease;
}
.clients__row img:hover { opacity: 1; transform: translateY(-1px); }

.clients__note {
  margin: .85rem 0 0; font-size: .58rem; line-height: 1.4;
  letter-spacing: .01em; color: var(--ink-3); opacity: .7; max-width: 56ch;
}

@media (max-width: 1100px) {
  .clients__row { flex-wrap: wrap; gap: .9rem 1.25rem; }
}
@media (max-width: 960px) {
  .clients__row img { height: 24px; max-width: 86px; }
}
@media (max-width: 420px) {
  .clients { margin-top: 2rem; padding-top: 1.5rem; }
  .clients__label { font-size: .64rem; gap: .5rem; }
  .clients__label .num { font-size: .92rem; }
  .clients__row { gap: .8rem 1rem; }
  .clients__row img { height: 21px; max-width: 74px; }
  .clients__note { font-size: .55rem; }
}
@media (prefers-reduced-motion: reduce) { .clients__row img { transition: none; } }

/* ==========================================================================
   File upload field
   ========================================================================== */
.field .opt {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-3); margin-left: .35rem;
}
.field input[type="file"] {
  padding: .55rem .6rem; font-size: .86rem; cursor: pointer;
  background: var(--paper-2); border-style: dashed; border-width: 1.5px;
}
.field input[type="file"]:hover { border-color: var(--green); background: #EEF9F4; }
.field input[type="file"]::file-selector-button {
  font: inherit; font-weight: 700; font-size: .82rem; cursor: pointer;
  margin-right: .7rem; padding: .4rem .8rem;
  border: 0; border-radius: 6px; background: var(--navy); color: #fff;
}
.field input[type="file"]::file-selector-button:hover { background: var(--green-ink); }
.field .filenote { margin-top: .2rem; }
.field .filenote a { color: var(--blue-ink); font-weight: 700; }
.field .help.is-over { color: #B45309; font-weight: 700; }
.field .help.is-ok { color: var(--green-ink); font-weight: 700; }

/* ==========================================================================
   Artwork uploader
   ========================================================================== */
.up { margin-top: .2rem; }
.up__drop {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem .9rem; border: 1.5px dashed var(--line); border-radius: var(--r-btn);
  background: var(--paper-2); cursor: pointer; width: 100%;
  font: inherit; font-size: .88rem; color: var(--ink-2); text-align: left;
  transition: border-color .15s ease, background-color .15s ease;
}
.up__drop:hover, .up__drop.is-drag { border-color: var(--green); background: #EEF9F4; }
.up__drop svg { width: 19px; height: 19px; color: var(--green-ink); flex: none; }
.up__drop b { color: var(--navy); font-weight: 700; }
.up input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* progress */
.up__busy { display: none; align-items: center; gap: .6rem; margin-top: .7rem; font-size: .86rem; color: var(--ink-2); }
.up__busy.is-on { display: flex; }
.up__spin {
  width: 17px; height: 17px; flex: none; border-radius: 50%;
  border: 2.5px solid var(--paper-3); border-top-color: var(--green);
  animation: up-spin .7s linear infinite;
}
@keyframes up-spin { to { transform: rotate(360deg); } }
.up__pct { font-weight: 700; color: var(--green-ink); font-variant-numeric: tabular-nums; }
.up__bar { height: 4px; border-radius: 3px; background: var(--paper-3); overflow: hidden; margin-top: .55rem; display: none; }
.up__bar.is-on { display: block; }
.up__bar i { display: block; height: 100%; width: 0; background: var(--grad); transition: width .15s linear; }

.up__done { display: none; align-items: center; gap: .45rem; margin-top: .7rem; font-size: .86rem; font-weight: 700; color: var(--green-ink); }
.up__done.is-on { display: flex; }
.up__done svg { width: 16px; height: 16px; flex: none; }

/* uploaded list */
.up__list { list-style: none; margin: .8rem 0 0; padding: 0; display: none; }
.up__list.is-on { display: block; }
.up__head { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .45rem; }
.up__item {
  display: flex; align-items: center; gap: .55rem; margin: 0 0 .35rem;
  padding: .45rem .6rem; background: #fff; border: 1px solid var(--line);
  border-radius: 8px; font-size: .82rem; color: var(--ink-2);
}
.up__item svg { width: 15px; height: 15px; color: var(--green-ink); flex: none; }
.up__item .nm { font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.up__item .sz { color: var(--ink-3); font-size: .76rem; margin-left: auto; flex: none; }
.up__rm {
  flex: none; border: 0; background: none; cursor: pointer; padding: .15rem .25rem;
  color: var(--ink-3); font-size: 1rem; line-height: 1; border-radius: 4px;
}
.up__rm:hover { color: #B91C1C; background: #FEF2F2; }

.up__more { display: none; margin-top: .55rem; }
.up__more.is-on { display: inline-flex; }

.up__err {
  display: none; margin-top: .6rem; padding: .55rem .7rem; font-size: .8rem; font-weight: 600;
  color: #991B1B; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 8px;
}
.up__err.is-on { display: block; }

@media (prefers-reduced-motion: reduce) {
  .up__spin { animation-duration: 1.6s; }
  .up__bar i { transition: none; }
}
