﻿/* ===== Apexion Technologies — shared design system =====
   Single source of truth for every page (index + service subpages).
   Accent CSS vars are named --amber-* for history but hold BLUE values. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #ffffff;
  --bg-soft:   #eff6ff;   /* faint blue-grey */
  --ink:       #141c26;   /* headings */
  --body:      #4a5663;   /* body text */
  --muted:     #8b95a1;
  --line:      #e8ebef;
  --line-2:    #f0f2f5;

  /* "blue" accent (deep blue) — kept under amber-* names */
  --amber:     #2563eb;
  --amber-600: #1d4ed8;
  --amber-50:  #dbeafe;
  --ink-deep:  #0f172a;

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --sh-1: 0 1px 2px rgba(20,28,38,.04), 0 10px 30px rgba(20,28,38,.06);
  --sh-2: 0 24px 60px rgba(20,28,38,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Manrope', system-ui, sans-serif; background: var(--bg); color: var(--body); font-size: 17px; line-height: 1.65; overflow-x: hidden; }
::selection { background: var(--amber-50); color: var(--amber-600); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.wrap.wide { max-width: 1480px; padding: 0 4%; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--amber-600); margin-bottom: 1rem; }
.eyebrow::before { content:''; width: 18px; height: 2px; border-radius: 2px; background: var(--amber); }

/* ===== BTN ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; cursor: pointer; font-family: inherit; font-size: .98rem; font-weight: 700; padding: .8rem 1.5rem; border-radius: 100px; border: 1.5px solid transparent; transition: transform .16s var(--ease), box-shadow .25s, background .2s, border-color .2s, color .2s; }
.btn svg { width: 18px; height: 18px; }
.btn-amber { background: var(--amber); color: #fff; box-shadow: 0 8px 20px rgba(37,99,235,.3); }
.btn-amber:hover { transform: translateY(-2px); background: var(--amber-600); box-shadow: 0 12px 28px rgba(29,78,216,.4); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-deep); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--amber-600); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===== NAV ===== */
#nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
#nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(20,28,38,.05); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: .85rem 5%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .55rem; }
.logo-mark { width: 36px; height: 36px; display: block; flex-shrink: 0; }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-size: 1.1rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.logo-sub { font-size: .56rem; font-weight: 700; color: var(--muted); letter-spacing: .2em; text-transform: uppercase; margin-top: .1rem; }
.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0 auto; }
.nav-links a { font-size: .94rem; font-weight: 600; color: var(--body); padding: .55rem .9rem; border-radius: 8px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--amber-600); background: var(--amber-50); }
.nav-right { display: flex; align-items: center; gap: .6rem; }
.nav-contact { background: var(--ink); color: #fff !important; padding: .62rem 1.3rem; border-radius: 100px; font-size: .92rem; font-weight: 700; transition: background .2s, transform .16s var(--ease); }
.nav-contact:hover { background: var(--amber); color: #fff !important; transform: translateY(-1px); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; }
.burger svg { width: 26px; height: 26px; stroke: var(--ink); fill: none; stroke-width: 1.8; stroke-linecap: round; }

/* ===== animated border highlight (hover) ===== */
@property --hl-a { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.hl { position: relative; }
.hl::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.6px; pointer-events: none;
  background: conic-gradient(from var(--hl-a), transparent 0deg 230deg, var(--amber) 300deg, var(--amber-600) 330deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s var(--ease);
}
.hl:hover::after { opacity: 1; animation: hl-spin 2.4s linear infinite; }
@keyframes hl-spin { to { --hl-a: 360deg; } }

/* ===== HERO (centered, Bajra-style) ===== */
.hero { padding: 4rem 0 5.5rem; position: relative; text-align: center; }
.hero-card { max-width: 980px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 4rem 2rem 3.5rem; box-shadow: var(--sh-1); transition: box-shadow .35s var(--ease); }
.hero-card:hover { box-shadow: var(--sh-2); }
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: .55rem; font-family: inherit; font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 700; color: var(--ink); background: var(--bg-soft); border: 1px solid var(--line); padding: .55rem 1.5rem; border-radius: 100px; margin-bottom: 2.2rem; }
.hero-pill .rot-word { color: var(--amber-600); display: inline-block; min-width: 1ch; transition: opacity .35s ease, transform .35s ease; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.05; margin-bottom: 1.6rem; }
.hero h1 .l1, .hero h1 .l2 { display: block; transition: opacity .4s ease, transform .4s ease; }
.hero h1 .l2 { color: var(--amber-600); }
.hero-sub { font-size: 1.18rem; color: var(--body); max-width: 40ch; margin: 0 auto 2.4rem; }
.hero-actions { display: flex; gap: .8rem; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ===== STATS STRIP ===== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 2.2rem 1.5rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: 2.1rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.stat b .u { color: var(--amber); }
.stat span { font-size: .9rem; color: var(--muted); font-weight: 600; }

/* ===== TRUSTED ===== */
.trusted { padding: 3rem 0; }
.trusted-label { text-align: center; font-size: .82rem; letter-spacing: .04em; color: var(--muted); font-weight: 600; margin-bottom: 1.6rem; }
.trusted-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.2rem 3rem; }
.trusted-logos img { height: 26px; opacity: .55; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.trusted-logos img:hover { opacity: 1; filter: none; }

/* ===== SECTION ===== */
section.block { padding: 6rem 0; }
.block.soft { background: var(--bg-soft); }
.sec-head { max-width: 60ch; margin: 0 auto 3rem; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-title { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: .9rem; }
.sec-title em { font-style: normal; color: var(--amber-600); }
.sec-sub { font-size: 1.08rem; color: var(--body); }
.sec-head:not(.left) .sec-sub { margin: 0 auto; }

/* ===== VALUE CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; transition: transform .25s var(--ease), box-shadow .3s, border-color .3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.card-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--amber-50); display: grid; place-items: center; margin-bottom: 1.3rem; }
.card-ico svg { width: 25px; height: 25px; stroke: var(--amber-600); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { font-size: .96rem; color: var(--body); }

/* ===== SERVICES (list rows) ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.svc { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.7rem; transition: border-color .25s, box-shadow .25s, transform .25s var(--ease); }
.svc:hover { border-color: var(--amber); box-shadow: var(--sh-1); transform: translateY(-3px); }
.svc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.svc-ico svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc h4 { font-size: 1.08rem; margin-bottom: .3rem; }
.svc p { font-size: .92rem; color: var(--body); }
.svc-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .7rem; font-size: .85rem; font-weight: 700; color: var(--amber-600); opacity: 0; transform: translateX(-4px); transition: opacity .2s var(--ease), transform .2s var(--ease); }
.svc-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.svc:hover .svc-link { opacity: 1; transform: none; }
@media (hover: none) { .svc-link { opacity: 1; transform: none; } }
.svc-cta { grid-column: span 2; }
.svc-cta .svc-link { opacity: 1; transform: none; }
@media (max-width:680px) { .svc-cta { grid-column: span 1; } }

/* ===== WHY (tabs) ===== */
.why-tabs { display: flex; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.why-tab { display: inline-flex; align-items: center; gap: .5rem; font-size: .96rem; font-weight: 700; padding: .7rem 1.3rem; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--body); cursor: pointer; transition: all .2s var(--ease); }
.why-tab svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.why-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.why-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 3rem; box-shadow: var(--sh-1); }
.why-panel h3 { font-size: 1.9rem; margin-bottom: 1rem; }
.why-panel p { margin-bottom: 1.5rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.why-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.why-list svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--amber-600); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.why-visual { border-radius: var(--r-lg); overflow: hidden; min-height: 260px; }
.why-visual img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 260px; border-radius: var(--r-lg); }

/* ===== FOUNDER QUOTE ===== */

/* ===== CTA ===== */
.cta-box { background: var(--ink-deep); border-radius: var(--r-xl); padding: 4.5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-box > * { position: relative; }
.cta-box h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 18ch; margin: 0 auto 1rem; }
.cta-box p { color: rgba(255,255,255,.65); max-width: 46ch; margin: 0 auto 2.2rem; font-size: 1.08rem; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta-box .btn-ghost { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; }
.cta-box .btn-ghost:hover { border-color: #fff; }

/* ===== FOOTER ===== */
footer { background: var(--ink-deep); color: rgba(255,255,255,.55); padding: 4.5rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand .logo-text { color: #fff; }
.foot-brand .logo-sub { color: rgba(255,255,255,.45); }
.foot-brand p { margin-top: 1rem; max-width: 34ch; font-size: .93rem; }
.foot-col h5 { color: #fff; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.foot-col a { display: block; font-size: .93rem; margin-bottom: .6rem; color: rgba(255,255,255,.55); transition: color .2s; }
.foot-col a:hover { color: var(--amber); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: .85rem; color: rgba(255,255,255,.4); }
.foot-bottom a { transition: color .2s; }
.foot-bottom a:hover { color: var(--amber); }
.foot-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* footer socials */
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: background .2s, border-color .2s, color .2s, transform .16s var(--ease); }
.socials a:hover { background: var(--amber); border-color: var(--amber); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* ===== CONTACT (form + info) ===== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 2.2rem; }
.contact-card h3 { font-size: 1.4rem; margin-bottom: 1.6rem; }
.contact-row { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--amber-50); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ico svg { width: 20px; height: 20px; stroke: var(--amber-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-row b { display: block; color: var(--ink); font-size: .95rem; margin-bottom: .1rem; }
.contact-row a, .contact-row span { font-size: .95rem; color: var(--body); transition: color .2s; }
.contact-row a:hover { color: var(--amber-600); }
.cform { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 2.2rem; box-shadow: var(--sh-1); }
.cform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform .row { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.cform .row.full { grid-column: 1 / -1; }
.cform label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.cform input, .cform select, .cform textarea { border: 1px solid var(--line); border-radius: var(--r-sm); padding: .7rem .9rem; font-family: inherit; font-size: .95rem; background: var(--bg-soft); color: var(--ink); outline: none; transition: border-color .15s; width: 100%; }
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--amber); background: #fff; }
.cform textarea { resize: vertical; min-height: 110px; }
.cform .btn { width: 100%; justify-content: center; margin-top: .3rem; }
.cform .form-note { margin-top: .8rem; font-size: .82rem; color: var(--muted); text-align: center; }

/* ===== LEGAL / DOC PAGES ===== */
.doc { padding: 5rem 0 5rem; }
.doc-inner { max-width: 760px; margin: 0 auto; }
.doc h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .6rem; }
.doc .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2.5rem; }
.doc h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; }
.doc p, .doc li { font-size: 1.02rem; color: var(--body); margin-bottom: .9rem; }
.doc ul { padding-left: 1.3rem; margin-bottom: .9rem; }
.doc a { color: var(--amber-600); font-weight: 600; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== SUBPAGE (service pages) ===== */
.subhero { padding: 5rem 0 1rem; }
.breadcrumb { display: flex; align-items: center; gap: .45rem; font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 1.6rem; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--amber-600); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .here { color: var(--ink); }
.subhero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.subhero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.2rem; }
.subhero .lead { font-size: 1.16rem; color: var(--body); max-width: 48ch; margin-bottom: 2rem; }
.subhero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.subhero-art { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-1); }
.subhero-art img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* what's included — reuses .cards / .card */
.incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem 1.5rem; position: relative; transition: border-color .25s, box-shadow .25s, transform .25s var(--ease); }
.step:hover { border-color: var(--amber); box-shadow: var(--sh-1); transform: translateY(-3px); }
.step-n { width: 38px; height: 38px; border-radius: 10px; background: var(--ink-deep); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1rem; margin-bottom: 1rem; }
.step h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--body); }

/* pricing card (legacy — kept for any non-tier use) */
.price-card { max-width: 640px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 3rem 2rem; box-shadow: var(--sh-1); }
.price-card .price-range { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price-card .price-range .cur { color: var(--amber-600); font-size: .6em; vertical-align: .15em; margin-right: .15rem; }
.price-card .price-note { color: var(--body); margin: .8rem auto 1.8rem; max-width: 42ch; }
.price-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.2rem 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.price-meta div { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.price-meta svg { width: 20px; height: 20px; stroke: var(--amber-600); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== PRICING TIERS ===== */
.pricing-value-note { text-align: center; margin-bottom: 2.5rem; }
.pvn-pill { display: inline-flex; align-items: center; gap: .5rem; background: var(--amber-50); color: var(--amber-600); border: 1px solid rgba(15,118,110,.18); border-radius: 100px; padding: .45rem 1.2rem; font-size: .875rem; font-weight: 600; }
.pvn-pill::before { content: '✓'; font-weight: 800; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; padding-top: 1rem; }
.pricing-tier { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: 2rem 1.8rem 1.8rem; position: relative; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; display: flex; flex-direction: column; }
.pricing-tier:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(15,118,110,.2); }
.pricing-tier.featured { border-color: var(--amber); border-top-width: 4px; box-shadow: 0 4px 24px rgba(15,118,110,.13); transform: translateY(-6px); }
.pricing-tier.featured:hover { transform: translateY(-10px); }
.tier-badge { display: inline-block; background: var(--amber); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 100px; padding: .3rem .85rem; margin-bottom: .9rem; }
.tier-header { padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); margin-bottom: 1.3rem; }
.tier-name { font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .45rem; }
.pricing-tier.featured .tier-name { color: var(--amber-600); }
.tier-price { font-size: clamp(1.75rem,4vw,2.4rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; margin-bottom: .4rem; }
.tier-price .cur { color: var(--amber-600); font-size: .52em; vertical-align: .28em; margin-right: .08rem; font-weight: 700; }
.tier-price .tier-plus { font-size: .5em; vertical-align: .3em; color: var(--muted); font-weight: 600; }
.tier-price .tier-period { font-size: .42em; vertical-align: .3em; color: var(--muted); font-weight: 600; }
.tier-desc { font-size: .9rem; color: var(--body); display: block; }
.tier-features { list-style: none; padding: 0; margin: 0 0 1.8rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.tier-features li { font-size: .9rem; color: var(--body); display: flex; align-items: flex-start; gap: .5rem; line-height: 1.4; }
.tier-features li svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--amber); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; margin-top: .15rem; }
.tier-features li.muted-feat { color: var(--muted); }
.tier-features li.muted-feat svg { stroke: #c8cdd3; }
.tier-cta { width: 100%; text-align: center; justify-content: center; display: inline-flex; margin-top: auto; }
.pricing-foot { text-align: center; margin-top: 2rem; font-size: .875rem; color: var(--muted); }
@media(max-width:900px){ .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } .pricing-tier.featured { transform: none; } .pricing-tier:hover { transform: translateY(-3px); } }

/* FAQ accordion */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: .8rem; background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--amber); box-shadow: var(--sh-1); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 1.02rem; font-weight: 700; color: var(--ink); padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-q .chev { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--amber-600); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 1.4rem 1.2rem; font-size: .98rem; color: var(--body); }

/* ===== LIGHT COLOR AMBIANCE + MICRO-MOTION ===== */
/* soft single-tone blue wash behind heroes (no neon, very low opacity) */
.hero, .subhero { position: relative; }
.hero > .wrap, .subhero > .wrap { position: relative; z-index: 1; }
.hero::before, .subhero::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: -14%; right: -6%; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.10), transparent 70%);
}
.subhero::before { width: 560px; height: 560px; top: -18%; }
/* a second, fainter accent low-left on subheroes for balance */
.subhero::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  bottom: -30%; left: -8%; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.06), transparent 70%);
}

/* icon micro-interactions on card/row hover */
.svc-ico, .step-n { transition: transform .25s var(--ease); }
.card:hover .card-ico { transform: translateY(-2px) scale(1.06); }
.svc:hover .svc-ico { transform: rotate(-4deg) scale(1.07); }
.step:hover .step-n { transform: translateY(-2px) scale(1.06); }

/* animated underline on nav links */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 2px;
  border-radius: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* gentle float on the service-page hero art */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-panel { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .subhero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .subhero-art { max-width: 480px; }
  .incl-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {

  body { font-size: 16px; }
  .burger { display: block; }
  .nav-inner { justify-content: space-between; position: relative; }
  .nav-links { display: none; position: absolute; top: calc(100% + .85rem); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: .15rem; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--sh-1); padding: .6rem 5% 1rem; margin: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem .7rem; border-radius: 8px; }
  section.block { padding: 4rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cform-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== CHATBOT ===== */
#chat-btn { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--amber); border: 0; cursor: pointer; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,99,235,.4); transition: transform .18s var(--ease); }
#chat-btn:hover { transform: scale(1.06); }
#chat-btn svg { width: 23px; height: 23px; stroke: #fff; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
#chat-btn .badge { position: absolute; top: 1px; right: 3px; width: 12px; height: 12px; background: #22c55e; border-radius: 50%; border: 2px solid #fff; }
#chat-window { position: fixed; bottom: 5.6rem; right: 1.6rem; z-index: 59; width: 368px; max-height: 560px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); display: flex; flex-direction: column; box-shadow: var(--sh-2); overflow: hidden; transform: scale(.95) translateY(10px); opacity: 0; pointer-events: none; transition: transform .2s var(--ease), opacity .2s; transform-origin: bottom right; }
#chat-window.open { transform: none; opacity: 1; pointer-events: all; }
.ch-head { background: var(--ink); color: #fff; padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; }
.ch-head .info { display: flex; align-items: center; gap: .7rem; }
.ch-av { width: 38px; height: 38px; border-radius: 50%; background: var(--amber); display: grid; place-items: center; font-weight: 800; color: #fff; }
.ch-head b { font-size: .95rem; } .ch-head .stat { font-size: .74rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .3rem; }
.ch-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.ch-x { background: none; border: 0; cursor: pointer; color: rgba(255,255,255,.7); display: flex; }
.ch-x svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.ch-msgs { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; }
.ch-msgs::-webkit-scrollbar { width: 5px; } .ch-msgs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.m { max-width: 84%; padding: .6rem .85rem; border-radius: 14px; font-size: .88rem; line-height: 1.5; }
.m.bot { background: var(--bg-soft); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.m.user { background: var(--amber); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; font-weight: 600; }
.m.typing { display: flex; gap: 4px; align-items: center; }
.m.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.m.typing i:nth-child(2) { animation-delay: .2s; } .m.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .25; } 40% { opacity: 1; } }
.ch-chips { display: flex; flex-wrap: wrap; gap: .4rem; padding: 0 1rem .7rem; }
.ch-chip { font-size: .8rem; padding: .35rem .8rem; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--amber-600); cursor: pointer; transition: all .15s; }
.ch-chip:hover { border-color: var(--amber); background: var(--amber-50); }
.ch-input { display: flex; gap: .5rem; padding: .75rem 1rem; border-top: 1px solid var(--line); }
.ch-input input { flex: 1; border: 1px solid var(--line); border-radius: 100px; padding: .55rem 1rem; font-size: .88rem; font-family: inherit; background: var(--bg-soft); color: var(--ink); outline: none; transition: border-color .15s; }
.ch-input input:focus { border-color: var(--amber); }
.ch-send { width: 38px; height: 38px; border-radius: 50%; background: var(--amber); border: 0; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; }
.ch-send svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.bform { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: .85rem; margin-top: .25rem; display: flex; flex-direction: column; gap: .5rem; max-width: 92%; }
.bform label { font-size: .74rem; color: var(--muted); font-weight: 700; }
.bform input, .bform select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: .45rem .7rem; font-size: .82rem; font-family: inherit; background: #fff; color: var(--ink); outline: none; }
.bform button { margin-top: .25rem; background: var(--amber); color: #fff; border: 0; border-radius: 8px; padding: .55rem; font-size: .85rem; font-family: inherit; cursor: pointer; font-weight: 700; }

/* ===== Contact modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,20,18,.55);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  display: flex; flex-direction: row;
  width: 900px; max-width: 100%; max-height: 90vh;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 32px 96px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.06);
  transform: scale(.96) translateY(12px);
  transition: transform .32s cubic-bezier(.34,1.26,.64,1), opacity .25s ease;
  opacity: 0;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); opacity: 1; }

/* LEFT — form panel */
.modal-left {
  display: flex; flex-direction: column;
  flex: 1; min-width: 0; min-height: 0;
  background: #fff;
}
.modal-head {
  background: var(--ink-deep);
  padding: 1.75rem 2rem 1.85rem;
  flex-shrink: 0; position: relative;
}
.modal-brand { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.1rem; }
.modal-mark {
  width: 28px; height: 28px; background: #fff; border-radius: 7px;
  display: grid; place-items: center; color: var(--ink-deep); flex-shrink: 0;
}
.modal-mark svg { width: 16px; height: 16px; }
.modal-brand-name { color: #fff; font-weight: 800; font-size: .98rem; letter-spacing: -.02em; }
.modal-title { color: #fff; font-size: 1.6rem; font-weight: 800; margin: 0 0 .35rem; letter-spacing: -.03em; line-height: 1.2; }
.modal-sub { color: rgba(255,255,255,.5); font-size: .83rem; margin: 0; letter-spacing: .005em; }
.modal-close {
  position: absolute; top: 1.6rem; right: 1.6rem;
  background: rgba(255,255,255,.1); border: none; border-radius: 9px;
  cursor: pointer; width: 36px; height: 36px;
  display: grid; place-items: center; color: rgba(255,255,255,.65);
  transition: background .15s, color .15s;
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: rgba(255,255,255,.2); color: #fff; }

.modal-body { flex: 1; overflow-y: auto; padding: 1.85rem 2rem 2.5rem; }

.modal-section-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted);
  margin: 1.6rem 0 1rem; padding-bottom: .5rem;
  border-bottom: 1.5px solid var(--line);
}
.modal-section-label:first-of-type { margin-top: 0; }

.modal-field { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1rem; }
.modal-field label {
  font-size: .76rem; font-weight: 600;
  color: #2d3748; letter-spacing: .02em;
}
.modal-field input, .modal-field select, .modal-field textarea {
  width: 100%; box-sizing: border-box;
  padding: .72rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .9rem; color: var(--ink); background: #fafbfc;
  transition: border-color .18s, background .18s, box-shadow .18s;
  -webkit-appearance: none; appearance: none;
  min-height: 44px;
}
.modal-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b95a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 16px;
  padding-right: 2.4rem; cursor: pointer;
}
.modal-field input:focus, .modal-field select:focus, .modal-field textarea:focus {
  outline: none; border-color: var(--amber); background: #fff;
  box-shadow: 0 0 0 3.5px rgba(15,118,110,.12);
}
.modal-field input:hover:not(:focus), .modal-field select:hover:not(:focus), .modal-field textarea:hover:not(:focus) {
  border-color: #c1cdd8;
}
.modal-field input::placeholder, .modal-field textarea::placeholder { color: #aab4be; font-weight: 400; }
.modal-field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }

.phone-input-wrap {
  display: flex; border: 1.5px solid var(--line); border-radius: 10px;
  overflow: hidden; background: #fafbfc; transition: border-color .18s, box-shadow .18s;
}
.phone-input-wrap:focus-within {
  border-color: var(--amber); background: #fff;
  box-shadow: 0 0 0 3.5px rgba(15,118,110,.12);
}
.phone-input-wrap:hover:not(:focus-within) { border-color: #c1cdd8; }
.phone-input-wrap .phone-code {
  width: 62px; flex-shrink: 0; border: none; border-right: 1.5px solid var(--line);
  padding: .72rem .6rem; text-align: center; font: inherit; font-size: .85rem;
  font-weight: 700; color: var(--ink); background: rgba(15,118,110,.04);
  letter-spacing: .01em; min-height: 44px; box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
}
.phone-input-wrap .phone-code:focus { outline: none; }
.phone-input-wrap input[type="tel"] {
  flex: 1; border: none; padding: .72rem .9rem; background: transparent;
  font: inherit; font-size: .9rem; color: var(--ink); min-height: 44px;
  box-sizing: border-box;
}
.phone-input-wrap input[type="tel"]:focus { outline: none; }
.phone-input-wrap input[type="tel"]::placeholder { color: #aab4be; font-weight: 400; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; align-items: start; }
.req { color: var(--amber); font-weight: 700; }

.modal-submit {
  width: 100%; margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--amber); color: #fff; border: none; border-radius: 100px;
  padding: .9rem 1.5rem; font: inherit; font-size: .95rem; font-weight: 700;
  cursor: pointer; letter-spacing: -.01em;
  transition: background .18s, box-shadow .18s, transform .15s;
  box-shadow: 0 4px 18px rgba(15,118,110,.28);
}
.modal-submit svg { width: 17px; height: 17px; transition: transform .18s; flex-shrink: 0; }
.modal-submit:hover { background: var(--amber-600); box-shadow: 0 6px 24px rgba(15,118,110,.38); transform: translateY(-1px); }
.modal-submit:hover svg { transform: translateX(3px); }
.modal-submit:active { transform: translateY(0); }
.modal-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.modal-trust { text-align: center; font-size: .77rem; color: var(--muted); margin: .8rem 0 0; line-height: 1.65; }
.modal-trust a { color: var(--amber); text-decoration: none; }
.modal-trust a:hover { text-decoration: underline; }
.modal-status { font-size: .85rem; margin: .65rem 0 0; color: var(--body); min-height: 1.2em; text-align: center; }
.modal-status a { color: var(--amber); }

/* RIGHT — what happens next panel */
.modal-right {
  width: 310px; flex-shrink: 0;
  background: var(--ink-deep);
  padding: 3rem 2.25rem;
  display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto; min-height: 0;
  border-left: 1px solid rgba(255,255,255,.07);
}
.wn-eyebrow {
  font-size: .67rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
  margin: 0 0 2rem;
}
.wn-steps { display: flex; flex-direction: column; gap: 1.85rem; }
.wn-step { display: flex; gap: 1rem; align-items: flex-start; }
.wn-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--amber); color: #fff;
  font-size: .78rem; font-weight: 800;
  display: grid; place-items: center; flex-shrink: 0; margin-top: .1rem;
}
.wn-step strong { display: block; font-size: .93rem; font-weight: 700; color: #fff; margin-bottom: .35rem; line-height: 1.3; }
.wn-step p { font-size: .79rem; color: rgba(255,255,255,.45); margin: 0; line-height: 1.6; }
.wn-divider { height: 1px; background: rgba(255,255,255,.08); margin: 2.25rem 0; }
.wn-badges { display: flex; flex-direction: column; gap: .7rem; }
.wn-badge {
  display: flex; align-items: center; gap: .6rem;
  font-size: .79rem; color: rgba(255,255,255,.55); font-weight: 500;
}
.wn-badge svg { width: 14px; height: 14px; stroke: var(--amber); flex-shrink: 0; }

@media (max-width:820px) {
  .modal-right { display: none; }
  .modal-box { width: 100%; max-width: 520px; }
}
@media (max-width:560px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box { max-width: 100%; max-height: 92vh; border-radius: 20px 20px 0 0; }
  .modal-head { padding: 1.5rem 1.5rem 1.6rem; }
  .modal-close { top: 1.35rem; right: 1.35rem; }
  .modal-body { padding: 1.5rem 1.5rem 2rem; }
  .modal-row { grid-template-columns: 1fr; }
}
@media (max-width: 440px) { #chat-window { width: calc(100vw - 2rem); right: 1rem; } }


/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 5.9rem; right: 1.6rem; z-index: 58; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.32); transition: transform .18s var(--ease); }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (prefers-reduced-motion: reduce) { .wa-float, .wa-float:hover { transition: none; transform: none; } }

/* ===== BLOG ===== */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 980px; margin: 0 auto; }
@media (max-width: 720px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 2rem 1.8rem; text-decoration: none; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.post-card .post-tag { display: inline-block; align-self: flex-start; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--amber-600); background: var(--amber-50); border-radius: 100px; padding: .28rem .8rem; margin-bottom: 1.1rem; }
.post-card h3 { font-size: 1.3rem; line-height: 1.3; color: var(--ink); margin-bottom: .6rem; }
.post-card p { color: var(--body); font-size: .98rem; line-height: 1.65; margin-bottom: 1.2rem; }
.post-card .post-meta { margin-top: auto; font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.post-card .post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

.doc .post-meta { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--muted); margin-bottom: 2.4rem; }
.doc .post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.doc h3 { font-size: 1.12rem; margin: 1.8rem 0 .6rem; }
.doc table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; font-size: .98rem; }
.doc table th { text-align: left; font-weight: 700; color: var(--ink); background: var(--bg-soft, #f6f8fa); }
.doc table th, .doc table td { border: 1px solid var(--line); padding: .75rem .9rem; color: var(--body); }
.doc table td b { color: var(--ink); }
@media (max-width: 560px) { .doc table { font-size: .88rem; } .doc table th, .doc table td { padding: .55rem .6rem; } }
.doc .note { background: var(--amber-50); border-left: 3px solid var(--amber); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1rem 1.2rem; margin: 1.4rem 0; }
.doc .note p { margin: 0; }
.post-cta { background: var(--amber-50); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem 2rem; margin-top: 2.8rem; }
.post-cta h2 { margin-top: 0 !important; }
.post-cta .btn { margin-top: .4rem; }