/* =========================================================
   Ledgerly — cloud bookkeeping & accounting for SMBs
   Aesthetic: friendly fintech / SaaS.
   Clean white base, fresh indigo + mint accent, soft
   gradients, glassmorphism, subtle glow.
   Display: Sora. Body: Manrope.
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

/* ---- Tokens ---- */
:root {
  --white:    #ffffff;
  --paper:    #f7f8fc;
  --paper-2:  #eef1fb;
  --ink:      #11132b;   /* deep indigo-navy text */
  --ink-2:    #2a2d4a;
  --muted:    #6a6f8e;
  --line:     #e4e7f4;
  --line-2:   #d7dcf0;

  --indigo:   #4f46e5;   /* primary */
  --indigo-d: #3d34c9;
  --indigo-l: #7d75f0;
  --violet:   #8b5cf6;
  --mint:     #2dd4a7;   /* accent / mint */
  --mint-d:   #14b88c;
  --sky:      #38bdf8;
  --emerald:  #10b981;   /* on-brand success */
  --amber:    #f6b545;

  --glass:    rgba(255,255,255,0.66);
  --glass-br: rgba(255,255,255,0.7);

  --display: "Sora", "Trebuchet MS", sans-serif;
  --body:    "Manrope", system-ui, sans-serif;

  --mw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 30px 70px -34px rgba(31, 24, 120, 0.34);
  --shadow-sm: 0 16px 38px -24px rgba(31, 24, 120, 0.4);
  --glow: 0 0 0 1px rgba(79,70,229,.08), 0 24px 60px -30px rgba(79,70,229,.5);
}

/* ---- Base ---- */
body {
  font-family: var(--body);
  color: var(--ink-2);
  background: var(--white);
  font-size: 17px;
  overflow-x: hidden;
}

.wrap { max-width: var(--mw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.paper { background:
  radial-gradient(900px 500px at 88% -10%, rgba(45,212,167,.08), transparent 60%),
  radial-gradient(900px 600px at 6% 0%, rgba(79,70,229,.07), transparent 55%),
  var(--paper); }

.eyebrow {
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--mint)); }
.eyebrow.center { justify-content: center; }

.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 56ch; }
.display { font-family: var(--display); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--display);
  font-size: 0.92rem; font-weight: 600;
  padding: 0.95em 1.55em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s, border-color .3s;
}
.btn .arr { transition: transform .3s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid {
  background: linear-gradient(120deg, var(--indigo), var(--violet));
  color: #fff; box-shadow: 0 16px 32px -16px rgba(79,70,229,.7);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 22px 42px -16px rgba(79,70,229,.8); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn-mint { background: var(--mint); color: #06342a; }
.btn-mint:hover { background: var(--mint-d); transform: translateY(-2px); }
.btn-lg { padding: 1.1em 2em; font-size: 1rem; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.9rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-logo { width: 36px; height: 36px; border-radius: 11px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  display: grid; place-items: center; box-shadow: 0 10px 22px -10px rgba(79,70,229,.7); }
.brand-logo svg { width: 20px; height: 20px; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -0.03em; }
.brand-name b { color: var(--indigo); }
.brand-sub { display: block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 0.3rem; margin-left: auto; }
.nav-links a { font-family: var(--display); font-weight: 500; font-size: 0.95rem; color: var(--ink-2);
  padding: 0.5em 0.9em; border-radius: 10px; transition: background .25s, color .25s; }
.nav-links a:hover { background: var(--paper-2); color: var(--indigo); }
.nav-links a.active { color: var(--indigo); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--ink); white-space: nowrap; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 10px; }
.nav-toggle span { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden;
  background:
    radial-gradient(800px 460px at 84% 8%, rgba(45,212,167,.16), transparent 60%),
    radial-gradient(760px 540px at 8% -6%, rgba(79,70,229,.16), transparent 58%),
    linear-gradient(180deg, #fbfcff, #f4f6ff);
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 9vw, 110px);
}
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 80%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-family: var(--display); font-size: clamp(2.5rem, 5.6vw, 4.1rem); color: var(--ink); margin: 0.5rem 0 0.9rem; }
.hero h1 em { font-style: normal; background: linear-gradient(120deg, var(--indigo), var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-tag { font-size: clamp(1.04rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }
.hero-meta { display: flex; gap: 1.4rem; margin-top: 1.9rem; flex-wrap: wrap; }
.hero-meta div { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--ink-2); font-weight: 600; }
.hero-meta svg { width: 18px; height: 18px; color: var(--emerald); flex: 0 0 auto; }

/* Dashboard card */
.dash { position: relative; }
.dash-card {
  background: var(--glass); border: 1px solid var(--glass-br); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); backdrop-filter: blur(8px); padding: 18px;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-title { font-family: var(--display); font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.dash-dots { display: flex; gap: 5px; }
.dash-dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-tile { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.dash-tile.span { grid-column: 1 / -1; }
.dash-k { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.dash-v { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--ink); margin-top: 2px; letter-spacing: -0.03em; }
.dash-v small { font-size: 0.7rem; color: var(--emerald); font-weight: 700; margin-left: 6px; letter-spacing: 0; }
.float-badge { position: absolute; right: -8px; bottom: -16px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.float-badge .fb-ic { width: 34px; height: 34px; border-radius: 11px; background: linear-gradient(135deg, var(--mint), var(--sky)); display: grid; place-items: center; }
.float-badge .fb-ic svg { width: 18px; height: 18px; color: #fff; }
.float-badge .fb-n { font-family: var(--display); font-weight: 800; color: var(--ink); font-size: 1rem; line-height: 1; }
.float-badge .fb-l { font-size: 0.7rem; color: var(--muted); font-weight: 600; }

/* live pulse number */
.pulse { display: inline-flex; align-items: center; gap: 7px; }
.pulse::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.55); } 70% { box-shadow: 0 0 0 9px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }

/* ---- Trust row ---- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-inner { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; justify-content: center; padding: 1.5rem 0; }
.trust-lbl { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.logo-chip { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--display); font-weight: 700; color: var(--ink-2); opacity: 0.85; font-size: 0.98rem; }
.logo-chip svg { width: 22px; height: 22px; color: var(--indigo); }

/* ---- Stat strip ---- */
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink); letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--indigo), var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: var(--muted); font-weight: 600; font-size: 0.92rem; margin-top: 0.2rem; }

/* ---- Section heads ---- */
.sec-head { max-width: 760px; margin-bottom: 2.6rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-family: var(--display); font-size: clamp(1.9rem, 3.8vw, 2.8rem); color: var(--ink); margin: 0.7rem 0 0.7rem; }
.sec-head p { color: var(--muted); font-size: 1.05rem; }

/* ---- Services / feature cards ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; transition: transform .35s, box-shadow .35s, border-color .35s; position: relative; overflow: hidden; }
.feature::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--indigo), var(--mint)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature:hover::after { transform: scaleX(1); }
.feature-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(45,212,167,.14)); }
.feature-ic svg { width: 26px; height: 26px; color: var(--indigo); }
.feature h3 { font-family: var(--display); font-size: 1.22rem; color: var(--ink); margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.97rem; }
.feature ul.tick { margin-top: 0.9rem; display: grid; gap: 0.4rem; }
.feature ul.tick li { position: relative; padding-left: 1.5rem; font-size: 0.92rem; color: var(--ink-2); font-weight: 500; }
.feature ul.tick li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 800; }

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; display: flex; flex-direction: column; position: relative; transition: transform .35s, box-shadow .35s; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan.featured { border-color: transparent; box-shadow: var(--glow);
  background: linear-gradient(180deg, #fff, #fafbff); }
.plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(120deg, var(--indigo), var(--violet)); color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4em 1em; border-radius: 999px; }
.plan-name { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.plan-desc { color: var(--muted); font-size: 0.9rem; margin-top: 0.2rem; min-height: 2.6em; }
.plan-price { font-family: var(--display); font-weight: 800; font-size: 2.6rem; color: var(--ink); margin: 1rem 0 0.2rem; letter-spacing: -0.03em; }
.plan-price span { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.plan ul { display: grid; gap: 0.65rem; margin: 1.2rem 0 1.6rem; }
.plan ul li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; color: var(--ink-2); }
.plan ul li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--mint) 0 40%, transparent 42%); box-shadow: inset 0 0 0 1.5px var(--mint); }
.plan .btn { margin-top: auto; justify-content: center; width: 100%; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; position: relative; }
.step-n { font-family: var(--display); font-weight: 800; font-size: 0.95rem; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--indigo), var(--violet)); margin-bottom: 1rem; }
.step h3 { font-family: var(--display); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; }
.step:not(:last-child)::after { content: "→"; position: absolute; right: -0.85rem; top: 2.3rem; color: var(--line-2); font-weight: 700; z-index: 2; }

/* ---- Integrations ---- */
.integ { background: linear-gradient(135deg, #14143a, #1f1b54); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden; }
.integ::before { content: ""; position: absolute; inset: 0; opacity: .6;
  background: radial-gradient(500px 320px at 90% 10%, rgba(45,212,167,.25), transparent 60%), radial-gradient(440px 300px at 5% 100%, rgba(139,92,246,.35), transparent 60%); }
.integ-grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.integ h2 { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 0.8rem; }
.integ p { color: rgba(255,255,255,.78); }
.integ .btn { margin-top: 1.5rem; }
.app-cloud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.app-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 0.9rem 0.7rem; display: flex; flex-direction: column; align-items: center; gap: 0.45rem; text-align: center; }
.app-pill svg { width: 24px; height: 24px; color: var(--mint); }
.app-pill span { font-family: var(--display); font-weight: 600; font-size: 0.82rem; }

/* ---- Testimonial ---- */
.quote-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; margin-bottom: 0.8rem; }
.quote blockquote { font-size: 1.02rem; color: var(--ink-2); line-height: 1.6; }
.quote .by { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.2rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; font-family: var(--display); font-weight: 800; color: #fff; font-size: 0.95rem; }
.by .name { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.by .role { font-size: 0.82rem; color: var(--muted); }

/* ---- Blog ---- */
.featured-post { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 2.4rem; }
.featured-post .fp-art { background: linear-gradient(135deg, var(--indigo), var(--violet)); min-height: 280px; position: relative; overflow: hidden; display: grid; place-items: center; }
.featured-post .fp-art svg { width: 100%; height: 100%; }
.featured-post .fp-body { padding: clamp(1.6rem, 4vw, 2.6rem); align-self: center; }
.tag { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo); background: var(--paper-2); padding: 0.35em 0.85em; border-radius: 999px; }
.featured-post h3 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--ink); margin: 0.9rem 0 0.7rem; }
.featured-post p { color: var(--muted); }
.post-meta { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.3rem; font-size: 0.86rem; color: var(--muted); font-weight: 600; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s, box-shadow .35s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-art { height: 150px; position: relative; overflow: hidden; }
.post-art svg { width: 100%; height: 100%; }
.post-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post h3 { font-family: var(--display); font-size: 1.16rem; color: var(--ink); margin: 0.7rem 0 0.5rem; line-height: 1.25; }
.post p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.read { font-family: var(--display); font-weight: 600; font-size: 0.88rem; color: var(--indigo); margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem; }

/* ---- CTA ---- */
.cta-band { background: linear-gradient(120deg, var(--indigo), var(--violet)); border-radius: var(--radius-lg); padding: clamp(2.4rem, 6vw, 4rem); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(440px 300px at 12% 0%, rgba(45,212,167,.45), transparent 60%), radial-gradient(460px 320px at 88% 100%, rgba(56,189,248,.4), transparent 60%); }
.cta-band h2 { position: relative; font-family: var(--display); font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 0.7rem; }
.cta-band p { position: relative; color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 1.7rem; }
.cta-band .btns { position: relative; display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---- Filter ---- */
.filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; align-items: center; }
.filter-btn { font-family: var(--display); font-weight: 600; font-size: 0.88rem; color: var(--ink-2); background: #fff; border: 1px solid var(--line); padding: 0.55em 1.1em; border-radius: 999px; transition: all .25s; }
.filter-btn:hover { border-color: var(--indigo); color: var(--indigo); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.count-note { margin-left: auto; font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.count-note b { color: var(--indigo); }
[data-listing].hide { display: none; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 0.86rem; color: var(--ink); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.85em 1em; border: 1px solid var(--line-2); border-radius: 12px; background: var(--paper); transition: border-color .25s, box-shadow .25s; font-size: 0.96rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(79,70,229,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { margin-top: 0.8rem; font-weight: 600; font-size: 0.92rem; }

.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.2rem); box-shadow: var(--shadow-sm); }
.info-block { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-block:last-child { border-bottom: none; }
.info-block h4 { font-family: var(--display); font-size: 1rem; color: var(--ink); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.info-block h4 svg { width: 18px; height: 18px; color: var(--indigo); }
.info-block p, .info-block a { color: var(--muted); font-size: 0.95rem; }
.info-block a:hover { color: var(--indigo); }
.hours-list { display: grid; gap: 0.35rem; }
.hours-list div { display: flex; justify-content: space-between; font-size: 0.92rem; }
.hours-list span:first-child { color: var(--ink-2); font-weight: 600; }
.hours-list span:last-child { color: var(--muted); }
.map-wrap { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap svg { width: 100%; height: auto; display: block; }

/* ---- Page hero (sub pages) ---- */
.page-hero { background:
  radial-gradient(700px 380px at 88% 0%, rgba(45,212,167,.13), transparent 60%),
  radial-gradient(680px 420px at 6% 0%, rgba(79,70,229,.13), transparent 58%),
  linear-gradient(180deg, #fbfcff, #f5f7ff);
  padding: clamp(48px, 7vw, 84px) 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--ink); margin: 0.6rem 0 0.6rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 56ch; }

/* ---- Footer ---- */
.site-footer { background: #0d0f24; color: #c5c9e4; padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; }
.foot-brand .brand-name { color: #fff; }
.foot-brand p { color: #8b90b8; font-size: 0.95rem; margin-top: 0.9rem; max-width: 34ch; }
.foot-col h5 { font-family: var(--display); font-weight: 700; color: #fff; font-size: 0.95rem; margin-bottom: 0.9rem; letter-spacing: 0.02em; }
.foot-col a, .foot-col p { display: block; color: #8b90b8; font-size: 0.92rem; padding: 0.25rem 0; }
.foot-col a:hover { color: var(--mint); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.foot-bottom p { font-size: 0.85rem; color: #6f74a0; }
.disclaimer { font-size: 0.78rem; color: #5b6090; max-width: 70ch; margin-top: 0.8rem; line-height: 1.5; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dash { max-width: 480px; }
  .integ-grid, .featured-post, .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .price-grid, .blog-grid, .quote-wrap { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { flex-wrap: wrap; }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: stretch; width: 100%; order: 3; gap: 0.2rem; padding-top: 0.8rem; }
  .nav.open .nav-links a { padding: 0.8em 1em; border-radius: 12px; }
  .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; width: 100%; order: 4; padding-top: 0.6rem; }
  .nav.open .nav-cta .btn { justify-content: center; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 580px) {
  body { font-size: 16px; }
  .stats-inner, .grid-3, .price-grid, .blog-grid, .quote-grid, .quote-wrap, .steps, .row-2, .app-cloud { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .float-badge { right: 8px; }
}
