/* Web Solutions — site.css */
:root {
  --red: #FF393E;
  --red-ink: #D8262C;       /* red for small text on white (AA) */
  --red-soft: #FFF1F1;
  --ink: #1d1f23;
  --text: #4a4d52;
  --muted: #6b6f75;
  --line: #e7e7ea;
  --bg: #ffffff;
  --tint: #f8f8f9;
  --dark: #1b1b1d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 20, 30, .08);
  --wrap: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 300 1.0625rem/1.7 "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-ink); text-decoration: none; }
a:hover { color: var(--red); }
h1, h2, h3, h4 { color: var(--ink); font-weight: 400; line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; font-weight: 500; }
p { margin: 0 0 1.1em; }
strong { font-weight: 500; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; border-radius: 6px; }
.skip:focus { left: 8px; color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .8em 1.5em; border-radius: 999px; border: 2px solid transparent;
  font-weight: 500; font-size: 1rem; line-height: 1.2; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, color .25s, box-shadow .25s;
}
.btn-lg { padding: 1em 1.9em; font-size: 1.075rem; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(255, 57, 62, .28); }
.btn-primary:hover { background: #e72e33; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 57, 62, .34); }
.btn-ghost { border-color: #d6d6da; color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--red); color: var(--red-ink); transform: translateY(-2px); }
.link-arrow { font-weight: 500; display: inline-flex; align-items: center; gap: .4em; }
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow.on-dark { color: #fff; }

.eyebrow { color: var(--red-ink); font-weight: 500; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8em; }

/* Top bar */
.topbar { background: var(--tint); border-bottom: 1px solid var(--line); font-size: .8rem; color: var(--muted); }
.topbar-in { display: flex; justify-content: flex-end; gap: 28px; padding-top: 7px; padding-bottom: 7px; }
.topbar a, .topbar span { color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--red-ink); }
.topbar svg { width: 13px; height: 13px; color: var(--red); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(0, 0, 0, .05); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand { display: block; color: #666; flex-shrink: 0; }
.brand .logo { width: 220px; height: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; border: 0; background: none;
  font: 400 .95rem/1 "Poppins", sans-serif; color: #555; cursor: pointer; border-radius: 8px;
}
.nav-link:hover, .nav-link[aria-expanded="true"], .has-sub.is-active > .nav-link, .nav-link[aria-current="page"] { color: var(--red-ink); }
.chev { width: 11px; height: 8px; transition: transform .25s; }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.sub {
  list-style: none; margin: 0; padding: 10px; position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .25s var(--ease), visibility .2s;
}
.sub::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.has-sub.open > .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--ink); font-size: .92rem; font-weight: 400; }
.sub a:hover, .sub a[aria-current="page"] { background: var(--red-soft); color: var(--red-ink); }
.nav-cta { padding: .7em 1.3em; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 10px; border-radius: 8px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .topbar { display: none; }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .header-in { min-height: 70px; }
  .brand .logo { width: 180px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 70px 0 0 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 24px 32px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .25s, transform .3s var(--ease), visibility .25s;
  }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .menu-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 4px; font-size: 1.1rem; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 10px; display: none; min-width: 0; }
  .has-sub.open > .sub { display: block; }
  .nav-cta { margin-top: 20px; }
}

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fcfcfc, #fff); border-bottom: 1px solid var(--line); }
.hero-in { position: relative; padding-top: clamp(56px, 9vw, 120px); padding-bottom: clamp(56px, 8vw, 110px); }
.hero h1 { max-width: 13em; }
.hero .lead { font-size: clamp(1.1rem, 1.8vw, 1.45rem); max-width: 34em; color: var(--text); margin-bottom: 1.8em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-facts { list-style: none; padding: 0; margin: 48px 0 0; display: flex; flex-wrap: wrap; gap: 12px 36px; font-size: .92rem; color: var(--muted); }
.hero-facts strong { color: var(--ink); display: block; font-size: 1rem; }
.hero-lines { position: absolute; right: -20px; bottom: 30px; width: min(62vw, 760px); height: auto; opacity: .9; pointer-events: none; }
.hero-lines polyline, .hero-lines circle { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw 2.6s var(--ease) forwards; }
.hero-lines polyline:nth-child(2n) { animation-delay: .25s; }
.hero-lines polyline:nth-child(3n) { animation-delay: .5s; }
.hero-lines circle { animation-delay: 1.4s; animation-duration: 1.2s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (max-width: 720px) { .hero-lines { opacity: .35; width: 120vw; } }

/* Sections */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.h-small { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 500; margin-top: 1.6em; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split-rev .split-text { order: 2; }
.split-media { margin: 0; }
.split-media img { width: 100%; border-radius: var(--radius); }
.tilt-l img, .tilt-r img { transition: transform .5s var(--ease); }
.tilt-l img { transform: perspective(900px) rotateY(-7deg); }
.tilt-r img { transform: perspective(900px) rotateY(7deg); }
.tilt-l:hover img, .tilt-r:hover img { transform: none; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-rev .split-text { order: 0; }
  .split-media { order: -1; }
}

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px 28px; }
.ticks.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ticks li { position: relative; padding-left: 28px; color: var(--ink); font-weight: 400; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 50%; background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.2 2.2 4.8-5' fill='none' stroke='%23FF393E' stroke-width='1.8'/%3E%3C/svg%3E") center/100% no-repeat; }
@media (max-width: 520px) { .ticks.cols-2 { grid-template-columns: 1fr; } }

.points { margin: 0; display: grid; gap: 22px; }
.points > div { padding-left: 20px; border-left: 3px solid var(--red); }
.points dt { color: var(--ink); font-weight: 500; font-size: 1.1rem; margin-bottom: 4px; }
.points dd { margin: 0; }

/* Service cards */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px 26px; color: var(--text); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #f5b5b7; color: var(--text); }
.card .icon { width: 64px; height: 64px; color: var(--red); margin-bottom: 22px; fill: currentColor; transition: color .35s; }
.card:hover .icon { color: #3fb2e6; }
.card h3 { font-size: 1.2rem; font-weight: 400; }
.card h3 span { display: block; color: var(--red-ink); font-weight: 500; font-size: 1.55rem; }
.card p { font-size: .96rem; flex: 1; }
.card-more { font-weight: 500; color: var(--red-ink); font-size: .95rem; }
.card-more::after { content: " →"; }
@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* Dark bands */
.band { position: relative; padding: clamp(64px, 9vw, 120px) 0; color: #e9e9ec; background: var(--dark) var(--bg) center / cover no-repeat; }
.band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 15, 18, .72), rgba(15, 15, 18, .35)); }
.band > .wrap { position: relative; }
.band h2 { color: #fff; }
.band h3 { color: #fff; font-size: 1.1rem; margin-top: 1.3em; }
.band .eyebrow { color: #ff8a8d; }
.panel { background: rgba(20, 20, 24, .55); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); }
.panel-narrow { max-width: 620px; }
.band-vps { background-attachment: fixed; }
@media (max-width: 860px) { .band-vps { background-attachment: scroll; } }

/* CTA */
.cta { text-align: center; background: radial-gradient(ellipse at top, #fff3f3, #fff 60%); }
.cta-in { max-width: 760px; }
.cta p { font-size: 1.15rem; margin-bottom: 1.8em; }
.cta .hero-actions { justify-content: center; }

/* Footer */
.site-footer { background: #202022; color: #b9b9bf; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-top: 72px; padding-bottom: 56px; }
.brand-footer { color: #d0d0d0; margin-bottom: 22px; }
.brand-footer .logo { width: 230px; }
.pillars { color: #8d8d94; letter-spacing: .04em; }
.footer-h { color: #fff; font-size: 1.05rem; font-weight: 500; margin-bottom: 1.1em; }
.footer-links, .footer-contact, .social { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.site-footer a { color: #d6d6db; }
.site-footer a:hover { color: #fff; }
.footer-links a { display: inline-block; transition: transform .25s var(--ease), color .25s; }
.footer-links a:hover { transform: translateX(4px); color: #ff6165; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact .tag { display: inline-block; min-width: 34px; color: var(--red); font-weight: 600; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #333338; color: #fff; transition: background .25s, transform .25s var(--ease); }
.social a:hover { background: var(--red); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { background: #151517; font-size: .85rem; color: #9a9aa1; }
.footer-bottom-in { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; }
.legal { display: flex; gap: 18px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-lines polyline, .hero-lines circle { stroke-dashoffset: 0; }
}

/* ---------- Inner pages ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; background: var(--dark) var(--bg, none) center / cover no-repeat; padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 8vw, 110px); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,15,18,.82) 20%, rgba(15,15,18,.35)); }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.8rem); max-width: 16em; }
.page-hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 40em; color: #e4e4e8; margin-bottom: 1.6em; }
.page-hero .eyebrow { color: #ff8a8d; }
.page-hero.light { color: var(--text); background: linear-gradient(180deg, #fcfcfc, #fff); border-bottom: 1px solid var(--line); }
.page-hero.light::before { display: none; }
.page-hero.light h1 { color: var(--ink); }
.page-hero.light .lead { color: var(--text); }
.page-hero.light .eyebrow { color: var(--red-ink); }

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose img { border-radius: var(--radius); margin: 1.6em 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #f5b5b7; }
.tile h3 { font-size: 1.15rem; }
.tile p:last-child { margin-bottom: 0; }
.tile .num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--red-soft); color: var(--red-ink); font-weight: 600; margin-bottom: 14px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
@media (max-width: 960px) { .pricing { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.plan { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 28px; position: relative; }
.plan.featured { border: 2px solid var(--red); box-shadow: 0 18px 40px rgba(255, 57, 62, .14); }
.plan .badge { position: absolute; top: -13px; left: 28px; background: var(--red); color: #fff; font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.plan h3 { font-size: 1.3rem; margin-bottom: .3em; }
.plan .blurb { font-size: .94rem; min-height: 3.2em; }
.plan .price { font-size: 2.6rem; font-weight: 500; color: var(--ink); line-height: 1; margin: .3em 0 .2em; }
.plan .price small { font-size: 1rem; font-weight: 300; color: var(--muted); }
.plan .was { color: var(--muted); font-size: .9rem; margin-bottom: 1.2em; }
.plan .was s { color: #a0a0a6; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.plan li { position: relative; padding: 7px 0 7px 28px; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.plan li::before { content: ""; position: absolute; left: 0; top: 11px; width: 16px; height: 16px; border-radius: 50%; background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.2 2.2 4.8-5' fill='none' stroke='%23FF393E' stroke-width='1.8'/%3E%3C/svg%3E") center/100% no-repeat; }
.plan .btn { width: 100%; }
.note { font-size: .85rem; color: var(--muted); }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 620px; }
.table th, .table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table thead th { background: var(--tint); color: var(--ink); font-weight: 500; }
.table tbody tr:last-child td { border-bottom: 0; }
.table td:first-child { color: var(--ink); font-weight: 400; }
.table .yes { color: #1f9d55; font-weight: 600; }
.table .no { color: #b3b3b8; }
.table tfoot td { font-weight: 500; color: var(--ink); background: var(--tint); }

/* Forms */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 500; color: var(--ink); font-size: .92rem; margin-bottom: 6px; }
.field label .opt { color: var(--muted); font-weight: 300; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid #d9d9de; border-radius: 10px; padding: 12px 14px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(255, 57, 62, .12); }
.checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.checks label { display: inline-flex; align-items: center; gap: 8px; font-weight: 300; margin: 0; }
.checks input { width: 18px; height: 18px; accent-color: var(--red); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { grid-column: 1 / -1; padding: 14px 18px; border-radius: 10px; display: none; }
.form-status.ok { display: block; background: #eaf7ef; color: #16643a; }
.form-status.err { display: block; background: #fdecec; color: #9b1c20; }

.contact-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--tint); border-radius: var(--radius); padding: 28px; }
.contact-card h2 { font-size: 1.25rem; font-weight: 500; }
.contact-card h3 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-ink); margin: 1.5em 0 .4em; }
.contact-card address { font-style: normal; }
.contact-card p { margin-bottom: .4em; }

/* Blog */
.post-card { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; color: var(--text); transition: box-shadow .35s, transform .35s var(--ease); }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); color: var(--text); }
.post-card img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.post-card .body { padding: 28px 32px 28px 0; }
@media (max-width: 760px) { .post-card { grid-template-columns: 1fr; } .post-card .body { padding: 0 24px 28px; } }
.meta { font-size: .88rem; color: var(--muted); margin-bottom: .8em; }
.article { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 1.7em; }
.article ol li, .article ul li { margin-bottom: .7em; }
.callout { background: var(--red-soft); border-left: 4px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; margin-top: 2.4em; }
.callout p { margin-bottom: .9em; color: var(--ink); }
.form-compact { grid-template-columns: 1fr; gap: 14px; }
.form-compact .field label { font-weight: 400; }
.form-compact .field input, .form-compact .field select, .form-compact .field textarea { margin-top: 6px; }
.legacy-body #get_in_contact form { background: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 24px; }

/* =====================================================================
   Classic Web Solutions look (restored from the original theme),
   polished and written mobile-first. Overrides the rules above.
   ===================================================================== */
:root { --grey: #6c757d; --nav: #888; }
body { color: var(--grey); font-weight: 300; line-height: 1.7; }
p { line-height: 27px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Headings: red title + grey subtitle, as on the original site */
.h-red, .section h2, .band h2 { color: var(--red); font-weight: 400; font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.6rem); line-height: 1.2; margin-bottom: .25em; }
.subtitle { color: var(--grey); font-weight: 500; font-size: clamp(1.25rem, 1rem + 1vw, 1.65rem); line-height: 1.3; margin-bottom: .9em; }
.subtitle-sm { color: var(--grey); font-weight: 500; font-size: 1.2rem; }
.band .subtitle, .band h3 { color: #fff; }
.points dt { color: var(--grey); font-size: 1.3rem; }
.points > div { border-left-color: var(--red); }

/* Buttons: solid red, square-ish corners, bigger – no gloss */
.btn { border-radius: 6px; font-weight: 400; font-size: 1.15rem; padding: .65em 1.8em; box-shadow: none; letter-spacing: .01em; transition: background-color .25s, color .25s, border-color .25s, padding .3s; }
.btn-primary { background: var(--red); color: #fff; box-shadow: none; }
.btn-primary:hover, .btn-primary:focus-visible { background: #E33B3B; color: #fff; transform: none; box-shadow: none; }
.btn-xl { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); font-weight: 600; padding: .75em 1.6em; min-width: 210px; }
.btn-xl.btn-primary:hover { padding-left: 2.2em; padding-right: 2.2em; }
.btn-outline { background: #fff; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; transform: none; }
.btn-ghost { border-radius: 6px; }

/* Top contact bar – shown on every screen size */
.topbar { display: block; background: #fff; border-bottom: 0; font-size: .78rem; }
.topbar-in { justify-content: center; flex-wrap: wrap; gap: 6px 20px; padding-top: 6px; padding-bottom: 4px; }
.topbar a, .topbar span { color: #333; }
.topbar span { display: none; }
.topbar svg { width: 14px; height: 14px; }
@media (min-width: 768px) {
  .topbar { font-size: .85rem; }
  .topbar-in { justify-content: flex-end; gap: 42px; padding-top: 8px; }
  .topbar span { display: inline-flex; }
}

/* Header & menu – original uppercase grey menu, larger logo */
.site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid #e5e5e5; }
.header-in { min-height: 72px; }
.brand .logo { width: 190px; }
.nav-link { text-transform: uppercase; color: var(--nav); font-weight: 300; font-size: 1.15rem; letter-spacing: .01em; }
.nav-link:hover, .nav-link[aria-expanded="true"], .has-sub.is-active > .nav-link, .nav-link[aria-current="page"] { color: var(--red); }
.chev { display: none; }
.has-sub > .nav-link::after { content: ""; border-top: .35em solid currentColor; border-left: .32em solid transparent; border-right: .32em solid transparent; margin-left: .35em; transition: transform .25s; }
.has-sub > .nav-link[aria-expanded="true"]::after { transform: rotate(180deg); }
.nav-cta { text-transform: uppercase; font-size: 1.05rem; padding: .55em 1.3em; }
.sub a { font-size: 1.05rem; }

@media (max-width: 1199.98px) {
  .topbar { display: block; }
  .site-nav { position: fixed; inset: auto 0 0 0; top: var(--hdr, 100px); background: #fff; flex-direction: column; align-items: stretch; padding: 8px 24px 32px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s, transform .3s var(--ease), visibility .25s; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .menu-toggle { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 4px; font-size: 1.2rem; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 12px; display: none; min-width: 0; background: transparent; }
  .has-sub.open > .sub { display: block; }
  .sub a { color: var(--grey); padding: 10px 14px; }
  .nav-cta { margin-top: 22px; font-size: 1.2rem; padding: .8em; }
}
@media (min-width: 1200px) {
  .header-in { min-height: 96px; }
  .brand .logo { width: 290px; }
  .menu-toggle { display: none; }
  .site-nav { position: static; opacity: 1; visibility: visible; transform: none; flex-direction: row; padding: 0; overflow: visible; background: none; }
  .nav-list { flex-direction: row; }
  .nav-list > li { border: 0; }
  .nav-link { font-size: 1.3rem; padding: 10px 10px; }
  /* original red dropdown panel */
  .sub { background: #FB666B; border: 0; border-radius: 8px; padding: 8px; min-width: 270px; box-shadow: 0 14px 30px rgba(255, 57, 62, .25); }
  .sub a { color: #fff; border-radius: 6px; }
  .sub a:hover, .sub a[aria-current="page"] { background: #E33B3B; color: #fff; }
}

/* Hero – original sizes */
.hero { background: #fcfcfc; border-bottom: 1px solid #ddd; }
.hero-kicker { color: var(--red); font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem); font-weight: 400; line-height: 1.2; margin-bottom: .3em; }
.hero h1 { font-weight: 300; font-size: clamp(2.6rem, 1.4rem + 5.2vw, 5.4rem); line-height: 1.12; letter-spacing: -.01em; color: #212529; max-width: 12em; }
.hero .lead { font-size: clamp(1.2rem, 1rem + .9vw, 1.75rem); color: #333; font-weight: 300; line-height: 1.5; max-width: 30em; }
.hero-actions { align-items: center; gap: 18px 28px; }
.hero-link { font-size: clamp(1.15rem, 1rem + .5vw, 1.45rem); color: #333; font-weight: 400; }
.hero-link:hover { color: var(--red); }
.hero-link span { display: inline-block; transition: transform .25s; color: var(--red); }
.hero-link:hover span { transform: translateX(5px); }
.hero-lines { opacity: .7; width: 130vw; right: -30vw; }
@media (min-width: 768px) { .hero-lines { opacity: 1; width: min(62vw, 820px); right: -17px; bottom: 50px; } }

/* Service cards – original bordered cards with red/grey titles */
.section-tint:has(.cards) { background: #fff; }
.cards { gap: 24px; }
.card { align-items: center; text-align: center; border: 1px solid #dcdcdc; border-radius: 0; padding: 40px 28px 32px; box-shadow: none; transition: border-color .25s, background-color .25s, border-radius .25s, padding .4s; }
.card:hover { transform: none; box-shadow: none; border-color: #F39598; background: #FFFBFB; border-radius: 7px; padding-top: 28px; padding-bottom: 44px; }
.card h3 { font-size: 1.6rem; font-weight: 500; color: var(--grey); line-height: 1.25; margin-bottom: 22px; }
.card h3 span { color: var(--red); font-size: 2.3rem; font-weight: 500; }
.card .icon { width: auto; height: 125px; margin-bottom: 26px; color: var(--red); }
.card:hover .icon { color: #60C5F1; }
.card p { color: var(--grey); font-size: 1.05rem; line-height: 1.6; }
.card-btn { margin-top: 18px; font-size: 1.15rem; }
.card-more { display: none; }

/* Sections */
.split-text p { color: var(--grey); }
.split-text .btn { margin-top: 10px; }
.ticks li { color: #333; }
.cta p { color: var(--grey); }
.band .panel p { color: #e9e9ec; }
:root { --wrap: 1320px; }
.site-header .wrap, .topbar .wrap { max-width: 1680px; padding-left: clamp(16px, 3vw, 48px); padding-right: clamp(16px, 3vw, 48px); }
.nav-link, .nav-cta { white-space: nowrap; }
@media (max-width: 767.98px) {
  .topbar-in { flex-wrap: nowrap; gap: 16px; font-size: .74rem; }
  .topbar a { white-space: nowrap; }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .brand .logo { width: 240px; }
  .nav-link { font-size: 1.1rem; padding: 10px 8px; }
  .nav-cta { font-size: .95rem; padding: .55em 1em; }
}

/* Sub-menu: bigger, clearer text; quicker fade so it never looks see-through */
.sub { transition: opacity .12s, transform .18s var(--ease), visibility .12s; }
.has-sub > .nav-link::after { display: inline-block; transform-origin: 50% 50%; }
@media (min-width: 1200px) {
  .sub { background: #FB666B; min-width: 0; padding: 10px; }
  .sub a { font-size: 1.2rem; font-weight: 400; white-space: nowrap; padding: 11px 18px; letter-spacing: .01em; }
}
@media (max-width: 1199.98px) { .sub a { font-size: 1.15rem; } }

/* Compact page header (blog etc.) – classic red title + grey subtitle */
.page-hero.compact { padding: 36px 0 28px; background: #fcfcfc; }
.page-hero.compact h1 { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.2rem); margin-bottom: .15em; }
.page-hero.compact .subtitle { margin: 0; }
@media (min-width: 992px) { .page-hero.compact { padding: 56px 0 44px; } }

/* Blog listing */
.blog-list { padding-top: 40px; }
.blog-layout { display: grid; gap: 32px; }
@media (min-width: 992px) { .blog-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; align-items: start; } }
.posts { display: grid; gap: 32px; }
.blog .post-card { display: flex; flex-direction: column; border: 1px solid #dcdcdc; border-radius: 0; overflow: hidden; background: #fff; transition: border-color .25s, background-color .25s, border-radius .25s; }
.blog .post-card:hover { transform: none; box-shadow: none; border-color: #F39598; background: #FFFBFB; border-radius: 7px; }
.post-img { display: block; overflow: hidden; aspect-ratio: 16 / 8; background: #f2f2f2; }
.post-img img { width: 100%; height: 100%; object-fit: cover; min-height: 0; transition: transform .6s var(--ease); }
.post-card:hover .post-img img { transform: scale(1.04); }
.blog .post-card .body { padding: 24px 22px 28px; }
@media (min-width: 768px) { .blog .post-card .body { padding: 32px 36px 36px; } }
.post-card h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); font-weight: 400; margin-bottom: .2em; }
.post-card h2 a { color: var(--red); }
.post-card h2 a:hover { color: #E33B3B; }
.post-tags { display: flex; gap: 8px; margin-bottom: 14px; }
.post-tags span { font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--red); background: var(--red-soft); padding: 4px 10px; border-radius: 4px; }
.blog-aside { display: grid; gap: 24px; }
@media (min-width: 992px) { .blog-aside { position: sticky; top: calc(var(--hdr, 130px) + 20px); } }
.aside-box { border: 1px solid #dcdcdc; padding: 26px; background: #fff; }
.aside-h { font-size: 1.35rem !important; color: var(--grey) !important; font-weight: 500 !important; margin-bottom: .8em !important; }
.aside-links { list-style: none; margin: 0; padding: 0; }
.aside-links li { border-bottom: 1px solid #eee; }
.aside-links a { display: block; padding: 10px 0; color: #333; font-weight: 400; transition: color .2s, padding .25s; }
.aside-links a::before { content: "›"; color: var(--red); font-weight: 600; margin-right: 10px; }
.aside-links a:hover { color: var(--red); padding-left: 6px; }
.aside-cta { background: #fcfcfc; border-left: 3px solid var(--red); }
.aside-cta .btn { width: 100%; }
.aside-wa { display: block; text-align: center; margin-top: 12px; color: var(--grey); font-size: .95rem; }
.page-hero h1.h-red { color: var(--red); }
.blog .post-card { align-items: stretch; }

/* reCAPTCHA badge: keep it clear of the page edge on phones */
.grecaptcha-badge { z-index: 40; }
.rc-note { grid-column: 1 / -1; font-size: .8rem; color: var(--muted); margin: 0; }
.rc-note a { color: var(--muted); text-decoration: underline; }

/* =====================================================================
   v2: AI-era homepage sections (newsite2)
   ===================================================================== */
:root { --green: #3E9B3A; --green-soft: #EEF7EC; }
.leaf { display: inline-block; width: 1em; height: 1em; margin-right: .45em; vertical-align: -.12em;
  background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 3C9 3 4 8.5 4 15c0 1.6.4 3 1 4.2C7 13 11 9.6 16 8c-4 2.2-7.5 6.2-9.2 12.2.9.5 2 .8 3.2.8C17 21 21 14.5 20 3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 3C9 3 4 8.5 4 15c0 1.6.4 3 1 4.2C7 13 11 9.6 16 8c-4 2.2-7.5 6.2-9.2 12.2.9.5 2 .8 3.2.8C17 21 21 14.5 20 3z'/%3E%3C/svg%3E") center / contain no-repeat; }
.v2 .hero-kicker { color: var(--green); }
.v2 .hero h1 { max-width: 14em; font-size: clamp(2.4rem, 1.3rem + 4.4vw, 4.6rem); }
.center { text-align: center; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-soft { background: #fafafa; }
.nav-ext span { font-size: .8em; }
.nav-ext { color: var(--green) !important; }

/* Trust bar */
.trust { border-bottom: 1px solid #e5e5e5; background: #fff; }
.trust-list { list-style: none; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 16px; padding-top: 22px; padding-bottom: 22px; }
.trust-list li { display: flex; flex-direction: column; font-size: .88rem; color: var(--grey); line-height: 1.35; }
.trust-list strong { color: #333; font-weight: 500; font-size: .98rem; }
.trust-list li.green strong { color: var(--green); }
@media (min-width: 768px) { .trust-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .trust-list { grid-template-columns: repeat(5, auto); justify-content: space-between; } }

/* AI grid */
.ai-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .ai-grid { grid-template-columns: 1fr 1fr; } }
.ai-item { background: #fff; border: 1px solid #e3e3e3; padding: 20px; transition: border-color .25s, background-color .25s, border-radius .25s; }
.ai-item:hover { border-color: #F39598; background: #FFFBFB; border-radius: 7px; }
.ai-ico { width: 34px; height: 34px; color: var(--red); margin-bottom: 10px; }
.ai-item h3 { font-size: 1.1rem; color: #333; font-weight: 500; margin-bottom: .3em; }
.ai-item p { font-size: .95rem; margin: 0; line-height: 1.55; }

/* Go green band */
.band-green { background: #183a1e linear-gradient(135deg, #1d4424 0%, #14301a 100%); }
.band-green::before { display: none; }
.band-green h2 { color: #fff !important; }
.green-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,.12); color: #bfe8b6; font-weight: 500; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; font-size: .95rem; }
.green-badge.dark { background: var(--green-soft); color: var(--green); }
.band-lead { color: #d6e9d3; font-size: 1.1rem; max-width: 40em; margin: 0 auto; }
.swaps { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
@media (min-width: 768px) { .swaps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .swaps { grid-template-columns: 1fr 1fr 1fr; } }
.swap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 16px 18px; }
.swap .from { color: #a9b8a6; text-decoration: line-through; text-decoration-color: rgba(255,255,255,.35); font-size: .95rem; }
.swap .arrow { color: #8fd684; font-size: 1.3rem; }
.swap .to { color: #fff; font-weight: 400; font-size: .98rem; }
.green-note { text-align: center; color: #bfe8b6; margin: 32px auto 0; font-size: .95rem; }

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; position: relative; }
.timeline li { position: relative; padding: 0 0 28px 44px; }
.timeline li::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: -6px; width: 2px; background: #eee; }
.timeline li:last-child::before { display: none; }
.timeline li::after { content: ""; position: absolute; left: 4px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--red); }
.timeline li.now::after { border-color: var(--green); background: var(--green); }
.t-year { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.timeline .now .t-year { color: var(--green); }
.timeline h3 { font-size: 1.25rem; color: #333; font-weight: 500; margin-bottom: .2em; }
.timeline p { margin: 0; font-size: .98rem; }
@media (min-width: 992px) {
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .timeline li { padding: 36px 8px 0 0; }
  .timeline li::before { left: 0; right: -20px; top: 11px; bottom: auto; width: auto; height: 2px; }
  .timeline li::after { left: 0; top: 4px; }
  .timeline li:last-child::before { display: block; right: 60%; }
}

/* Featured work */
.work-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work { display: flex; flex-direction: column; background: #fff; border: 1px solid #dcdcdc; color: var(--grey); overflow: hidden; transition: border-color .25s, border-radius .25s; }
.work:hover { border-color: #F39598; border-radius: 7px; color: var(--grey); }
.work img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #f2f2f2; transition: transform .6s var(--ease); }
.work:hover img { transform: scale(1.04); }
.work-body { padding: 22px 22px 26px; }
.work-tag { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 6px; }
.work h3 { font-size: 1.45rem; font-weight: 500; color: #333; margin-bottom: .3em; }
.work-body p:last-child { margin: 0; font-size: .98rem; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: s; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.steps li { border: 1px solid #dcdcdc; padding: 22px 20px; background: #fff; }
.steps li span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 6px; background: var(--red); color: #fff; font-weight: 600; margin-bottom: 12px; }
.steps li:nth-child(4) span { background: var(--green); }
.steps h3 { font-size: 1.2rem; color: #333; font-weight: 500; margin-bottom: .25em; }
.steps p { margin: 0; font-size: .95rem; line-height: 1.55; }

/* SmartCo teaser strip */
.smartco { background: #1f2a44 linear-gradient(120deg, #1f2a44, #283a63); color: #dbe3f5; padding: clamp(44px, 6vw, 72px) 0; }
.smartco-in { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .smartco-in { grid-template-columns: 1fr auto; gap: 48px; } }
.smartco-kicker { color: #9fb4e8; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 500; margin-bottom: 6px; }
.smartco h2 { color: #fff !important; font-weight: 400; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); margin-bottom: .6em; }
.smartco-points { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.smartco-points li { position: relative; padding-left: 22px; font-size: .98rem; }
.smartco-points li::before { content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px; border-radius: 50%; background: #6c8ff0; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline-light:hover { background: #fff; color: #1f2a44; }

/* AI page */
.cards-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card.static { cursor: default; }
.card.static h3 { margin-bottom: 14px; }
.calc { background: #fff; border: 1px solid #dcdcdc; border-left: 3px solid var(--green); padding: 26px; display: grid; gap: 16px; }
.calc-out { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-out div { background: var(--green-soft); padding: 16px; border-radius: 6px; }
.calc-out strong { display: block; font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); color: var(--green); font-weight: 500; line-height: 1.1; }
.calc-out span { font-size: .9rem; color: var(--grey); }

/* Footer extras */
.footer-green { color: #8fd684; font-weight: 500; display: flex; align-items: center; }
.footer-offices { font-size: .88rem; color: #9a9aa1; margin-top: 16px; line-height: 1.6; }
.footer-offices strong { color: #d6d6db; font-weight: 500; }
/* v2 menu has one more item: keep it inside the screen */
@media (min-width: 1200px) {
  .v2-nav .nav-link { font-size: 1.02rem; padding: 10px 7px; }
  .v2-nav .brand .logo { width: 220px; }
  .v2-nav .nav-cta { font-size: .9rem; padding: .55em 1em; }
  .v2-nav .site-nav { gap: 10px; }
}
@media (min-width: 1600px) {
  .v2-nav .nav-link { font-size: 1.2rem; padding: 10px 10px; }
  .v2-nav .brand .logo { width: 270px; }
}
html { overflow-x: clip; }
.split.top { align-items: start; }
@media (min-width: 1200px) and (max-width: 1319.98px) {
  .v2-nav .nav-link { font-size: .95rem; padding: 10px 5px; }
  .v2-nav .brand .logo { width: 185px; }
  .v2-nav .site-nav { gap: 6px; }
}

/* Smooth card hover (replaces the padding jump) */
.card, .ai-item, .work, .steps li, .post-card, .tile {
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1),
              border-color .35s ease, background-color .35s ease, border-radius .35s ease;
  will-change: transform;
}
.card, .card:hover { padding: 40px 28px 32px; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(255, 57, 62, .10); }
.card .icon { transition: transform .45s cubic-bezier(.22,.61,.36,1), color .35s ease; }
.card:hover .icon { transform: scale(1.06); }
.card .card-btn { transition: background-color .3s ease, transform .45s cubic-bezier(.22,.61,.36,1); }
.card:hover .card-btn { background: #E33B3B; }
.work:hover, .steps li:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.06); }
@media (prefers-reduced-motion: reduce) { .card:hover, .work:hover, .steps li:hover { transform: none; } }

/* =====================================================================
   AI showcase: tabbed, with bespoke mini product screens
   ===================================================================== */
.ai-show .section-head p:last-child { max-width: 44em; margin: 0 auto; }
.showcase { display: grid; gap: 22px; margin-top: 12px; }
@media (min-width: 992px) { .showcase { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; align-items: center; } }
.sc-tabs { display: grid; gap: 8px; order: 2; }
@media (min-width: 992px) { .sc-tabs { order: 0; } }
.sc-tab { display: flex; gap: 14px; align-items: flex-start; text-align: left; width: 100%; background: #fff; border: 1px solid #e6e6e6; border-radius: 8px; padding: 14px 16px; font: inherit; color: var(--grey); cursor: pointer; position: relative; overflow: hidden;
  transition: border-color .35s ease, box-shadow .45s cubic-bezier(.22,.61,.36,1), transform .45s cubic-bezier(.22,.61,.36,1); }
.sc-tab:hover { border-color: #F3B3B5; transform: translateX(3px); }
.sc-tab.is-on { border-color: var(--red); box-shadow: 0 10px 26px rgba(255,57,62,.10); }
.sc-tab::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--red); }
.sc-tab.is-on.playing::after { animation: scprog 6s linear forwards; }
@keyframes scprog { to { width: 100%; } }
.sc-n { font-weight: 600; color: #c9c9ce; font-size: .9rem; min-width: 22px; padding-top: 2px; transition: color .3s; }
.sc-tab.is-on .sc-n { color: var(--red); }
.sc-tab strong { display: block; color: #333; font-weight: 500; font-size: 1.02rem; }
.sc-tab em { display: block; font-style: normal; font-size: .9rem; line-height: 1.45; margin-top: 2px; }
@media (max-width: 991.98px) { .sc-tab em { display: none; } }

.sc-stage { position: relative; min-height: 400px; border-radius: 18px; padding: clamp(18px, 3vw, 34px);
  background: radial-gradient(120% 90% at 100% 0%, #ffe7e8 0%, transparent 55%), radial-gradient(90% 80% at 0% 100%, #e6f4e3 0%, transparent 55%), #f4f4f6;
  display: grid; place-items: center; overflow: hidden; }
.sc-panel { width: 100%; max-width: 520px; }
.sc-panel[hidden] { display: none; }
.sc-panel.is-on { animation: scin .6s cubic-bezier(.22,.61,.36,1) both; }
@keyframes scin { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.ui { background: #fff; border-radius: 14px; box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 24px 50px rgba(30,30,50,.14); overflow: hidden; font-size: .92rem; color: #333; }
.ui h4 { font-weight: 500; font-size: 1.05rem; margin: 0 0 .4em; color: #222; }

/* chat */
.ui-bar { display: flex; gap: 12px; align-items: center; padding: 12px 16px; color: #fff; }
.ui-bar.wa { background: linear-gradient(90deg, #0f7a5c, #128c7e); }
.ui-bar .av { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--red); display: grid; place-items: center; font-weight: 700; font-size: .8rem; }
.ui-bar small { display: block; opacity: .8; font-size: .75rem; }
.chat-body { padding: 16px; display: grid; gap: 10px; background: #efeae2 radial-gradient(#e2dccf 1px, transparent 1px) 0 0 / 14px 14px; }
.msg { max-width: 82%; margin: 0; padding: 9px 12px; border-radius: 12px; line-height: 1.45; font-size: .9rem; box-shadow: 0 1px 1px rgba(0,0,0,.06); opacity: 0; animation: pop .45s cubic-bezier(.22,.61,.36,1) forwards; }
.msg.in { background: #fff; justify-self: start; border-top-left-radius: 4px; }
.msg.out { background: #d9fdd3; justify-self: end; border-top-right-radius: 4px; }
.msg[dir="rtl"] { font-family: "Segoe UI", Tahoma, sans-serif; }
.chat-body > :nth-child(1) { animation-delay: .1s } .chat-body > :nth-child(2) { animation-delay: .6s }
.chat-body > :nth-child(3) { animation-delay: 1.2s } .chat-body > :nth-child(4) { animation-delay: 1.8s }
.chat-body > :nth-child(5) { animation-delay: 2.3s } .chat-body > :nth-child(6) { animation-delay: 2.7s }
@keyframes pop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.chips { display: flex; gap: 8px; justify-content: flex-end; opacity: 0; animation: pop .45s forwards; }
.chips span { background: #fff; color: #0f7a5c; border: 1px solid #bfe3d4; border-radius: 999px; padding: 4px 12px; font-size: .8rem; }
.typing { display: flex; gap: 4px; width: 54px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #7aa98f; animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .2s } .typing i:nth-child(3) { animation-delay: .4s }
@keyframes blink { 0%, 80%, 100% { opacity: .25 } 40% { opacity: 1 } }

/* search */
.search { padding: 20px; }
.search-box { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--red); border-radius: 10px; padding: 11px 12px; box-shadow: 0 0 0 5px rgba(255,57,62,.08); }
.search-box svg { width: 20px; height: 20px; fill: none; stroke: #999; stroke-width: 2; flex-shrink: 0; }
.typed { flex: 1; white-space: nowrap; overflow: hidden; border-right: 2px solid var(--red); width: 0; animation: type 2.2s steps(34) .3s forwards, caret .8s step-end infinite; }
@keyframes type { to { width: 100%; } }
@keyframes caret { 50% { border-color: transparent; } }
.ai-pill { background: linear-gradient(90deg, var(--red), #ff7a52); color: #fff; font-size: .7rem; font-weight: 600; padding: 3px 8px; border-radius: 6px; }
.search-hint { font-size: .8rem; color: #999; margin: 12px 2px 8px; }
.results { display: grid; gap: 8px; }
.res { display: grid; grid-template-columns: 46px 1fr auto; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 10px; border: 1px solid #eee; border-radius: 10px; opacity: 0; animation: pop .45s forwards; }
.res:nth-child(1) { animation-delay: 2.5s; border-color: #F3B3B5; background: #fffafa; } .res:nth-child(2) { animation-delay: 2.7s } .res:nth-child(3) { animation-delay: 2.9s }
.thumb { grid-row: span 2; width: 46px; height: 46px; border-radius: 8px; background: linear-gradient(160deg, #3a3a40, #121214); }
.t2 { background: linear-gradient(160deg, #4a4a52, #1d1d22); } .t3 { background: linear-gradient(160deg, #2e2e33, #0a0a0c); }
.res strong { display: block; font-weight: 500; font-size: .92rem; } .res small { color: #999; font-size: .78rem; }
.res b { font-weight: 600; color: #222; } .res em { font-style: normal; font-size: .72rem; color: var(--green); grid-column: 3; text-align: right; }

/* bilingual */
.bi { padding: 20px; position: relative; }
.bi-toggle { position: absolute; top: 16px; right: 16px; display: flex; background: #f1f1f3; border-radius: 999px; padding: 3px; font-size: .78rem; }
.bi-toggle span { padding: 3px 10px; border-radius: 999px; } .bi-toggle .on { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.bi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
.bi-card { border: 1px solid #eee; border-radius: 12px; padding: 12px; opacity: 0; animation: pop .5s forwards; }
.bi-card:nth-child(2) { animation-delay: .5s; font-family: "Segoe UI", Tahoma, sans-serif; }
.bi-img { display: block; height: 90px; border-radius: 8px; margin-bottom: 10px; background: radial-gradient(circle at 30% 30%, #b98a5e, #5a3a22 70%); }
.bi-card h4 { font-size: .98rem; } .bi-card p { font-size: .8rem; line-height: 1.5; margin: 0 0 10px; color: #777; }
.bi-btn { display: inline-block; background: var(--red); color: #fff; font-size: .78rem; padding: 5px 12px; border-radius: 6px; }
.bi-note { font-size: .78rem; color: #888; margin: 14px 2px 0; display: flex; align-items: center; justify-content: center; text-align: center; }
.bi-note .leaf { color: var(--green); }

/* form */
.form-ui { padding: 22px; }
.f-row { display: grid; grid-template-columns: 96px 1fr; align-items: center; gap: 10px; border-bottom: 1px dashed #eee; padding: 10px 0; opacity: 0; animation: pop .45s forwards; }
.f-row:nth-of-type(1) { animation-delay: .2s } .f-row:nth-of-type(2) { animation-delay: .5s } .f-row:nth-of-type(3) { animation-delay: .8s } .f-row:nth-of-type(4) { animation-delay: 1.1s }
.f-row label { font-size: .78rem; color: #999; text-transform: uppercase; letter-spacing: .06em; }
.file { color: var(--green); }
.sign svg { width: 150px; height: 36px; fill: none; stroke: #1f2a44; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 1.6s 1.3s ease forwards; }
.f-done { margin-top: 16px; background: var(--green-soft); color: var(--green); border-radius: 10px; padding: 11px 14px; font-size: .86rem; display: flex; align-items: center; gap: 8px; opacity: 0; animation: pop .5s 2.6s forwards; }
.f-done span { width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .8rem; }

/* follow-up flow */
.flow { padding: 24px 22px; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 28px 1fr; gap: 12px; position: relative; padding-bottom: 20px; opacity: 0; animation: pop .5s forwards; }
.step:last-child { padding-bottom: 0; }
.step::before { content: ""; position: absolute; left: 13px; top: 22px; bottom: 0; width: 2px; background: #eee; }
.step:last-child::before { display: none; }
.step .dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--red); background: #fff; z-index: 1; }
.step.done .dot { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 6px var(--green-soft); }
.s1 { animation-delay: .1s } .s2 { animation-delay: .7s } .s3 { animation-delay: 1.3s } .s4 { animation-delay: 1.9s }
.step strong { display: block; font-weight: 500; } .step small { color: #999; font-size: .8rem; }

/* performance */
.perf { padding: 24px 22px; }
.rings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
.ring { --p: 0; display: grid; justify-items: center; gap: 6px; }
.ring span { width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; font-size: 1.35rem; font-weight: 600; color: var(--green);
  background: conic-gradient(var(--green) calc(var(--v) * 1%), #e7efe5 0); -webkit-mask: radial-gradient(circle, transparent 55%, #000 56%); mask: radial-gradient(circle, transparent 55%, #000 56%); position: relative; }
.ring { position: relative; }
.ring::after { content: attr(style); display: none; }
.ring span::before { content: ""; }
.ring small { color: #888; font-size: .78rem; }
.rings .ring span { -webkit-mask: none; mask: none; background: radial-gradient(circle, #fff 58%, transparent 59%), conic-gradient(var(--green) calc(var(--v) * 1%), #e7efe5 0); }
.launch { margin-top: 22px; }
.launch > span { font-size: .78rem; color: #999; text-transform: uppercase; letter-spacing: .06em; }
.bar { display: flex; gap: 4px; margin-top: 8px; }
.bar i { font-style: normal; font-size: .76rem; color: #fff; padding: 7px 10px; border-radius: 6px; background: #c9c9ce; transform-origin: left; animation: grow .7s cubic-bezier(.22,.61,.36,1) both; }
.bar i:nth-child(1) { background: #FB666B; animation-delay: .2s } .bar i:nth-child(2) { background: var(--red); animation-delay: .6s } .bar i:nth-child(3) { background: var(--green); animation-delay: 1s }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .msg, .chips, .res, .bi-card, .f-row, .f-done, .step { opacity: 1; animation: none; } .typed { width: 100%; animation: none; } }

/* Portfolio: screenshot fallback */
.work-img { display: block; position: relative; overflow: hidden; background: linear-gradient(135deg, #f6f6f8, #ececf0); aspect-ratio: 16 / 10; }
.work-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.work-img .ph { display: none; position: absolute; inset: 0; place-items: center; color: #9a9aa3; font-weight: 500; letter-spacing: .04em; }
.work.noimg .work-img img { display: none; }
.work.noimg .work-img .ph { display: grid; }
.visit { display: inline-block; margin-top: 12px; font-weight: 500; color: var(--red); }
.latest-work .work-grid { gap: 26px; }
@media (min-width: 768px) and (max-width: 1099.98px) { .latest-work .work-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- AI page: animated map hero ---- */
.geo-hero { background: radial-gradient(900px 420px at 78% 55%, rgba(255,57,62,.07), transparent 70%), linear-gradient(180deg, #fbfbfc, #fff) !important; }
.geo-hero-in { display: grid; gap: 28px; align-items: center; }
.geo-stats { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.geo-stats li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; display: flex; flex-direction: column; min-width: 120px; box-shadow: 0 6px 18px -12px rgba(20,20,30,.25); }
.geo-stats strong { color: var(--red); font-size: 1.45rem; font-weight: 600; line-height: 1.1; }
.geo-stats span { font-size: .85rem; color: var(--grey); }
.geo { position: relative; aspect-ratio: 97 / 59; width: 100%; }
.geo-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; -webkit-mask-image: radial-gradient(ellipse 64% 66% at 52% 50%, #000 60%, transparent 100%); mask-image: radial-gradient(ellipse 64% 66% at 52% 50%, #000 60%, transparent 100%); }
.geo-tags { position: absolute; inset: 0; pointer-events: none; }
.geo-tag { position: absolute; transform: translate(-50%, calc(-100% - 14px)) scale(.85); opacity: 0; white-space: nowrap; font-size: .8rem; font-weight: 500; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid rgba(20,20,30,.08); border-radius: 10px; padding: 6px 10px 6px 8px; box-shadow: 0 10px 24px -10px rgba(20,20,30,.35); display: flex; align-items: center; gap: 7px; transition: opacity .5s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
.geo-tag.on { opacity: 1; transform: translate(-50%, calc(-100% - 18px)) scale(1); }
.geo-tag i { width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center; font-style: normal; font-size: .7rem; color: #fff; background: var(--red); flex: none; }
.geo-tag i.g { background: #25a244; }
.geo-tag i.w { background: #25d366; }
.geo-tag[dir="rtl"] { font-family: "Segoe UI", Tahoma, sans-serif; }
.geo-tag::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 9px; height: 9px; background: inherit; border-right: 1px solid rgba(20,20,30,.08); border-bottom: 1px solid rgba(20,20,30,.08); transform: translateX(-50%) rotate(45deg); }
.geo-city { position: absolute; transform: translate(-50%, 10px); font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); white-space: nowrap; }
.geo-city.hq { color: var(--red); }
.geo-note { position: absolute; left: 0; bottom: 0; margin: 0; font-size: .78rem; color: var(--grey); display: flex; align-items: center; gap: 8px; }
.geo-live { width: 8px; height: 8px; border-radius: 50%; background: #25a244; box-shadow: 0 0 0 0 rgba(37,162,68,.5); animation: geoLive 2s infinite; }
@keyframes geoLive { 70% { box-shadow: 0 0 0 8px rgba(37,162,68,0); } 100% { box-shadow: 0 0 0 0 rgba(37,162,68,0); } }
@media (min-width: 992px) {
  .geo-hero-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 32px; }
  .page-hero.compact.geo-hero { padding: 48px 0 40px; }
}
@media (max-width: 575px) { .geo-tag { font-size: .7rem; } .geo-city { font-size: .62rem; } .geo-stats li { min-width: 0; flex: 1; padding: 8px 10px; } .geo-stats strong { font-size: 1.2rem; } .geo-stats span { font-size: .75rem; line-height: 1.3; } }
.ai-page .page-hero + .section { padding-top: clamp(40px, 5vw, 64px); }
@media (prefers-reduced-motion: reduce) { .geo-tag { transition: none; } .geo-live { animation: none; } }

/* Logo: bigger, and no red colour change on hover */
.brand, .brand:hover, .brand:focus { color: #666; }
.brand-footer, .brand-footer:hover, .brand-footer:focus { color: #d0d0d0; }
.brand .logo { transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.v2-nav .brand .logo { width: 220px; }
@media (max-width: 399.98px) { .v2-nav .brand .logo { width: 196px; } }
/* Sub-menu text matches the main menu size at every width */
@media (min-width: 1200px) {
  .v2-nav .brand .logo { width: 235px; }
  .v2-nav .sub a { font-size: 1.02rem; padding: 10px 16px; }
}
@media (min-width: 1200px) and (max-width: 1319.98px) {
  .v2-nav .brand .logo { width: 205px; }
  .v2-nav .sub a { font-size: .95rem; }
}
@media (min-width: 1600px) {
  .v2-nav .brand .logo { width: 300px; }
  .v2-nav .sub a { font-size: 1.2rem; padding: 11px 18px; }
}
/* AI feature icons (illustrated) */
.ai-img { width: 76px; height: 76px; display: block; margin: -4px 0 12px -6px; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.ai-item:hover .ai-img { transform: scale(1.06) rotate(-2deg); }
/* SmartCo strip: logo + bigger headline */
.smartco-logo { display: inline-block; margin-bottom: 18px; }
.smartco-logo img { display: block; width: clamp(200px, 22vw, 300px); height: auto; }
.smartco-logo-txt { display: none; color: #fff; font-size: 1.6rem; font-weight: 600; }
.smartco-logo-txt b { color: #8f86ff; font-weight: 600; }
.smartco-logo.nologo img { display: none; }
.smartco-logo.nologo .smartco-logo-txt { display: inline; }
.smartco h2 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.3rem); line-height: 1.15; margin-bottom: .55em; }
.smartco-points li { font-size: 1.05rem; }
.smartco-points li::before { background: #7b70ff; }
.smartco .btn-outline-light:hover { background: #6357e8; border-color: #6357e8; color: #fff; }
/* Footer background image (from the original site) */
.site-footer.has-bg { background: linear-gradient(180deg, rgba(24,24,26,.55), rgba(24,24,26,.82)), var(--fbg) top left / cover no-repeat, #212121; }
.site-footer.has-bg .footer-bottom { background: rgba(0,0,0,.35); }

/* Website pricing (v2) */
.pricing-v2 { padding: clamp(56px, 7vw, 96px) 0; }
.pricing-intro { max-width: 46em; margin: 0 auto; color: var(--grey); }
.plans { display: grid; gap: 22px; margin-top: 36px; }
@media (min-width: 992px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan { position: relative; background: #fff; border: 1px solid #dcdcdc; padding: 32px 28px 28px; display: flex; flex-direction: column; transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1), border-color .3s; }
.plan:hover { transform: translateY(-6px); border-color: #F39598; box-shadow: 0 24px 48px -28px rgba(255,57,62,.45); }
.plan-feat { border: 2px solid var(--red); box-shadow: 0 24px 48px -30px rgba(255,57,62,.55); }
.plan-badge { position: absolute; top: -14px; left: 28px; background: var(--red); color: #fff; font-size: .8rem; font-weight: 500; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px; }
.plan-name { color: var(--red); font-size: 1.7rem; font-weight: 500; margin: 0; }
.plan-tag { color: var(--grey); font-weight: 500; margin: 2px 0 16px; }
.plan-price { font-size: 2.6rem; font-weight: 500; color: #222; line-height: 1; margin: 0; }
.plan-price small { font-size: .95rem; color: var(--grey); font-weight: 400; margin-right: 4px; }
.plan-note { font-size: .82rem; color: #999; margin: 6px 0 14px; }
.plan-blurb { color: var(--grey); }
.plan-list { list-style: none; padding: 0; margin: 6px 0 18px; flex: 1; }
.plan-list li { position: relative; padding: 7px 0 7px 28px; border-top: 1px solid #f0f0f0; color: #333; font-size: .97rem; }
.plan-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 18px; height: 18px; border: 0; transform: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23e8f6ec'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' fill='none' stroke='%2325a244' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; }
.plan-time { font-size: .9rem; color: var(--grey); margin-bottom: 14px; }
.plan-btn { width: 100%; text-align: center; }
.addons { margin-top: 36px; border: 1px solid #e6e6e6; background: #fcfcfc; padding: 26px 28px; }
.addons h3 { font-size: 1.3rem; color: #333; font-weight: 500; margin-bottom: 14px; }
.addons ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px 28px; }
@media (min-width: 768px) { .addons ul { grid-template-columns: repeat(3, 1fr); } }
.addons li { display: flex; flex-direction: column; }
.addons li strong { font-weight: 500; color: #222; }
.addons li span { color: var(--grey); font-size: .93rem; }
.plan-small { font-size: .85rem; color: #999; margin: 16px 0 0; }

/* ---- Paper → digital (AI) section ---- */
.pd { position: relative; overflow: hidden; color: #cfe0d6; padding: clamp(64px, 8vw, 110px) 0; background: radial-gradient(900px 500px at 80% 20%, rgba(52,211,120,.16), transparent 60%), radial-gradient(700px 420px at 10% 90%, rgba(255,57,62,.10), transparent 60%), #0b1511; }
.pd-bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.pd-wrap { position: relative; }
.pd h2 { color: #fff !important; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem); }
.pd-grad { background: linear-gradient(90deg, #7ef0a8, #34d378 40%, #ff6b6f); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pd .band-lead { color: #b8cfc1; }
.pd-grid { display: grid; gap: 28px; margin-top: 44px; align-items: center; }
@media (min-width: 992px) { .pd-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; } }
.pd-list { display: grid; gap: 10px; }
.pd-item { all: unset; box-sizing: border-box; cursor: pointer; display: grid; grid-template-columns: 1fr 34px 1fr; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 12px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); transition: background .4s, border-color .4s, box-shadow .4s, transform .45s cubic-bezier(.22,.61,.36,1); }
.pd-item:hover { background: rgba(255,255,255,.06); }
.pd-item:focus-visible { outline: 2px solid #34d378; outline-offset: 2px; }
.pd-item.on { background: linear-gradient(90deg, rgba(52,211,120,.14), rgba(52,211,120,.04)); border-color: rgba(52,211,120,.55); box-shadow: 0 0 0 1px rgba(52,211,120,.15), 0 12px 32px -16px rgba(52,211,120,.6); transform: translateX(4px); }
.pd-from { color: #8aa396; font-size: .92rem; text-decoration: line-through; text-decoration-color: rgba(255,255,255,.25); }
.pd-to { color: #fff; font-size: .98rem; }
.pd-arrow { position: relative; height: 2px; background: linear-gradient(90deg, rgba(255,255,255,.15), #34d378); border-radius: 2px; }
.pd-arrow::after { content: ""; position: absolute; right: -1px; top: -4px; border-left: 7px solid #34d378; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.pd-item.on .pd-arrow { background: linear-gradient(90deg, rgba(52,211,120,.2), #34d378); animation: pdFlow 1.2s linear infinite; background-size: 200% 100%; }
@keyframes pdFlow { from { background-position: 100% 0; } to { background-position: -100% 0; } }

.pd-stage { position: relative; min-height: 340px; border-radius: 18px; background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.1); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 60px -30px rgba(0,0,0,.7); overflow: hidden; }
.pd-stage::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%); }
.pd-paper { position: absolute; left: 8%; top: 13%; width: 42%; aspect-ratio: 3 / 4; background: #f3efe6; border-radius: 4px; padding: 16px 14px; box-shadow: 0 18px 30px -12px rgba(0,0,0,.6); transform: rotate(-5deg); transition: opacity .7s, transform .9s cubic-bezier(.22,.61,.36,1), filter .7s; }
.pd-paper-t { display: block; color: #555; font-size: .72rem; font-weight: 600; line-height: 1.3; margin-bottom: 10px; font-family: Georgia, serif; }
.pd-paper i { display: block; height: 6px; margin: 9px 0; background: #d8d2c4; border-radius: 3px; }
.pd-paper i.s { width: 60%; }
.pd-stamp { position: absolute; right: 10px; bottom: 12px; color: rgba(200,60,60,.55); border: 2px solid rgba(200,60,60,.45); font-size: .62rem; font-weight: 700; letter-spacing: .12em; padding: 2px 6px; transform: rotate(-12deg); }
.pd-scan { position: absolute; left: 0; right: 0; top: 0; height: 60px; background: linear-gradient(180deg, transparent, rgba(52,211,120,.28) 70%, #7ef0a8 100%); filter: blur(.3px); opacity: 0; pointer-events: none; }
.pd-card { position: absolute; right: 7%; bottom: 12%; width: 56%; padding: 16px 16px 14px; border-radius: 14px; background: rgba(255,255,255,.96); color: #222; box-shadow: 0 24px 50px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(52,211,120,.4), 0 0 40px -6px rgba(52,211,120,.45); transition: opacity .6s, transform .8s cubic-bezier(.22,.61,.36,1); }
.pd-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pd-ai { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; color: #fff; background: linear-gradient(90deg, #ff393e, #ff6b6f); padding: 3px 9px 3px 7px; border-radius: 999px; }
.pd-ai svg { width: 13px; height: 13px; }
.pd-status { font-size: .74rem; color: #1f8f4a; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.pd-status b { width: 7px; height: 7px; border-radius: 50%; background: #25a244; box-shadow: 0 0 0 3px rgba(37,162,68,.18); }
.pd-card-t { font-size: 1.02rem; font-weight: 500; margin: 0 0 10px; line-height: 1.3; }
.pd-bars i { display: block; height: 7px; border-radius: 4px; margin: 6px 0; background: linear-gradient(90deg, #eceef2, #f6f7f9); }
.pd-bars i:nth-child(2) { width: 80%; } .pd-bars i:nth-child(3) { width: 55%; }
.pd-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.pd-chips span { font-size: .72rem; font-weight: 500; color: #1f8f4a; background: #e8f6ec; border-radius: 999px; padding: 3px 9px; }
.pd-meter { position: absolute; left: 8%; bottom: 7%; display: flex; align-items: center; gap: 8px; font-size: .72rem; color: #9fb7a9; }
.pd-meter-bar { width: 70px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.12); overflow: hidden; }
.pd-meter-bar i { display: block; height: 100%; width: 100%; background: #ff6b6f; transition: width 1.2s ease; }
.pd-meter strong { color: #7ef0a8; font-weight: 600; }
/* animation states */
.pd-stage.run .pd-scan { animation: pdScan 1.4s cubic-bezier(.45,.05,.55,.95) forwards; }
@keyframes pdScan { 0% { top: -60px; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
.pd-stage.run .pd-paper { animation: pdPaper 1.8s ease forwards; }
@keyframes pdPaper { 0% { opacity: 1; filter: none; } 55% { opacity: .9; filter: saturate(.4); } 100% { opacity: .18; transform: rotate(-9deg) translate(-12px, 10px) scale(.94); filter: grayscale(1) blur(.6px); } }
.pd-stage.run .pd-card { animation: pdCard .9s .9s cubic-bezier(.22,.61,.36,1) both; }
@keyframes pdCard { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
.pd-stage.run .pd-meter-bar i { width: 0; transition-delay: .9s; }
@media (max-width: 575px) { .pd-item { grid-template-columns: 1fr 24px 1fr; padding: 12px; } .pd-from { font-size: .8rem; } .pd-to { font-size: .86rem; } .pd-stage { min-height: 300px; } .pd-card { width: 64%; } }
@media (prefers-reduced-motion: reduce) { .pd-stage.run .pd-scan, .pd-stage.run .pd-paper, .pd-stage.run .pd-card, .pd-item.on .pd-arrow { animation: none; } .pd-stage.run .pd-paper { opacity: .2; } }
/* Portfolio: compact hero, no gap before Latest work */
.pf-hero { background: radial-gradient(700px 300px at 85% 40%, rgba(255,57,62,.07), transparent 70%), #fcfcfc !important; }
.pf-hero-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; }
.pf-stats { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pf-stats li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; display: flex; flex-direction: column; box-shadow: 0 6px 18px -12px rgba(20,20,30,.25); }
.pf-stats strong { color: var(--red); font-size: 1.3rem; font-weight: 600; line-height: 1.15; }
.pf-stats span { font-size: .82rem; color: var(--grey); }
.pf-hero + .latest-work { padding-top: clamp(28px, 3.5vw, 44px); }
.latest-work .section-head .subtitle { font-size: 1.15rem; margin-bottom: 0; }
.latest-work .section-head h2 { margin-bottom: .2em; }
.latest-work .section-head { margin-bottom: 32px; }

/* ---- Homepage hero artwork ---- */
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(620px 420px at 78% 45%, rgba(255,57,62,.09), transparent 65%), radial-gradient(420px 300px at 92% 85%, rgba(52,211,120,.08), transparent 70%); }
.hero-split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1100px) {
  .hero-split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; }
  .v2 .hero h1 { font-size: clamp(2.6rem, 1rem + 3.3vw, 4.4rem); }
}
.hero-art { position: relative; width: 100%; max-width: 620px; margin: 0 auto; aspect-ratio: 1 / .86; font-family: inherit; }
.ha-blob { position: absolute; inset: 8% 6% 6% 10%; border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; background: linear-gradient(135deg, #ffe3e4, #fff4f4 45%, #e9f8ee); animation: haMorph 14s ease-in-out infinite alternate; }
@keyframes haMorph { 0% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; } 100% { border-radius: 58% 42% 45% 55% / 42% 58% 42% 58%; transform: rotate(6deg) scale(1.03); } }
.ha-orbit { position: absolute; border: 1.5px dashed rgba(255,57,62,.22); border-radius: 50%; animation: haSpin 40s linear infinite; }
.ha-orbit.o1 { inset: 2% 4% 0 6%; }
.ha-orbit.o2 { inset: 16% 18% 14% 20%; border-color: rgba(52,211,120,.28); animation-duration: 28s; animation-direction: reverse; }
.ha-orbit i { position: absolute; top: 12%; left: 12%; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(255,57,62,.14); }
.ha-orbit.o2 i { background: #25a244; box-shadow: 0 0 0 6px rgba(37,162,68,.14); top: auto; bottom: 8%; left: auto; right: 14%; }
@keyframes haSpin { to { transform: rotate(360deg); } }

.ha-browser { position: absolute; left: 4%; top: 12%; width: 70%; border-radius: 14px; background: #fff; box-shadow: 0 30px 60px -28px rgba(30,30,50,.35), 0 0 0 1px rgba(20,20,30,.06); overflow: hidden; animation: haFloat 7s ease-in-out infinite; }
.ha-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: #f5f5f7; border-bottom: 1px solid #ececf0; }
.ha-bar b { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; } .ha-bar b:nth-child(2) { background: #febc2e; } .ha-bar b:nth-child(3) { background: #28c840; }
.ha-bar span { margin-left: 10px; flex: 1; font-size: .68rem; color: #999; background: #fff; border-radius: 6px; padding: 3px 10px; }
.ha-page { padding: 14px; }
.ha-hero { position: relative; border-radius: 10px; padding: 18px 14px 16px; background: linear-gradient(120deg, #ff393e, #ff6b6f); }
.ha-hero i { display: block; height: 9px; border-radius: 5px; background: rgba(255,255,255,.9); margin-bottom: 7px; }
.ha-hero i.t1 { width: 70%; height: 12px; } .ha-hero i.t2 { width: 48%; background: rgba(255,255,255,.6); }
.ha-hero em { display: inline-block; margin-top: 6px; font-style: normal; font-size: .66rem; font-weight: 600; color: var(--red); background: #fff; border-radius: 5px; padding: 4px 9px; }
.ha-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 12px 0; }
.ha-cards span { height: 46px; border-radius: 8px; background: #f4f4f6; border: 1px solid #ededf0; position: relative; }
.ha-cards span::before { content: ""; position: absolute; left: 8px; top: 8px; width: 14px; height: 14px; border-radius: 4px; background: #ffd8d9; }
.ha-cards span:nth-child(2)::before { background: #d9f3e2; } .ha-cards span:nth-child(3)::before { background: #e3e6ff; }
.ha-lines i { display: block; height: 7px; border-radius: 4px; background: #efeff2; margin: 6px 0; } .ha-lines i:nth-child(2) { width: 65%; }

.ha-phone { position: absolute; right: 4%; top: 30%; width: 38%; border-radius: 22px; background: #fff; padding: 10px 10px 12px; box-shadow: 0 30px 60px -24px rgba(30,30,50,.45), 0 0 0 6px #1f1f24; animation: haFloat 8s -2s ease-in-out infinite; }
.ha-ph-top { display: flex; align-items: center; gap: 8px; padding: 4px 4px 8px; border-bottom: 1px solid #f0f0f2; }
.ha-av { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #ff393e, #ff8a8d); position: relative; }
.ha-av::after { content: ""; position: absolute; right: -1px; bottom: -1px; width: 8px; height: 8px; border-radius: 50%; background: #25d366; border: 2px solid #fff; }
.ha-ph-top strong { display: block; font-size: .7rem; font-weight: 600; color: #222; line-height: 1.1; }
.ha-ph-top small { font-size: .6rem; color: #25a244; }
.ha-msgs { display: flex; flex-direction: column; gap: 6px; padding-top: 8px; }
.ha-msgs p { margin: 0; font-size: .64rem; line-height: 1.35; padding: 6px 8px; border-radius: 10px; max-width: 88%; opacity: 0; animation: haPop .5s cubic-bezier(.22,.61,.36,1) forwards; }
.ha-msgs .in { background: #f1f1f4; color: #333; align-self: flex-start; border-bottom-left-radius: 3px; }
.ha-msgs .out { background: #dcf8c6; color: #1d3b1d; align-self: flex-end; border-bottom-right-radius: 3px; }
.ha-msgs .ar { font-family: Tahoma, "Segoe UI", sans-serif; }
.ha-msgs p:nth-child(1) { animation-delay: .6s; } .ha-msgs p:nth-child(2) { animation-delay: 1.5s; } .ha-msgs p:nth-child(3) { animation-delay: 2.4s; } .ha-msgs p:nth-child(4) { animation-delay: 3.2s; }
.ha-msgs .typing { display: flex; gap: 3px; padding: 8px 10px; }
.ha-msgs .typing i { width: 5px; height: 5px; border-radius: 50%; background: #5a8f5a; animation: haDot 1.2s infinite; }
.ha-msgs .typing i:nth-child(2) { animation-delay: .15s; } .ha-msgs .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes haDot { 0%, 60%, 100% { opacity: .3; transform: none; } 30% { opacity: 1; transform: translateY(-2px); } }
@keyframes haPop { from { opacity: 0; transform: translateY(6px) scale(.96); } to { opacity: 1; transform: none; } }

.ha-chip { position: absolute; display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 12px; padding: 9px 13px 9px 9px; box-shadow: 0 16px 34px -16px rgba(30,30,50,.4), 0 0 0 1px rgba(20,20,30,.05); white-space: nowrap; animation: haFloat 6s ease-in-out infinite; }
.ha-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.ha-chip .ic svg { width: 17px; height: 17px; }
.ha-chip .ic.g { background: #e8f6ec; color: #25a244; } .ha-chip .ic.r { background: #ffe8e9; color: var(--red); }
.ha-chip strong { display: block; font-size: .8rem; font-weight: 600; color: #222; line-height: 1.2; }
.ha-chip small { font-size: .68rem; color: #888; }
.ha-chip.c1 { left: 0; bottom: 8%; animation-delay: -1s; }
.ha-chip.c2 { right: 0; top: 6%; animation-delay: -3s; }
.ha-chip.c3 { right: 10%; bottom: 0; animation-delay: -4.5s; }
.ha-score { position: absolute; left: 44%; top: 0; width: 76px; height: 76px; border-radius: 50%; background: #fff; box-shadow: 0 16px 34px -16px rgba(30,30,50,.4); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; animation: haFloat 7.5s -1.5s ease-in-out infinite; }
.ha-score svg { position: absolute; inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px); transform: rotate(-90deg); }
.ha-score circle { fill: none; stroke: #eef0f2; stroke-width: 4; }
.ha-score circle.v { stroke: #25a244; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 113; animation: haRing 1.6s .8s ease forwards; }
@keyframes haRing { to { stroke-dashoffset: 2.3; } }
.ha-score strong { position: relative; font-size: 1.1rem; font-weight: 600; color: #222; line-height: 1; }
.ha-score small { position: relative; font-size: .5rem; color: #888; text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; line-height: 1; }
@keyframes haFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 1099.98px) { .hero-art { max-width: 560px; } }
@media (max-width: 575px) {
  .hero-art { aspect-ratio: 1 / .95; }
  .ha-chip { padding: 6px 9px 6px 6px; gap: 6px; } .ha-chip .ic { width: 24px; height: 24px; } .ha-chip strong { font-size: .68rem; } .ha-chip small { font-size: .58rem; }
  .ha-phone { width: 44%; } .ha-msgs p { font-size: .56rem; }
  .ha-score { width: 60px; height: 60px; left: 40%; } .ha-score strong { font-size: .9rem; }
  .ha-chip.c3 { display: none; } .ha-chip.c1 { bottom: 2%; }
}
@media (prefers-reduced-motion: reduce) { .hero-art * { animation: none !important; } .ha-msgs p { opacity: 1; } .ha-score circle.v { stroke-dashoffset: 2.3; } }

.ha-chip strong, .ha-chip small, .ha-ph-top strong, .ha-ph-top small { margin: 0; }
.ha-chip div, .ha-ph-top div { line-height: 1.25; }

/* Menu: slightly bigger, and a clearer white drop-down with red accents */
@media (min-width: 1200px) {
  .v2-nav .nav-link { font-size: 1.1rem; padding: 10px 8px; }
  .v2-nav .sub { background: #fff; border: 1px solid #ececf0; border-top: 3px solid var(--red); border-radius: 0 0 12px 12px; padding: 10px; min-width: 280px; box-shadow: 0 22px 44px -18px rgba(20,20,30,.28); }
  .v2-nav .sub a { color: #444; font-size: 1.1rem; font-weight: 400; padding: 12px 16px 12px 18px; border-radius: 8px; position: relative; transition: background-color .2s, color .2s, padding-left .25s; }
  .v2-nav .sub a::before { content: ""; position: absolute; left: 6px; top: 50%; width: 5px; height: 5px; margin-top: -2.5px; border-radius: 50%; background: var(--red); opacity: 0; transition: opacity .2s; }
  .v2-nav .sub a:hover, .v2-nav .sub a:focus-visible, .v2-nav .sub a[aria-current="page"] { background: #fff1f1; color: var(--red); padding-left: 24px; }
  .v2-nav .sub a:hover::before, .v2-nav .sub a[aria-current="page"]::before { opacity: 1; left: 10px; }
}
@media (min-width: 1200px) and (max-width: 1319.98px) {
  .v2-nav .nav-link { font-size: 1rem; padding: 10px 6px; }
  .v2-nav .sub a { font-size: 1rem; }
}
@media (min-width: 1600px) {
  .v2-nav .nav-link { font-size: 1.28rem; padding: 10px 11px; }
  .v2-nav .sub a { font-size: 1.22rem; }
}
@media (min-width: 1320px) and (max-width: 1439.98px) {
  .v2-nav .nav-link { font-size: 1.04rem; padding: 10px 6px; }
  .v2-nav .brand .logo { width: 220px; }
}
.dm-points { grid-template-columns: 1fr !important; gap: 14px; } .dm-points .tile { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: start; } .dm-points .tile .num { grid-row: span 2; } .dm-points .tile h3, .dm-points .tile p { margin: 0; }

/* ---- Magento page ---- */
.mg-hero-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; }
.mg-flow { list-style: none; padding: 0; margin: 36px 0 0; display: grid; gap: 18px; counter-reset: none; }
@media (min-width: 768px) { .mg-flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .mg-flow { grid-template-columns: repeat(4, 1fr); } }
.mg-flow li { position: relative; background: #fff; border: 1px solid #e3e3e3; border-radius: 12px; padding: 26px 22px 22px; transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s, border-color .3s; }
.mg-flow li:hover { transform: translateY(-5px); border-color: #F39598; box-shadow: 0 20px 40px -26px rgba(255,57,62,.45); }
@media (min-width: 1200px) { .mg-flow li:not(:last-child)::after { content: ""; position: absolute; right: -14px; top: 44px; width: 10px; height: 10px; border-top: 2px solid var(--red); border-right: 2px solid var(--red); transform: rotate(45deg); } }
.mg-n { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--red); color: #fff; font-weight: 600; margin-bottom: 12px; }
.mg-flow h3 { font-size: 1.25rem; color: #222; font-weight: 500; margin-bottom: .4em; }
.mg-flow p { color: var(--grey); font-size: .97rem; }
.mg-flow em { display: inline-block; font-style: normal; font-size: .8rem; color: var(--red); background: #fff1f1; border-radius: 999px; padding: 4px 10px; }
.mg-stack { text-align: center; color: var(--grey); max-width: 46em; margin: 26px auto 0; font-size: .95rem; }
.mg-table-wrap { overflow-x: auto; margin-top: 28px; border: 1px solid #e3e3e3; border-radius: 12px; }
.mg-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .97rem; }
.mg-table th, .mg-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #efefef; vertical-align: top; }
.mg-table thead th { background: #fafafa; color: #222; font-weight: 500; }
.mg-table thead th:nth-child(2) { color: #fff; background: var(--red); }
.mg-table tbody th { color: #333; font-weight: 500; width: 18%; }
.mg-table td { color: var(--grey); }
.mg-table td:nth-child(2) { color: #222; background: #fff8f8; }
.mg-table tr:last-child th, .mg-table tr:last-child td { border-bottom: 0; }
.mg-note { text-align: center; color: var(--grey); margin-top: 18px; }
.mg-costs { display: grid; gap: 12px; margin: 0; }
@media (min-width: 576px) { .mg-costs { grid-template-columns: 1fr 1fr; } }
.mg-costs div { background: #fff; border: 1px solid #e6e6e6; border-radius: 12px; padding: 18px 20px; }
.mg-costs dt { color: var(--grey); font-weight: 500; font-size: .9rem; margin-bottom: 4px; }
.mg-costs dd { margin: 0; color: #222; }
.mg-costs dd strong { color: var(--red); font-size: 1.5rem; font-weight: 600; }
.mg-costs dd small { display: block; color: #888; font-size: .82rem; margin-top: 4px; line-height: 1.4; }

/* Magento contact block: fuller left column, compact form card */
.mg-contact { background: linear-gradient(180deg, #fff, #fcfcfd); }
.mg-next { list-style: none; padding: 0; margin: 26px 0 18px; display: grid; gap: 12px; }
.mg-next li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid #ececf0; border-radius: 12px; padding: 14px 16px; }
.mg-next li > span { flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: #fff1f1; color: var(--red); font-weight: 600; }
.mg-next strong { display: block; color: #222; font-weight: 500; }
.mg-next small { color: var(--grey); font-size: .88rem; }
.mg-trust { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.mg-trust li { font-size: .82rem; color: #1f8f4a; background: #e8f6ec; border-radius: 999px; padding: 5px 12px; }
.mg-direct p { color: #333; font-weight: 500; margin-bottom: 10px; }
.mg-direct { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.mg-direct p { flex-basis: 100%; }
.mg-dl { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid #e3e3e8; border-radius: 10px; color: #333; font-size: .92rem; background: #fff; transition: border-color .2s, color .2s; }
.mg-dl svg { width: 17px; height: 17px; color: var(--red); }
.mg-dl.wa svg { color: #25d366; }
.mg-dl:hover { border-color: var(--red); color: var(--red); }
.mg-form { background: #fff; border: 1px solid #ececf0; border-top: 3px solid var(--red); border-radius: 14px; padding: 28px 26px 22px; box-shadow: 0 24px 50px -30px rgba(20,20,30,.3); }
.mg-form-h { font-size: 1.25rem; font-weight: 500; color: #222; margin-bottom: 16px; }
.mg-form .form-compact { display: grid; grid-template-columns: 1fr; gap: 4px 16px; }
.mg-form .form-compact > * { grid-column: 1 / -1; }
@media (min-width: 576px) {
  .mg-form .form-compact { grid-template-columns: 1fr 1fr; }
  .mg-form .field:has(input[name="name"]), .mg-form .field:has(input[name="email"]), .mg-form .field:has(input[name="company"]), .mg-form .field:has(input[name="existing_site"]) { grid-column: auto; }
}
.mg-form textarea { min-height: 110px; }
.mg-form button[type="submit"] { width: 100%; }
.ha-av { background: none; }
.ha-av img { display: block; width: 100%; height: 100%; border-radius: 50%; }
/* Showcase: bullet points instead of numbers, favicon avatar */
.sc-tab .sc-n { flex: none; width: 10px; height: 10px; min-width: 10px; padding: 0; margin-top: 8px; border-radius: 50%; background: #d4d4da; font-size: 0; transition: background-color .3s, box-shadow .3s; }
.sc-tab:hover .sc-n { background: #F39598; }
.sc-tab.is-on .sc-n { background: var(--red); box-shadow: 0 0 0 4px rgba(255,57,62,.15); }
.av.av-img { background: #fff; padding: 0; overflow: hidden; }
.av.av-img img { display: block; width: 100%; height: 100%; }

/* ---- WordPress value sections ---- */
.wv { padding: clamp(56px, 7vw, 96px) 0; }
.wv-intro { max-width: 46em; margin: 0 auto; color: var(--grey); }
.cmp-wrap { overflow-x: auto; margin-top: 32px; border: 1px solid #e3e3e3; border-radius: 14px; background: #fff; }
.cmp { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .96rem; }
.cmp th, .cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #f0f0f0; vertical-align: top; }
.cmp thead th { background: #fafafa; color: #333; font-weight: 500; }
.cmp thead th:last-child { background: var(--red); color: #fff; }
.cmp tbody th { color: #333; font-weight: 500; width: 17%; }
.cmp td { color: #888; }
.cmp td:last-child { color: #222; background: #fff8f8; font-weight: 500; position: relative; padding-left: 40px; }
.cmp td:last-child::before { content: ""; position: absolute; left: 14px; top: 15px; width: 17px; height: 17px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23e8f6ec'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' fill='none' stroke='%2325a244' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.wv-plugins { padding-top: 0; }
.wv-stat { background: #1c1c22; color: #cfcfd6; border-radius: 16px; padding: 34px 32px; position: relative; overflow: hidden; }
.wv-stat::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,57,62,.35), transparent 70%); }
.wv-big { font-size: clamp(4rem, 3rem + 4vw, 6rem); font-weight: 600; line-height: 1; color: #ff5a5e; margin: 0 0 10px; }
.wv-stat-t { color: #fff; font-size: 1.25rem; line-height: 1.4; margin-bottom: 12px; }
.wv-stat-s { font-size: .95rem; }
.wv-src { font-size: .78rem; color: #8a8a94; margin: 16px 0 0; }
.wv-src a { color: #b9b9c2; text-decoration: underline; }
.incl { display: grid; gap: 16px; margin-top: 32px; }
@media (min-width: 576px) { .incl { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .incl { grid-template-columns: repeat(4, 1fr); } }
.incl > div { background: #fff; border: 1px solid #e6e6e6; border-radius: 12px; padding: 22px 20px; transition: transform .45s cubic-bezier(.22,.61,.36,1), border-color .3s, box-shadow .45s; }
.incl > div:hover { transform: translateY(-4px); border-color: #F39598; box-shadow: 0 18px 36px -24px rgba(255,57,62,.45); }
.incl svg { width: 34px; height: 34px; color: var(--red); background: #fff1f1; border-radius: 10px; padding: 6px; margin-bottom: 12px; }
.incl h3 { font-size: 1.08rem; color: #222; font-weight: 500; margin-bottom: .3em; }
.incl p { font-size: .93rem; color: var(--grey); margin: 0; }
.wv-ai { background: linear-gradient(120deg, #ff393e, #ff6b6f); color: #fff; padding: clamp(40px, 5vw, 64px) 0; }
.wv-ai-in { display: grid; gap: 18px 48px; align-items: center; }
@media (min-width: 992px) { .wv-ai-in { grid-template-columns: 1fr 1fr; } }
.wv-kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; opacity: .85; margin-bottom: 6px; }
.wv-ai h2 { color: #fff !important; font-weight: 400; font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.3rem); line-height: 1.25; margin: 0; }
.wv-ai p { font-size: 1.08rem; line-height: 1.6; margin: 0; color: #fff; }
.wv-day { padding-top: 0; }
.wv-day-in { display: grid; gap: 8px 32px; align-items: center; background: #fff; border: 1px dashed #F39598; border-radius: 14px; padding: 24px 28px; }
@media (min-width: 992px) { .wv-day-in { grid-template-columns: auto 1fr; } }
.wv-day-l { margin: 0; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.wv-day-t { margin: 0; color: #333; font-size: 1.08rem; line-height: 1.6; }
.wv-day-t strong { color: var(--red); font-weight: 600; }
.wv-promise { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.wv-promise li { font-size: .9rem; color: #1f8f4a; background: #e8f6ec; border-radius: 999px; padding: 7px 14px 7px 32px; position: relative; }
.wv-promise li::before { content: ""; position: absolute; left: 12px; top: 50%; width: 10px; height: 6px; margin-top: -5px; border-left: 2px solid #25a244; border-bottom: 2px solid #25a244; transform: rotate(-45deg); }
.wv-faq { padding-top: 0; }
.faq { max-width: 860px; margin: 28px auto 0; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid #e6e6e6; border-radius: 12px; padding: 0 22px; transition: border-color .3s; }
.faq details[open] { border-color: #F39598; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 30px 18px 0; font-weight: 500; color: #222; font-size: 1.05rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 1.5rem; color: var(--red); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--grey); margin: 0 0 18px; line-height: 1.65; }

/* ---- Insights: articles and index ---- */
.post-hero { background: radial-gradient(700px 380px at 85% 30%, rgba(255,57,62,.28), transparent 65%), linear-gradient(135deg, #1b1b21, #26262f); color: #d6d6de; padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px); }
.post-hero-in { display: grid; gap: 28px; align-items: center; }
@media (min-width: 992px) { .post-hero-in { grid-template-columns: 1fr 220px; } }
.post-hero h1 { color: #fff; font-weight: 400; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.3rem); line-height: 1.15; max-width: 20em; margin-bottom: .35em; }
.post-hero .lead { color: #e2e2e8; font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); max-width: 38em; }
.post-crumb { font-size: .85rem; color: #9d9da8; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.post-crumb a { color: #ff8a8d; }
.post-meta { font-size: .9rem; color: #9d9da8; margin: 18px 0 0; }
.post-art { display: none; }
@media (min-width: 992px) { .post-art { display: grid; place-items: center; width: 200px; height: 200px; border-radius: 40px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); } .post-art svg { width: 96px; height: 96px; color: #ff5a5e; } }
.post-layout { display: grid; gap: 40px; }
@media (min-width: 992px) { .post-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; } }
.post-page .article { max-width: 760px; }
.post-page .article h2 { color: var(--red); font-weight: 400; font-size: 1.7rem; margin: 1.6em 0 .5em; }
.post-page .article p, .post-page .article li { color: #444; font-size: 1.06rem; line-height: 1.75; }
.post-page .article ul, .post-page .article ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.post-page .article li { margin-bottom: .45em; }
.post-page .article a { color: var(--red-ink); text-decoration: underline; text-underline-offset: 2px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.post-tags span { font-size: .78rem; color: var(--red); background: #fff1f1; border-radius: 999px; padding: 4px 11px; }
.callout { background: #f3faf5; border-left: 4px solid #25a244; border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 24px 0; color: #24452d; font-size: 1.02rem; line-height: 1.6; }
.small-note { font-size: .88rem !important; color: #888 !important; font-style: italic; }
.post-cta { display: grid; gap: 16px; align-items: center; background: linear-gradient(120deg, #ff393e, #ff6b6f); color: #fff; border-radius: 16px; padding: 26px 28px; margin: 40px 0 28px; }
@media (min-width: 768px) { .post-cta { grid-template-columns: 1fr auto; } }
.post-page .post-cta h2 { color: #fff !important; font-size: 1.4rem; margin: 0 0 .3em; }
.post-page .post-cta p { color: #fff; margin: 0; font-size: 1rem; }
.post-cta .btn { background: #fff; color: var(--red) !important; border-color: #fff; text-decoration: none !important; }
.post-sources { border-top: 1px solid #eee; padding-top: 18px; }
.post-page .post-sources h2 { font-size: 1rem; color: #333; margin: 0 0 8px; }
.post-page .post-sources li { font-size: .9rem; color: #666; }
.post-aside { display: grid; gap: 18px; align-content: start; }
@media (min-width: 992px) { .post-aside { position: sticky; top: 120px; } }
.post-aside .aside-links a { text-decoration: none; }
/* index cards */
.ins-img { display: grid !important; place-items: center; aspect-ratio: 16 / 7; background: linear-gradient(135deg, #1f1f26, #2b2b35); position: relative; overflow: hidden; }
.ins-img::after { content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,57,62,.4), transparent 70%); }
.ins-img svg { width: 64px; height: 64px; color: #ff5a5e; position: relative; z-index: 1; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.ins-card:hover .ins-img svg { transform: scale(1.08); }
.ins-shield::after, .ins-chat::after { background: radial-gradient(circle, rgba(52,211,120,.35), transparent 70%); }
.ins-shield svg, .ins-chat svg { color: #5fe39a; }
/* Insights index: compact 2-column cards */
.blog-list .posts { display: grid; gap: 22px; align-content: start; }
@media (min-width: 768px) { .blog-list .posts { grid-template-columns: 1fr 1fr; } .blog-list .posts > .post-card:not(.ins-card), .blog-list .posts > .ins-feat { grid-column: 1 / -1; } }
.ins-card { display: flex !important; flex-direction: column; margin: 0 !important; }
.ins-card .ins-img { aspect-ratio: auto !important; height: 150px; }
.ins-feat .ins-img { height: 190px; }
.ins-card .body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px !important; }
.ins-card .body h2 { font-size: 1.3rem; line-height: 1.3; margin-bottom: .3em; }
.ins-feat .body h2 { font-size: 1.6rem; }
.ins-card .body .btn { margin-top: auto; align-self: flex-start; }
.ins-card .body > p:not(.post-tags):not(.meta) { margin-bottom: 14px; }
.blog-list .posts > .post-card:not(.ins-card) .post-img { aspect-ratio: auto; height: 220px; }
.incl-img .incl-ico { width: 64px; height: 64px; display: block; margin-bottom: 14px; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.incl-img > div:hover .incl-ico { transform: scale(1.07) rotate(-2deg); }

/* Back to top */
.to-top { position: fixed; right: clamp(14px, 2.5vw, 28px); bottom: clamp(14px, 2.5vw, 28px); z-index: 60; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; box-shadow: 0 12px 28px -10px rgba(255,57,62,.65); opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9); transition: opacity .35s, transform .45s cubic-bezier(.22,.61,.36,1), visibility .35s, background-color .25s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: #e32f34; color: #fff; transform: translateY(-3px); }
.to-top:focus-visible { outline: 3px solid rgba(255,57,62,.35); outline-offset: 3px; }
.to-top svg { width: 22px; height: 22px; transition: transform .3s; }
.to-top:hover svg { transform: translateY(-2px); }
@media print { .to-top { display: none; } }
