/* ChennaiGST.com — bright professional theme (indigo + coral on white) */
:root {
  --brand-900: #1E1B4B;
  --brand-700: #3730A3;
  --brand-600: #4F46E5;
  --brand-100: #E0E7FF;
  --brand-50: #EEF2FF;
  --accent-500: #F4593B;
  --accent-600: #E13F22;
  --accent-100: #FFE4DC;
  --ink-900: #0F172A;
  --ink-600: #475569;
  --ink-400: #94A3B8;
  --line: #E2E8F0;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --green: #16A34A;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(55, 48, 163, 0.10);
  --shadow-lg: 0 14px 40px rgba(15, 23, 42, 0.14);
  --font: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink-900); background: var(--bg); line-height: 1.7; font-size: 16.5px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: var(--brand-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-600); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; letter-spacing: -.015em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
h3 { font-size: 1.15rem; }
p { line-height: 1.7; }
section { padding: 64px 0; }
.section-sub { color: var(--ink-600); max-width: 68ch; margin-bottom: 34px; font-size: 1.02rem; }
.kicker { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--brand-600); background: var(--brand-50); border: 1px solid var(--brand-100); padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }

/* ---------- scroll progress bar ---------- */
#scrollProgress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 120; background: linear-gradient(90deg, var(--brand-600), var(--accent-500)); transition: width .1s linear; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px) scale(.985); transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #scrollProgress { display: none; }
}

/* ---------- top strip ---------- */
.topstrip { background: var(--brand-900); color: #E0E7FF; font-size: .82rem; padding: 7px 0; }
.topstrip .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.topstrip a { color: #FFC9B9; font-weight: 700; }
.topstrip .due { color: #C7D2FE; }
.topstrip .ts-contact { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topstrip .ts-sep { color: #4C4A7A; }
.topstrip .ts-phone { display: inline-flex; align-items: center; gap: 6px; font-size: .92rem; font-weight: 800; letter-spacing: .02em; color: #fff; background: linear-gradient(135deg, var(--accent-500), var(--accent-600)); padding: 3px 12px; border-radius: 999px; box-shadow: 0 0 0 0 rgba(244,89,59,.5); animation: tsPulse 3s ease-out infinite; transition: transform .2s; }
.topstrip .ts-phone:hover { color: #fff; transform: scale(1.05); }
.topstrip .ts-ico { font-size: .95rem; line-height: 1; }
@keyframes tsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(244,89,59,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(244,89,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,89,59,0); }
}
@media (prefers-reduced-motion: reduce) { .topstrip .ts-phone { animation: none; } }
@media (max-width: 640px) {
  .topstrip .container { justify-content: center; text-align: center; }
  .topstrip .ts-contact { justify-content: center; }
}

/* ---------- header (pre-header + navbar frozen together) ---------- */
.freeze-wrap { position: sticky; top: 0; z-index: 60; box-shadow: 0 2px 12px rgba(15,23,42,.05); transition: box-shadow .3s; }
.freeze-wrap.scrolled { box-shadow: 0 8px 28px rgba(15,23,42,.14); }
.site-header { background: var(--white); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.logo { font-size: 1.35rem; font-weight: 800; color: var(--ink-900); letter-spacing: -.02em; display: inline-flex; align-items: center; gap: 9px; }
.logo span { color: var(--brand-600); }
.logo em { font-style: normal; color: var(--accent-500); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---- updates hub: search, topics, sort ---- */
.upd-filter { margin: 0 0 14px; }
.uf-search { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.uf-search input[type=search] { flex: 1 1 320px; min-width: 0; padding: 12px 15px; border-radius: 10px; border: 1.5px solid #E0E7FF; font-size: .95rem; font-family: inherit; }
.uf-search input[type=search]:focus { outline: none; border-color: var(--brand-600, #4F46E5); box-shadow: 0 0 0 3px rgba(79,70,229,.15); }
.uf-go { padding: 12px 22px; }
.uf-clear { font-size: .88rem; font-weight: 600; color: var(--ink-600, #4B5563); }
.uf-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 6px; }
.uf-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px; font-size: .83rem; font-weight: 600; color: var(--brand-700, #3730A3); background: #EEF2FF; border: 1px solid #E0E7FF; }
.uf-chip:hover { background: #E0E7FF; }
.uf-chip.is-on { background: var(--brand-600, #4F46E5); border-color: var(--brand-600, #4F46E5); color: #fff; }
.uf-chip-sm { padding: 3px 10px; font-size: .75rem; margin-left: 6px; vertical-align: middle; }
.uf-n { font-size: .75rem; opacity: .75; font-variant-numeric: tabular-nums; }
.uf-bar { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: baseline; justify-content: space-between; margin: 10px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line, #E5E7EB); }
.uf-count { font-size: .9rem; font-weight: 600; color: var(--ink-700, #374151); }
.uf-sort { font-size: .85rem; color: var(--ink-600, #4B5563); display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; }
.uf-slink { font-weight: 600; color: var(--ink-600, #4B5563); border-bottom: 2px solid transparent; }
.uf-slink:hover { color: var(--brand-700, #3730A3); }
.uf-slink.is-on { color: var(--brand-700, #3730A3); border-bottom-color: var(--accent-500, #F4593B); }
@media (max-width: 560px) { .uf-bar { flex-direction: column; align-items: flex-start; } }

/* ---- update post engagement ---- */
.upd-engage { margin: 26px 0 8px; padding: 16px 0; border-top: 1px solid var(--line, #E5E7EB); border-bottom: 1px solid var(--line, #E5E7EB); }
.eng-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.eng-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px; border: 1.5px solid #E0E7FF; background: #fff; color: var(--ink-700, #374151); font-weight: 600; font-size: .9rem; cursor: pointer; transition: background .18s ease, border-color .18s ease, transform .12s ease; }
.eng-btn:hover { background: #EEF2FF; border-color: var(--brand-600, #4F46E5); }
.eng-btn:active { transform: scale(.97); }
.eng-btn.is-on { background: var(--brand-600, #4F46E5); border-color: var(--brand-600, #4F46E5); color: #fff; }
.eng-n { font-variant-numeric: tabular-nums; }
.eng-views { margin-left: auto; font-size: .88rem; color: var(--ink-600, #4B5563); }
.share-menu { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.share-lnk { padding: 7px 13px; border-radius: 8px; background: #F3F4F6; border: 1px solid #E5E7EB; font-size: .85rem; font-weight: 600; color: var(--brand-700, #3730A3); cursor: pointer; }
.share-lnk:hover { background: #E0E7FF; }
.eng-msg { margin: 10px 0 0; font-size: .86rem; color: var(--brand-700, #3730A3); min-height: 1.1em; }
.article-disclaimer { margin: 20px 0 8px; padding: 14px 16px; border-left: 4px solid var(--accent-500, #F4593B); background: #FFF7F5; border-radius: 0 8px 8px 0; font-size: .87rem; color: var(--ink-600, #4B5563); line-height: 1.6; }
.print-only { display: none; }

@media print {
  .no-print, .site-header, .freeze-wrap, .topstrip, .crumbs, .cta-banner,
  .site-footer, .floating-form, .mobile-bar, .consent-bar, .upd-engage,
  .nav, .scroll-progress { display: none !important; }
  .print-only { display: block; margin-top: 8px; font-weight: 600; }
  body { background: #fff; color: #000; font-size: 11.5pt; }
  .article-disclaimer { border: 1px solid #999; background: #fff !important;
                        page-break-inside: avoid; margin-top: 18px; }
  .upd-hero img { max-width: 60%; box-shadow: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
  a[href^="/"]::after { content: ""; }
}

.card.has-thumb { display: flex; gap: 18px; align-items: flex-start; }
.upd-thumb { flex: 0 0 210px; display: block; border-radius: 10px; overflow: hidden; background: #EEF2FF; }
.upd-thumb img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform .3s ease; }
.upd-thumb:hover img { transform: scale(1.05); }
.upd-card-body { flex: 1 1 auto; min-width: 0; }
@media (max-width: 640px) {
  .card.has-thumb { flex-direction: column; gap: 12px; }
  .upd-thumb { flex: none; width: 100%; }
  .upd-thumb img { height: 180px; }
}
.upd-hero { margin: 18px 0 6px; }
.upd-hero img { width: 100%; height: auto; border-radius: 12px; display: block; box-shadow: 0 6px 22px rgba(30,27,75,.14); }
.upd-hero figcaption { font-size: .86rem; color: var(--ink-600); margin-top: 8px; font-style: italic; }
.upd-tags { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 10px; }
.upd-tags-label { font-size: .8rem; font-weight: 700; color: var(--ink-600); margin-right: 2px; }
.upd-tag { display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: .78rem; font-weight: 600; color: var(--brand-700); background: #EEF2FF; border: 1px solid #E0E7FF; }
.logo-mark { width: 34px; height: 34px; border-radius: 8px; flex: 0 0 auto; box-shadow: 0 2px 7px rgba(79,70,229,.28); transition: transform .22s ease; }
.logo:hover .logo-mark { transform: rotate(-5deg) scale(1.06); }
@media (max-width: 560px) { .logo-mark { width: 29px; height: 29px; } }
/* Home as an icon. The label is kept in the markup and only hidden visually,
   so screen readers and the mobile drop-down still say "Home" - an icon-only
   link with no accessible name is a real usability failure, not a style. */
.nav-home { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-600); }
.nav-home svg { display: block; transition: transform .22s cubic-bezier(.34,1.56,.64,1); }
.nav-home:hover { color: var(--brand-700); }
.nav-home:hover svg { transform: translateY(-2px); }
.nav-home .nav-home-txt { display: none; }
@media (max-width: 960px) {
  /* In the drop-down there is room, and the word is clearer than a glyph. */
  .nav-home .nav-home-txt { display: inline; }
}

/* Single row, never wrapping. Two pills (Notice Analyser + GST Refund) plus
   five text links is a wide navbar, so the gap tightens as space runs out
   instead of the strip breaking onto a second line. Below 960px the whole nav
   becomes the mobile drop-down and these rules are overridden. */
.nav { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; min-width: 0; }
.nav a { color: var(--ink-600); font-weight: 600; font-size: .93rem; position: relative; padding: 4px 0; white-space: nowrap; flex: 0 0 auto; }
.site-header .container { flex-wrap: nowrap; }
.site-header .logo { flex: 0 0 auto; }
.site-header .header-cta { flex: 0 0 auto; white-space: nowrap; display: none; }
/* min-width guards keep these off the mobile drop-down, which starts at 960px
   and needs full-size tap targets, not a squeezed desktop strip. */
@media (min-width: 961px) and (max-width: 1200px) {
  .nav { gap: 16px; }
  .nav a { font-size: .89rem; }
}
@media (min-width: 961px) and (max-width: 1080px) {
  .nav { gap: 11px; }
  .nav a { font-size: .85rem; }
  .nav-tool, .nav-refund { padding-left: 9px !important; padding-right: 10px !important; }
  .site-header .header-cta { padding: 10px 16px; font-size: .88rem; }
  .logo { font-size: 1.18rem; }
  .logo-mark { width: 29px; height: 29px; }
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2.5px; width: 0; border-radius: 2px; background: linear-gradient(90deg, var(--brand-600), var(--accent-500)); transition: width .28s ease; }
.nav a:hover { color: var(--brand-700); }
.nav a:hover::after { width: 100%; }
.btn { display: inline-block; padding: 13px 26px; border-radius: 10px; font-weight: 800; font-size: .95rem; border: 0; cursor: pointer; position: relative; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:active { transform: scale(.97); }
.btn::before { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg); transition: left .5s ease; }
.btn:hover::before { left: 130%; }
.btn-primary { background: linear-gradient(135deg, var(--brand-600), var(--brand-700)); color: #fff; box-shadow: 0 6px 16px rgba(79,70,229,.35); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(79,70,229,.45); }
.btn-amber { background: linear-gradient(135deg, var(--accent-500), var(--accent-600)); color: #fff; box-shadow: 0 6px 16px rgba(244,89,59,.35); }
.btn-amber:hover { color: #fff; transform: translateY(-2px); }
.btn-ghost { background: var(--white); color: var(--brand-700); border: 2px solid var(--brand-600); }
.btn-ghost:hover { background: var(--brand-50); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--brand-700); cursor: pointer; }

/* ---------- breadcrumb ---------- */
.crumbs { font-size: .82rem; color: var(--ink-400); padding: 12px 0; }
.crumbs a { color: var(--ink-600); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(900px 420px at 85% -10%, rgba(79,70,229,.14), transparent 60%),
  radial-gradient(700px 380px at -10% 110%, rgba(244,89,59,.12), transparent 60%),
  linear-gradient(180deg, #FFFFFF 0%, var(--brand-50) 100%);
  padding: 56px 0 60px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; animation: blob 14s ease-in-out infinite alternate; }
.hero::before { width: 380px; height: 380px; background: rgba(79,70,229,.18); top: -120px; right: -80px; }
.hero::after { width: 300px; height: 300px; background: rgba(244,89,59,.16); bottom: -120px; left: -60px; animation-delay: 4s; }
@keyframes blob { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, 30px) scale(1.15); } }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .9fr; gap: 44px; align-items: start; }
.hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -.02em; margin: 10px 0 16px; text-wrap: balance; }
.hero h1 .hl { background: linear-gradient(90deg, var(--brand-600) 20%, var(--accent-500) 50%, var(--brand-600) 80%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }
.hero-lead { color: var(--ink-600); font-size: 1.07rem; max-width: 62ch; line-height: 1.75; }
.hero-points { list-style: none; margin: 20px 0 24px; display: grid; gap: 10px; }
.hero-points li { padding-left: 30px; position: relative; font-weight: 600; color: var(--ink-900); }
.hero-points li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); font-weight: 800; font-size: .8rem; display: grid; place-items: center; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.attr-strip { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 30px; font-size: .85rem; color: var(--ink-600); }
.attr-strip > div { padding-left: 14px; border-left: 3px solid var(--brand-100); }
.attr-strip b { color: var(--ink-900); display: block; font-size: 1.05rem; letter-spacing: -.01em; }

/* hero lead form card */
.lead-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 26px; border-top: 5px solid var(--accent-500); animation: floatIn .8s ease both; }
@keyframes floatIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.lead-card h3 { margin-bottom: 4px; }
.lead-card p.small { font-size: .85rem; color: var(--ink-600); margin-bottom: 14px; }
.lead-form { display: grid; gap: 12px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .95rem; background: var(--bg); transition: border .2s, box-shadow .2s; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 3px rgba(79,70,229,.15); background: #fff; }
.lead-form .hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: .78rem; color: var(--ink-400); text-align: center; }
.form-msg { font-size: .9rem; font-weight: 700; text-align: center; display: none; }
.form-msg.ok { display: block; color: var(--green); }
.form-msg.err { display: block; color: #DC2626; }

/* ---------- trust bar ---------- */
.trustbar { background: var(--brand-900); color: #fff; padding: 34px 0; }
.trustbar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trustbar b { display: block; font-size: 2rem; font-weight: 800; color: #FFB09C; }
.trustbar span { font-size: .88rem; color: #C7D2FE; }

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-100); }
.card .ico { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); color: var(--brand-700); display: grid; place-items: center; font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s; }
.card:hover .ico { transform: scale(1.14) rotate(-6deg); background: linear-gradient(135deg, var(--brand-100), var(--accent-100)); }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-600); font-size: .94rem; line-height: 1.65; }

/* ---------- price tag ---------- */
.price-tag { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px 6px 11px; border-radius: 999px; background: linear-gradient(135deg, var(--accent-100), #FFC9B9); color: #9A3412; font-weight: 800; font-size: .87rem; border: 1px solid #FFB09C; box-shadow: 0 2px 8px rgba(244,89,59,.22); white-space: nowrap; transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s; }
.price-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-500); box-shadow: 0 0 0 3px rgba(244,89,59,.25); }
.card:hover .price-tag { transform: scale(1.06); box-shadow: 0 4px 14px rgba(244,89,59,.35); }

/* ---------- process ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; position: relative; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.step::before { counter-increment: step; content: counter(step); width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-500), var(--accent-600)); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 13px; box-shadow: 0 4px 10px rgba(244,89,59,.4); transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.step:hover::before { transform: scale(1.15); }
.step h3 { font-size: .98rem; margin-bottom: 6px; }
.step p { font-size: .87rem; color: var(--ink-600); line-height: 1.6; }

/* ---------- documents ---------- */
.doc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; list-style: none; }
.doc-list li { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px 13px 44px; position: relative; font-weight: 600; font-size: .93rem; display: flex; align-items: center; min-height: 52px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.doc-list li:hover { border-color: var(--brand-100); transform: translateX(4px); box-shadow: var(--shadow); }
.doc-list li::before { content: "\1F4C4"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- pricing ---------- */
.price-band { background: linear-gradient(135deg, var(--brand-700), var(--brand-900)); border-radius: var(--radius); color: #fff; padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.price-band .amount { font-size: 2.4rem; font-weight: 800; color: #FFB09C; }
.price-band ul { list-style: none; display: grid; gap: 6px; font-size: .92rem; }
.price-band ul li::before { content: "\2713  "; color: #C7D2FE; font-weight: 800; }

/* ---------- comparison table ---------- */
.cmp-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table.cmp { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
table.cmp th, table.cmp td { padding: 14px 18px; text-align: left; font-size: .93rem; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.55; }
table.cmp th { background: var(--brand-900); color: #fff; white-space: nowrap; }
table.cmp tr:nth-child(even) td { background: var(--slate-50, #F8FAFC); }
table.cmp td:first-child { font-weight: 700; }
table.cmp td:nth-child(2) { color: var(--brand-700); font-weight: 700; }
table.cmp td:nth-child(3) { color: var(--ink-400); }
table.cmp tr:hover td { background: var(--brand-50); }

/* ---------- reviews ---------- */
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.review::before { content: "\201C"; position: absolute; top: 6px; right: 18px; font-size: 3.4rem; font-weight: 800; color: var(--brand-100); line-height: 1; pointer-events: none; }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.review .stars { color: var(--accent-500); letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-size: .93rem; color: var(--ink-600); font-style: italic; line-height: 1.65; }
.review .who { margin-top: auto; padding-top: 14px; font-weight: 800; font-size: .89rem; font-style: normal; }
.review .who small { display: block; color: var(--ink-400); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 700; font-size: .97rem; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--brand-600); font-weight: 800; transition: transform .25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--brand-700); }
.faq-item .ans { padding: 0 20px 18px; color: var(--ink-600); font-size: .94rem; line-height: 1.7; max-width: 75ch; }
.faq-item[open] .ans { animation: ansIn .35s ease both; }
@keyframes ansIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-item { transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: var(--brand-100); }
.faq-item[open] { border-color: var(--brand-100); box-shadow: var(--shadow); }

/* ---------- links / related ---------- */
.pill-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-size: .86rem; font-weight: 600; color: var(--ink-600); transition: all .2s; }
.pill:hover { border-color: var(--brand-600); color: var(--brand-700); background: var(--brand-50); transform: translateY(-2px); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--brand-700) 0%, var(--brand-900) 70%); border-radius: var(--radius); padding: 44px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(244,89,59,.2); filter: blur(50px); top: -80px; right: -40px; animation: blob 10s ease-in-out infinite alternate; }
.cta-banner h2 { color: #fff; position: relative; }
.cta-banner p { color: #C7D2FE; margin: 10px auto 22px; max-width: 640px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-900); color: #CBD5E1; padding: 50px 0 90px; font-size: .9rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.site-footer a { color: #94A3B8; display: block; padding: 3px 0; }
.site-footer a:hover { color: #A5B4FC; }
.site-footer .bottom { border-top: 1px solid #1E293B; margin-top: 36px; padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #64748B; font-size: .82rem; }

/* ---------- floating contact ---------- */
.float-stack { position: fixed; right: 18px; bottom: 84px; z-index: 90; display: grid; gap: 12px; justify-items: end; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; cursor: pointer; border: 0; box-shadow: 0 8px 22px rgba(15,23,42,.3); transition: transform .2s; text-decoration: none; }
.fab:hover { transform: scale(1.1); }
.fab-wa { background: #25D366; color: #fff; position: relative; }
.fab-wa::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 3px solid rgba(37,211,102,.5); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.85); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } }
.fab-contact { background: linear-gradient(135deg, var(--accent-500), var(--accent-600)); color: #fff; }
/* ---------- floating mini enquiry form ---------- */
.mini-form { position: fixed; right: 18px; bottom: 84px; z-index: 95; width: 300px; max-width: calc(100vw - 36px); background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; display: none; animation: floatIn .35s ease both; border: 1px solid var(--line); }
.mini-form.open { display: block; }
.mini-head { background: linear-gradient(135deg, var(--brand-600), var(--brand-700)); color: #fff; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mini-head b { font-size: .95rem; display: block; }
.mini-head small { font-size: .74rem; opacity: .85; }
.mini-min { background: rgba(255,255,255,.2); border: 0; color: #fff; width: 26px; height: 26px; border-radius: 7px; font-size: 1.2rem; line-height: 1; cursor: pointer; flex-shrink: 0; transition: background .2s; }
.mini-min:hover { background: rgba(255,255,255,.35); }
.mini-body { padding: 14px; max-height: 60vh; overflow-y: auto; }
.mini-form.minimised .mini-body { display: none; }
.mini-form.minimised { width: 250px; }
.mini-form.minimised .mini-min { transform: rotate(0); }

/* Floating call-back form is DESKTOP ONLY.
   On a phone or tablet the screen is small enough that a floating panel
   covers the content someone came to read, and the same action is already
   one tap away: the header Call Now button (shown at these widths) and,
   below 640px, the sticky Call / WhatsApp / Enquire bar. The contact FAB
   goes with it - it exists only to open this panel, and a button that opens
   nothing is worse than no button. */
@media (max-width: 960px) {
  .mini-form, .mini-form.open, .fab-contact { display: none !important; }
}
/* Below 640px the sticky bar already carries WhatsApp, so the FAB is
   duplicate furniture over the content. Tablets keep it - they have no
   sticky bar. */
@media (max-width: 640px) {
  .float-stack { display: none !important; }
}

/* ---------- notice analyser result toolbar ---------- */
.an-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }
.an-toolbar .eng-btn { text-decoration: none; }

/* ---------- exit-intent modal (desktop) ----------
   Promotes the existing floating panel to a centred modal: same form, same
   listeners, different position. The backdrop deliberately has no click-to-
   close - the owner wants Skip to be the explicit way out (Esc also works,
   for accessibility). */
.exit-backdrop {
  position: fixed; inset: 0; z-index: 96;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(2px);
  animation: exitFade .25s ease both;
}
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }
.mini-form.exit-mode {
  display: block;
  right: auto; bottom: auto;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 97;
  width: 340px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .45);
  animation: exitPop .3s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes exitPop {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.94); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.mini-form.exit-mode .mini-min { display: none; }   /* Skip is the only exit */
.exit-skip {
  display: block;
  width: 100%;
  padding: 11px 0 13px;
  background: none;
  border: 0;
  border-top: 1px solid var(--line, #E5E7EB);
  color: var(--ink-400, #94A3B8);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.exit-skip:hover { color: var(--ink-600, #475569); text-decoration: underline; }

/* ---------- mobile read-more ----------
   Long prose sections are collapsed to a preview on small screens with a
   toggle. CONTENT IS NEVER REMOVED - it is the same HTML, clamped with CSS
   and expanded on tap, so search engines and desktop readers see everything.
   JS adds .rm-clamp only on mobile; without JS nothing is ever hidden. */
.rm-wrap { position: relative; }
.rm-wrap.rm-clamp .rm-body {
  max-height: 10.2em;            /* ~6 lines of body text */
  overflow: hidden;
}
.rm-wrap.rm-clamp .rm-body::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2.4em;
  height: 3.4em;
  background: linear-gradient(180deg, rgba(255,255,255,0), var(--bg, #F8FAFC));
  pointer-events: none;
}
section.alt .rm-wrap.rm-clamp .rm-body::after,
.card .rm-wrap.rm-clamp .rm-body::after {
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
}
.rm-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--brand-100, #E0E7FF);
  background: var(--brand-50, #EEF2FF);
  color: var(--brand-700, #3730A3);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  font-family: inherit;
}
.rm-toggle::after { content: "\25BE"; font-size: .8em; transition: transform .25s; }
.rm-wrap:not(.rm-clamp) .rm-toggle::after { transform: rotate(180deg); }
.mini-form.minimised .mini-head { cursor: pointer; }
.mini-lead input { width: 100%; padding: 9px 12px; border: 1.5px solid var(--line); border-radius: 8px; font-family: inherit; font-size: .88rem; background: var(--bg); margin-bottom: 8px; }
.mini-lead input:focus { outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 3px rgba(79,70,229,.15); background: #fff; }
.mini-lead .btn { width: 100%; padding: 10px; font-size: .88rem; }
.mini-lead .hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.mini-row { display: flex; gap: 8px; margin-top: 10px; }
.mini-row a { flex: 1; text-align: center; padding: 8px 4px; border-radius: 8px; font-weight: 800; font-size: .78rem; color: #fff; }
.mini-call { background: var(--brand-600); }
.mini-wa { background: #25D366; }
.mini-note { font-size: .72rem; color: var(--ink-400); text-align: center; margin-top: 8px; }

/* ---------- disclaimer consent bar ---------- */
.disclaimer-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 130; background: var(--ink-900); color: #CBD5E1; padding: 14px 0; box-shadow: 0 -6px 24px rgba(15,23,42,.3); display: none; }
.disclaimer-bar.show { display: block; animation: floatIn .4s ease both; }
.disclaimer-bar .container { display: flex; align-items: center; gap: 18px; justify-content: space-between; flex-wrap: wrap; }
.disclaimer-bar .db-text { font-size: .84rem; line-height: 1.55; flex: 1; min-width: 260px; }
.disclaimer-bar .db-text b { color: #fff; }
.disclaimer-bar .db-text a { color: #A5B4FC; text-decoration: underline; }
.disclaimer-bar .btn { flex-shrink: 0; padding: 10px 22px; }

/* ---------- footer disclaimer ---------- */
.footer-disclaimer { border-top: 1px solid #1E293B; margin-top: 34px; padding-top: 20px; font-size: .8rem; line-height: 1.65; color: #64748B; }
.footer-disclaimer b { color: #94A3B8; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; }
.footer-disclaimer a { display: inline; color: #94A3B8; text-decoration: underline; }

.contact-pop { position: fixed; right: 18px; bottom: 150px; z-index: 95; width: 320px; max-width: calc(100vw - 36px); background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 22px; display: none; animation: floatIn .35s ease both; }
.contact-pop.open { display: block; }
.contact-pop h3 { margin-bottom: 4px; }
.contact-pop .row { display: flex; gap: 10px; margin: 12px 0; }
.contact-pop .row a { flex: 1; text-align: center; padding: 10px; border-radius: 10px; font-weight: 700; font-size: .85rem; color: #fff; }
.contact-pop .row .call { background: var(--brand-600); }
.contact-pop .row .wa { background: #25D366; }
.contact-pop .close { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 1.3rem; color: var(--ink-400); cursor: pointer; }

/* ---------- mobile sticky bar ---------- */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; display: none; grid-template-columns: 1fr 1fr 1fr; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -6px 18px rgba(15,23,42,.12); }
.sticky-bar a { padding: 13px 6px; text-align: center; font-weight: 800; font-size: .85rem; }
.sticky-bar .s-call { color: var(--brand-700); }
.sticky-bar .s-wa { background: #25D366; color: #fff; }
.sticky-bar .s-form { background: var(--accent-500); color: #fff; }

/* ---------- fully clickable service tiles ----------
   The heading anchor is stretched over the whole card, so a click anywhere
   on the tile follows it. Keeps one real link per tile (good for crawlers
   and screen readers) instead of wrapping the card in a second anchor. */
.card-link { position: relative; cursor: pointer; }
.card-link h3 > a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}
.card-link:hover h3 > a { color: var(--accent-600); }
.card-link:hover .svc-more { color: var(--accent-600); }
.card-link:hover .svc-more::after { transform: translateX(4px); }
.card-link:focus-within { outline: 2px solid var(--brand-600); outline-offset: 3px; }
/* keep real controls above the stretched overlay if any are ever added */
.card-link .price-tag { position: relative; z-index: 2; }

/* ---------- services page tiles ---------- */
.svc-points { list-style: none; margin: 4px 0 0; display: grid; gap: 7px; }
.svc-points li { position: relative; padding-left: 24px; font-size: .89rem; color: var(--ink-600); line-height: 1.5; }
.svc-points li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%; background: var(--brand-50); color: var(--brand-700); font-size: .68rem; font-weight: 800; display: grid; place-items: center; }
.svc-more { display: inline-block; margin-top: 10px; font-size: .86rem; font-weight: 800; color: var(--brand-700); transition: color .2s; }
.svc-more::after { content: " \2192"; display: inline-block; transition: transform .25s ease; }
.svc-more:hover { color: var(--accent-600); }

/* ---------- animated "Notice Analyser" nav item ---------- */
/* ---------- GST Refund nav pill ----------
   Deliberately a DIFFERENT character from .nav-tool. Two competing shine
   sweeps in one navbar read as clutter and cancel each other out, so this
   one is a solid coral pill whose motion is a "money coming back" cue:
   the icon rotates back on itself and a small dot travels into it. Quieter
   per second, but it holds its own next to the analyser. */
.nav-refund {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 11px !important;
  border-radius: 999px;
  font-weight: 800 !important;
  color: var(--accent-600, #D9451F) !important;
  background: linear-gradient(135deg, #FFF1ED 0%, #FFE4DC 100%);
  border: 1.5px solid #FFC9BA;
  box-shadow: 0 2px 8px rgba(244,89,59,.16);
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.nav-refund .nav-refund-ico {
  display: inline-flex;
  color: var(--accent-500, #F4593B);
  animation: refundSpin 6s ease-in-out infinite;
}
/* the arrow "returns" - a deliberate reverse rotation, not a spinner */
@keyframes refundSpin {
  0%, 68%, 100% { transform: rotate(0); }
  80%           { transform: rotate(-42deg); }
  90%           { transform: rotate(6deg); }
}
.nav-refund .nav-refund-txt { position: relative; z-index: 1; }
/* a coin travelling back into the icon */
.nav-refund .nav-refund-dot {
  position: absolute;
  right: 9px;
  top: 50%;
  width: 5px; height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--accent-500, #F4593B);
  opacity: 0;
  animation: refundDot 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes refundDot {
  0%, 60%   { transform: translateX(0);     opacity: 0; }
  68%       { transform: translateX(0);     opacity: 1; }
  86%       { transform: translateX(-64px); opacity: 1; }
  92%, 100% { transform: translateX(-70px); opacity: 0; }
}
.nav-refund:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #FFE4DC 0%, #FFD3C6 100%);
  border-color: var(--accent-500, #F4593B);
  box-shadow: 0 5px 15px rgba(244,89,59,.3);
}
/* cancel the shared underline sweep that .nav a::after applies */
.nav a.nav-refund::after { content: none; }
@media (prefers-reduced-motion: reduce) {
  .nav-refund .nav-refund-ico, .nav-refund .nav-refund-dot { animation: none; }
  .nav-refund .nav-refund-dot { display: none; }
}
@media (max-width: 900px) { .nav-refund { align-self: flex-start; } }

.nav-tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 12px !important;
  border-radius: 999px;
  font-weight: 800 !important;
  isolation: isolate;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
/* flowing colour wash behind the pill */
.nav-tool::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(115deg,
    var(--brand-50) 0%, var(--brand-100) 22%, var(--accent-100) 45%,
    #FFE9C7 60%, var(--brand-100) 80%, var(--brand-50) 100%);
  background-size: 320% 100%;
  animation: navFlow 7s linear infinite;
}
/* thin gradient ring that travels with the wash */
.nav-tool::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(115deg, var(--brand-600), var(--accent-500), #F59E0B, var(--brand-600));
  background-size: 320% 100%;
  animation: navFlow 7s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: .85;
}
@keyframes navFlow { to { background-position: 320% 0; } }

/* periodic shine sweep — the main attention grabber */
.nav-tool .nav-tool-shine {
  position: absolute;
  top: 0; bottom: 0;
  width: 45%;
  left: -60%;
  z-index: -1;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.95), transparent);
  transform: skewX(-18deg);
  animation: navShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes navShine {
  0%, 55%  { left: -60%; }
  85%, 100% { left: 130%; }
}
/* gentle "look at me" breath, spaced out so it is not annoying */
.nav-tool { animation: navBreath 6s ease-in-out infinite; }
@keyframes navBreath {
  0%, 82%, 100% { transform: translateY(0) scale(1); }
  88%           { transform: translateY(-2px) scale(1.055); }
  94%           { transform: translateY(0) scale(1.015); }
}
.nav-tool .nav-tool-ico {
  display: inline-flex;
  color: var(--accent-600);
  animation: navIco 4.5s ease-in-out infinite;
}
@keyframes navIco {
  0%, 70%, 100% { transform: rotate(0) scale(1); }
  78%           { transform: rotate(-12deg) scale(1.18); }
  86%           { transform: rotate(9deg) scale(1.1); }
}

/* the label itself carries a moving gradient */
.nav-tool .nav-tool-txt {
  background: linear-gradient(100deg, var(--brand-700) 0%, var(--accent-600) 35%,
              var(--brand-600) 60%, var(--brand-700) 100%);
  background-size: 260% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: navFlow 6s linear infinite;
}
.nav-tool .nav-tool-badge {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  border-radius: 999px;
  padding: 2px 7px;
  line-height: 1.4;
  box-shadow: 0 0 0 0 rgba(244,89,59,.55);
  animation: navBadge 2.4s ease-out infinite;
}
@keyframes navBadge {
  0%   { box-shadow: 0 0 0 0 rgba(244,89,59,.5); }
  60%  { box-shadow: 0 0 0 7px rgba(244,89,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,89,59,0); }
}
.nav-tool:hover {
  animation: none;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 22px rgba(79,70,229,.32);
}
.nav-tool:hover::before { animation-duration: 2.2s; }
.nav-tool:hover::after  { animation-duration: 2.2s; opacity: 1; }
.nav-tool:hover .nav-tool-txt { animation-duration: 2s; }
/* suppress the shared nav underline on this pill */
.nav a.nav-tool::after { bottom: auto; height: auto; width: auto; }
.nav a.nav-tool:hover::after { width: auto; }

@media (prefers-reduced-motion: reduce) {
  .nav-tool, .nav-tool::before, .nav-tool::after, .nav-tool .nav-tool-shine,
  .nav-tool .nav-tool-txt, .nav-tool .nav-tool-badge, .nav-tool .nav-tool-ico { animation: none; }
  .nav-tool .nav-tool-shine { display: none; }
  .nav-tool .nav-tool-txt { color: var(--brand-700); }
}
@media (max-width: 960px) {
  .nav-tool { align-self: flex-start; }
}

/* ---------- 3-digit captcha ---------- */
.cap-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cap-label { font-size: .85rem; color: var(--ink-600); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.cap-label b { font-size: 1.15rem; letter-spacing: .22em; color: var(--brand-700); background: var(--brand-50); border: 1px dashed var(--brand-600); border-radius: 7px; padding: 3px 10px; font-family: 'Courier New', monospace; user-select: none; }
.cap-refresh { background: none; border: 0; color: var(--ink-400); font-size: 1.05rem; cursor: pointer; padding: 2px 4px; line-height: 1; transition: color .2s, transform .3s; }
.cap-refresh:hover { color: var(--brand-600); transform: rotate(180deg); }
.cap-row input { flex: 1; min-width: 90px; text-align: center; letter-spacing: .2em; font-weight: 700; }

/* ---------- post-analysis offer popup ---------- */
.offer-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.6); z-index: 140; display: none; align-items: center; justify-content: center; padding: 20px; }
.offer-overlay.show { display: flex; animation: fadeIn .25s ease both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.offer-card { background: var(--white); border-radius: 18px; max-width: 520px; width: 100%; padding: 34px 30px; position: relative; box-shadow: var(--shadow-lg); animation: floatIn .35s ease both; text-align: center; max-height: 90vh; overflow-y: auto; }
.offer-card .offer-close { position: absolute; top: 12px; right: 16px; background: none; border: 0; font-size: 1.6rem; color: var(--ink-400); cursor: pointer; line-height: 1; }
.offer-card .offer-close:hover { color: var(--ink-900); }
.offer-badge { display: inline-block; background: var(--accent-100); color: #9A3412; border: 1px solid #FFB09C; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.offer-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.offer-price { font-size: 2.6rem; font-weight: 800; color: var(--brand-700); line-height: 1.1; margin: 14px 0 4px; }
.offer-price small { font-size: 1rem; font-weight: 700; color: var(--ink-600); }
.offer-sub { color: var(--ink-600); font-size: .95rem; margin-bottom: 18px; }
.offer-list { list-style: none; text-align: left; display: grid; gap: 8px; margin: 0 auto 22px; max-width: 380px; }
.offer-list li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink-900); }
.offer-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-50); color: var(--brand-700); font-size: .7rem; font-weight: 800; display: grid; place-items: center; }
.offer-actions { display: grid; gap: 10px; }
.offer-actions .btn { width: 100%; }
.offer-note { font-size: .8rem; color: var(--ink-400); margin-top: 14px; }
@media (max-width: 520px) { .offer-card { padding: 28px 20px; } .offer-price { font-size: 2.1rem; } }

/* ---------- analyser result: severity + draft ---------- */
.sev-box { border-left: 5px solid; border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; }
.sev-box p { font-size: .92rem; margin-top: 4px; }
.sev-tag { display: inline-block; color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .1em; padding: 3px 11px; border-radius: 999px; margin-bottom: 8px; }
.draft-box { position: relative; background: var(--bg); border: 1px solid var(--line); border-left: 4px solid var(--brand-600); border-radius: 10px; padding: 22px 24px 20px; margin-bottom: 26px; font-size: .92rem; line-height: 1.7; }
.draft-box p { margin-bottom: 12px; }
.draft-copy { position: absolute; top: 12px; right: 14px; background: var(--brand-600); color: #fff; border: 0; border-radius: 7px; padding: 5px 13px; font-size: .78rem; font-weight: 800; cursor: pointer; transition: background .2s; }
.draft-copy:hover { background: var(--brand-700); }

/* ---------- notice analyser tool ---------- */
.tool-form { display: grid; gap: 11px; }
.tool-form input, .tool-form select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .93rem; background: var(--bg); transition: border .2s, box-shadow .2s; }
.tool-form input:focus, .tool-form select:focus { outline: none; border-color: var(--brand-600); box-shadow: 0 0 0 3px rgba(79,70,229,.15); background: #fff; }
.tool-form .hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.file-drop { display: block; border: 2px dashed var(--brand-600); border-radius: 10px; padding: 18px 14px; text-align: center; font-size: .88rem; font-weight: 700; color: var(--brand-700); background: var(--brand-50); cursor: pointer; transition: background .2s, border-color .2s; }
.file-drop:hover { background: var(--brand-100); }
.file-drop input[type=file] { display: none; }
#resultBody h3 { margin: 26px 0 8px; }

/* ---------- law desk ---------- */
.law-card { border-left: 5px solid var(--brand-600); }
.law-badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.law-cite { font-size: .82rem; color: var(--ink-400); font-weight: 600; margin: 4px 0 10px; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
.cinfo { display: grid; gap: 14px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.cinfo-item:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.cinfo-ico { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--brand-50), var(--brand-100)); color: var(--brand-700); display: grid; place-items: center; }
.cinfo-body { display: grid; gap: 2px; min-width: 0; }
.cinfo-label { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); }
.cinfo-value { font-weight: 800; font-size: 1.02rem; color: var(--ink-900); overflow-wrap: anywhere; }
.cinfo-value a { color: var(--brand-700); }
.cinfo-body small { color: var(--ink-600); font-size: .84rem; line-height: 1.5; }
.cinfo-note { background: var(--accent-100); border: 1px solid #FFB09C; border-radius: 12px; padding: 14px 18px; font-size: .9rem; font-weight: 600; color: #9A3412; }
.contact-grid .lead-card { position: sticky; top: 130px; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .lead-card { position: static; }
}

/* ---------- misc ---------- */
.jurisdiction { background: var(--brand-50); border: 1px solid var(--brand-100); border-left: 5px solid var(--brand-600); border-radius: 10px; padding: 18px 22px; font-size: .92rem; color: var(--ink-600); }
.jurisdiction b { color: var(--ink-900); }
.snippet-box { background: var(--accent-100); border-left: 5px solid var(--accent-500); border-radius: 10px; padding: 18px 22px; font-size: 1rem; font-weight: 600; }
.updates-ticker { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: 10px; padding: 14px 18px; font-size: .88rem; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trustbar .container { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 14px; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: inline-block; }
}
@media (max-width: 640px) {
  section { padding: 40px 0; }
  .grid-3, .grid-2, .doc-list, .steps { grid-template-columns: 1fr; }
  .sticky-bar { display: grid; }
  .site-footer { padding-bottom: 120px; }
  .float-stack { bottom: 130px; }
  .contact-pop { bottom: 196px; }
  .mini-form { bottom: 130px; right: 12px; width: calc(100vw - 24px); max-width: 320px; }
  .mini-form.minimised { width: auto; }
  .disclaimer-bar { padding: 12px 0 66px; }
  .disclaimer-bar .container { gap: 10px; }
  .disclaimer-bar .btn { width: 100%; }
  .price-band { padding: 26px; }
}
