/* ===== L.S בניית אתרים — Modern Colorful Theme ===== */
:root {
  --ink: #171532;
  --muted: #5f6b85;
  --line: #e8e6f4;
  --bg: #ffffff;
  --bg-alt: #f6f5ff;
  --dark: #0e1130;
  --dark-2: #171a45;
  --violet: #7c3aed;
  --purple: #a855f7;
  --cyan: #06b6d4;
  --sky: #38bdf8;
  --pink: #ec4899;
  --orange: #fb923c;
  --yellow: #fbbf24;
  --green: #34d399;
  --navy: #1e1b4b;
  --navy-deep: #0e1130;
  --teal: #06b6d4;
  --grad: linear-gradient(120deg, var(--violet), var(--cyan));
  --grad-hot: linear-gradient(120deg, var(--pink), var(--orange));
  --grad-rainbow: linear-gradient(110deg, #7c3aed, #06b6d4, #ec4899, #fb923c);
  --shadow-sm: 0 4px 18px rgba(23, 21, 50, .08);
  --shadow-md: 0 18px 48px rgba(23, 21, 50, .16);
  --glow-violet: 0 10px 34px rgba(124, 58, 237, .35);
  --glow-cyan: 0 10px 34px rgba(6, 182, 212, .35);
  --radius: 18px;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', system-ui, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Touch: no accidental text-selection / long-press highlight on tap */
* { -webkit-tap-highlight-color: transparent; }
body {
  -webkit-user-select: none; -moz-user-select: none; user-select: none;
  -webkit-touch-callout: none;
}
input, textarea, select { -webkit-user-select: text; -moz-user-select: text; user-select: text; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 780px; }

::selection { background: var(--violet); color: #fff; }

/* ===== Buttons ===== */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 800; font-size: 1.05rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; overflow: hidden;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(120deg, var(--violet) 0%, var(--cyan) 55%, var(--pink) 110%);
  background-size: 180% 180%;
  color: #fff; box-shadow: var(--glow-violet);
  animation: gradShift 6s ease infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(124,58,237,.5); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; height: 100%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  left: -60%; transform: skewX(-20deg); transition: none;
}
.btn-primary:hover::after { left: 130%; transition: left .6s ease; }
.btn-ghost { background: transparent; color: var(--violet); border-color: #ddd3fb; }
.btn-ghost:hover { border-color: var(--violet); background: rgba(124,58,237,.06); }
.btn-whatsapp { background: linear-gradient(120deg, #22c55e, #10b981); color: #fff; box-shadow: 0 10px 28px rgba(34,197,94,.4); }
.btn-whatsapp:hover { transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.btn-block { width: 100%; }

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== Urgency bar ===== */
.urgency-bar {
  background: var(--grad-hot);
  background-size: 200% 200%;
  animation: gradShift 5s ease infinite;
  color: #fff; font-weight: 600; font-size: .95rem;
}
.urgency-inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 20px; flex-wrap: wrap; text-align: center; }
.urgency-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .4; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.2); } }
.urgency-cta { background: rgba(0,0,0,.22); padding: 4px 15px; border-radius: 999px; font-weight: 800; transition: background .2s, transform .2s; }
.urgency-cta:hover { background: rgba(0,0,0,.38); transform: scale(1.04); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: var(--grad-rainbow); background-size: 300% 100%;
  animation: gradShift 8s linear infinite; opacity: .85;
}
.header-inner { display: flex; flex-direction: row-reverse; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 9px; }
.logo-img { width: 34px; height: 34px; border-radius: 8px; display: block; flex-shrink: 0; }
.logo-text { font-weight: 500; color: var(--muted); font-size: .95rem; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { position: relative; font-weight: 600; color: var(--ink); font-size: 1rem; transition: color .2s; }
.nav a:not(.nav-cta):not(.nav-shop)::after {
  content: ""; position: absolute; bottom: -6px; right: 0; width: 0%; height: 2.5px;
  border-radius: 2px; background: var(--grad); transition: width .25s ease;
}
.nav a:not(.nav-cta):not(.nav-shop):hover { color: var(--violet); }
.nav a:not(.nav-cta):not(.nav-shop):hover::after { width: 100%; }
/* Cross-link pill (landing ⇄ store) — stands out but lighter than the CTA */
.nav-shop {
  border: 1.5px solid #d9cffb; color: var(--violet) !important; white-space: nowrap;
  padding: 8px 16px; border-radius: 999px; font-weight: 800; transition: all .2s;
}
.nav-shop:hover { background: rgba(124,58,237,.08); border-color: var(--violet); transform: translateY(-1px); }
.nav-cta {
  background: var(--grad); color: #fff !important; padding: 10px 22px; border-radius: 999px;
  box-shadow: var(--glow-violet); transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(124,58,237,.5); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--violet); border-radius: 2px; transition: .3s; }

/* ===== Hero (dark + color blobs) ===== */
.hero {
  position: relative; overflow: hidden;
  background: var(--dark);
  padding: 84px 0 96px;
  color: #fff;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; pointer-events: none;
}
.hero::before {
  width: 560px; height: 560px; top: -180px; right: -120px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  animation: blobFloat 11s ease-in-out infinite;
}
.hero::after {
  width: 520px; height: 520px; bottom: -200px; left: -120px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  animation: blobFloat 13s ease-in-out infinite reverse;
}
/* align-items:start (not center) so a late web-font swap changing the text column's
   height can't re-center and move the hero visual — eliminates its layout shift (CLS). */
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.hero-inner::before {
  content: ""; position: absolute; width: 380px; height: 380px; top: 30%; left: 38%;
  background: radial-gradient(circle, rgba(236,72,153,.45), transparent 70%);
  filter: blur(80px); z-index: -1; animation: blobFloat 9s ease-in-out infinite 1s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}
.badge {
  display: inline-block; background: rgba(251,191,36,.16); color: var(--yellow);
  border: 1px solid rgba(251,191,36,.35);
  font-weight: 700; font-size: .85rem; padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.14; color: #fff; }
.grad {
  background: var(--grad-rainbow); background-size: 250% 100%;
  animation: gradShift 5s ease infinite;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 1.2rem; color: #c1c6e4; margin: 18px 0 26px; max-width: 520px; }

.price-highlight {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 16px 22px; box-shadow: 0 14px 40px rgba(0,0,0,.3); margin-bottom: 26px;
}
.price-main { display: flex; align-items: flex-start; font-weight: 900; line-height: 1;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-main .currency { font-size: 1.6rem; margin-top: 6px; }
.price-main .amount { font-size: 3.4rem; }
.price-sub { display: flex; flex-direction: column; font-size: .95rem; }
.price-sub strong { color: #fff; }
.price-sub span { color: #aab1d6; font-size: .85rem; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { color: #dfe3ff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { border-color: var(--cyan); color: var(--sky); background: rgba(6,182,212,.1); }
.hero-points { display: flex; gap: 22px; list-style: none; margin-top: 26px; flex-wrap: wrap; color: #b6bce0; font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; }
.mock-browser {
  background: #fff; border-radius: 20px; box-shadow: 0 30px 70px rgba(0,0,0,.45);
  overflow: hidden; border: 1px solid rgba(255,255,255,.2); transform: rotate(1.5deg);
}
.mock-bar { display: flex; gap: 7px; padding: 12px 16px; background: #f2f0fc; border-bottom: 1px solid var(--line); }
.mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: #d9d4ee; }
.mock-bar span:first-child { background: var(--pink); }
.mock-bar span:nth-child(2) { background: var(--yellow); }
.mock-bar span:nth-child(3) { background: var(--green); }
.mock-body { padding: 22px; }
.mock-hero { height: 120px; border-radius: 12px; background: var(--grad-rainbow); background-size: 250% 100%; animation: gradShift 7s ease infinite; margin-bottom: 18px; }
.mock-line { height: 12px; border-radius: 6px; background: #eceafa; margin-bottom: 12px; }
.mock-line.w80 { width: 80%; } .mock-line.w60 { width: 60%; }
.mock-btn { width: 130px; height: 38px; border-radius: 999px; background: var(--grad-hot); margin: 18px 0; }
.mock-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mock-grid div { height: 60px; border-radius: 10px; }
.mock-grid div:nth-child(1) { background: rgba(124,58,237,.14); }
.mock-grid div:nth-child(2) { background: rgba(6,182,212,.14); }
.mock-grid div:nth-child(3) { background: rgba(236,72,153,.14); }

.floating-tag {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 16px; box-shadow: 0 14px 34px rgba(0,0,0,.35);
  display: grid; place-items: center; font-weight: 800; font-size: 1.3rem;
  width: 62px; height: 62px; color: var(--sky);
}
.tag-1 { top: -18px; left: -18px; animation: float 4s ease-in-out infinite; }
.tag-2 { bottom: -14px; right: -10px; animation: float 4s ease-in-out infinite 1.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Store "what's included" grid — center each card so content isn't right-hugging (desktop + mobile) */
#features .cards .card { text-align: center; }
#features .cards .card-icon { margin-inline: auto; }

/* Fully center card content in the services, guides (blog) and pro-builds sections */
#services .cards .card,
#blog .cards .card,
#probuilds .probuild-card { text-align: center; }
#services .cards .card-icon,
#blog .cards .card-icon,
#probuilds .probuild-icon { margin-inline: auto; }
/* Pro-build checklists: sit as a centered block, items stay right-aligned (checkmark readable) */
#probuilds .probuild-list { display: inline-grid; text-align: right; margin-inline: auto; }

/* ===== Shop hero mock (online-store page) ===== */
.shop-mock {
  background: #fff; border-radius: 22px; box-shadow: 0 30px 70px rgba(0,0,0,.45);
  overflow: hidden; border: 1px solid rgba(255,255,255,.2); transform: rotate(-1.5deg);
  min-height: 450px; /* reserves space so a webfont swap can't shift this block (CLS) */
}
.shop-top {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: #f2f0fc; border-bottom: 1px solid var(--line);
}
.shop-logo { font-weight: 900; font-size: .95rem; color: var(--ink); white-space: nowrap; }
.shop-search { flex: 1; height: 26px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.shop-cart { position: relative; font-size: 1.3rem; animation: cartWiggle 5s ease-in-out infinite; }
.shop-cart-count {
  position: absolute; top: -7px; left: -9px; display: grid; place-items: center;
  width: 19px; height: 19px; border-radius: 50%; background: var(--grad-hot); color: #fff;
  font-size: .68rem; font-weight: 900; box-shadow: 0 4px 12px rgba(236,72,153,.5);
  animation: cartPop 5s ease-in-out infinite;
}
@keyframes cartWiggle { 0%,86%,100% { transform: rotate(0); } 90% { transform: rotate(-12deg); } 94% { transform: rotate(10deg); } 97% { transform: rotate(-5deg); } }
@keyframes cartPop { 0%,86%,100% { transform: scale(1); } 91% { transform: scale(1.45); } 96% { transform: scale(1); } }

.shop-products { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding: 16px; }
.shop-product {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: #faf9ff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 10px 10px;
}
.shop-product.hot { border-color: rgba(236,72,153,.5); box-shadow: 0 8px 24px rgba(236,72,153,.14); }
.shop-product.soldout .sp-img { filter: grayscale(.6); opacity: .8; }
.sp-img { font-size: 2rem; line-height: 1; margin-bottom: 2px; }
.sp-name { font-size: .78rem; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.sp-price { font-size: .82rem; font-weight: 900; color: var(--violet); }
.sp-price s { color: var(--muted); font-weight: 500; margin-left: 3px; font-size: .72rem; }
.sp-btn {
  margin-top: 4px; font-size: .7rem; font-weight: 800; color: #fff;
  background: var(--grad); background-size: 200% 100%; animation: gradShift 6s ease infinite;
  padding: 4px 12px; border-radius: 999px;
}
.shop-product.hot .sp-btn { animation: gradShift 6s ease infinite, btnPulse 2.4s ease-in-out infinite; }
@keyframes btnPulse { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236,72,153,.45); } 50% { transform: scale(1.07); box-shadow: 0 0 0 7px rgba(236,72,153,0); } }
.sp-sale {
  position: absolute; top: 8px; right: 8px; background: var(--grad-hot); color: #fff;
  font-size: .62rem; font-weight: 900; padding: 2px 8px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(236,72,153,.4);
}
.sp-sale.sold { background: var(--dark); }

.shop-checkout {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 16px 16px; padding: 11px 16px; border-radius: 12px;
  background: var(--dark); color: #fff; font-size: .85rem; font-weight: 700;
  position: relative; overflow: hidden;
}
.shop-checkout::after {
  content: ""; position: absolute; top: 0; left: -60%; height: 100%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.18), transparent);
  animation: checkoutShine 3.5s ease infinite; transform: skewX(-20deg);
}
/* Animate via transform only (compositor-only, no layout/paint cost) instead of animating `left`. */
@keyframes checkoutShine {
  0% { transform: translateX(0) skewX(-20deg); }
  60%, 100% { transform: translateX(475%) skewX(-20deg); }
}
.shop-checkout b { color: var(--green); font-size: 1rem; }

.shop-toast {
  position: absolute; top: -20px; left: -14px; z-index: 3;
  display: flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink); font-size: .82rem; font-weight: 700;
  padding: 10px 16px; border-radius: 999px; box-shadow: 0 16px 40px rgba(0,0,0,.4);
  animation: toastLoop 7s ease-in-out infinite;
}
.shop-toast b { color: var(--violet); }
@keyframes toastLoop {
  0%, 8% { opacity: 0; transform: translateY(14px) scale(.9); }
  16%, 72% { opacity: 1; transform: translateY(0) scale(1); }
  82%, 100% { opacity: 0; transform: translateY(-12px) scale(.94); }
}
.shop-chip {
  position: absolute; z-index: 3;
  background: rgba(14,17,48,.92); border: 1px solid rgba(124,58,237,.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #eef0ff; font-size: .8rem; font-weight: 700; white-space: nowrap;
  padding: 9px 15px; border-radius: 999px; box-shadow: 0 14px 34px rgba(0,0,0,.45);
}
.chip-coupon { bottom: -16px; right: -8px; animation: float 4s ease-in-out infinite; }
.chip-ship { top: 42%; left: -26px; animation: float 4s ease-in-out infinite 1.4s; }

/* ===== Trust bar ===== */
.trustbar {
  background: var(--grad-rainbow); background-size: 300% 100%;
  animation: gradShift 10s ease infinite; color: #fff;
}
.trust-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 28px 0; text-align: center; }
.trust-inner strong { display: block; font-size: 1.8rem; font-weight: 900; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.25); }
.trust-inner span { font-size: .95rem; color: rgba(255,255,255,.85); }

/* ===== Marquee strip ===== */
.marquee {
  direction: ltr; overflow: hidden; background: var(--dark); color: #9aa2d8;
  border-block: 1px solid rgba(255,255,255,.08); padding: 13px 0;
}
.marquee-track { display: flex; gap: 34px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { white-space: nowrap; font-weight: 600; font-size: .95rem; }
.marquee-track .mq-dot { color: var(--pink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 84px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #f7f5ff 0%, #eefbff 100%); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: .5px; margin-bottom: 10px;
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow.light { background: linear-gradient(120deg, var(--sky), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--ink);
}
.section-head h2 { background: linear-gradient(120deg, var(--navy) 30%, var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.1rem; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card::before {
  content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px;
  background: var(--grad-rainbow); background-size: 300% 100%;
  animation: gradShift 8s ease infinite; opacity: 0; transition: opacity .25s;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

/* ===== Packages cross-nav (appears on each package page) ===== */
.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.pkg-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,.4); }
.pkg-emoji { font-size: 2.2rem; line-height: 1; }
.pkg-name { font-weight: 900; font-size: 1.15rem; color: var(--ink); }
.pkg-price { font-weight: 800; color: var(--violet); font-size: 1.05rem; }
.pkg-price small { color: var(--muted); font-weight: 500; font-size: .8rem; }
.pkg-desc { color: var(--muted); font-size: .88rem; }
.pkg-go { margin-top: 8px; font-weight: 800; font-size: .9rem;
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pkg-card.pkg-current {
  border-color: var(--violet); background: linear-gradient(180deg, #faf7ff, #fff);
  box-shadow: 0 12px 34px rgba(124,58,237,.16); cursor: default; pointer-events: none;
}
.pkg-current-tag {
  position: absolute; top: -12px; right: 50%; transform: translateX(50%);
  background: var(--grad); color: #fff; font-weight: 800; font-size: .74rem; padding: 3px 12px; border-radius: 999px;
}
@media (max-width: 860px){ .pkg-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== "Live demo" glowing button (links to lsweb.shop) ===== */
.btn-demo {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
  font-weight: 900; font-size: 1.05rem; color: #fff !important; text-decoration: none;
  padding: 15px 20px; border-radius: 10px; border: 2px solid transparent; cursor: pointer; margin-bottom: 18px;
  background: linear-gradient(120deg, #ec4899, #fb923c, #7c3aed, #06b6d4);
  background-size: 300% 100%;
  animation: demoGrad 5s linear infinite, demoPulse 1.8s ease-in-out infinite;
  position: relative; overflow: hidden;
}
.btn-demo:hover { filter: brightness(1.08); }
.btn-demo .live-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #ff2d2d; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,45,45,.75); animation: liveDot 1.2s ease-out infinite;
}
.btn-demo::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); animation: demoShine 2.6s ease-in-out infinite;
}
@keyframes demoGrad { to { background-position: 300% 0; } }
@keyframes demoPulse {
  0%,100% { box-shadow: 0 10px 28px rgba(236,72,153,.45), 0 0 0 0 rgba(251,146,60,.55); transform: translateY(0) scale(1); }
  50%     { box-shadow: 0 16px 42px rgba(124,58,237,.55), 0 0 26px 8px rgba(6,182,212,.4); transform: translateY(-2px) scale(1.035); }
}
@keyframes liveDot { 0% { box-shadow: 0 0 0 0 rgba(255,45,45,.75); } 100% { box-shadow: 0 0 0 9px rgba(255,45,45,0); } }
@keyframes demoShine { 0% { left: -60%; } 55%,100% { left: 130%; } }
/* Centered placement helper */
.demo-center { text-align: center; margin: 26px 0 26px; }
.section-head p.demo-center { margin-top: 48px; }
/* Compact size for tight spaces (inside cards/banners) */
.btn-demo-sm { padding: 10px 20px; font-size: .92rem; gap: 8px; }
/* Extra safety margin on narrow phones so text never wraps */
@media (max-width: 420px) {
  .btn-demo { font-size: .95rem; padding: 14px 16px; gap: 8px; }
  .btn-demo-sm { font-size: .86rem; padding: 9px 14px; gap: 6px; }
}
.btn-demo-card { margin-bottom: 16px; }
/* Respect reduced-motion / a11y "stop animations" */
html.a11y-stop .btn-demo, html.a11y-stop .btn-demo::after, html.a11y-stop .btn-demo .live-dot { animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  .btn-demo, .btn-demo::after, .btn-demo .live-dot { animation: none !important; }
}
.card-icon {
  display: grid; place-items: center; width: 58px; height: 58px; font-size: 1.7rem;
  border-radius: 16px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.12));
}
.cards .card:nth-child(3n+2) .card-icon { background: linear-gradient(135deg, rgba(236,72,153,.12), rgba(251,146,60,.12)); }
.cards .card:nth-child(3n) .card-icon { background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(52,211,153,.14)); }
.card h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 8px; }
.card p { color: var(--muted); }
.card.quote p { font-size: 1.05rem; color: var(--ink); font-style: italic; }
.quote-by { margin-top: 16px; }
.quote-by strong { color: var(--violet); display: block; }
.quote-by span { color: var(--muted); font-size: .9rem; }

/* ===== Custom development highlight ===== */
.customdev {
  position: relative; overflow: hidden; margin-top: 40px;
  background: var(--dark); color: #fff; border-radius: 24px;
  padding: 40px 38px; display: flex; align-items: center; gap: 30px;
  box-shadow: var(--shadow-md);
}
.customdev::before {
  content: ""; position: absolute; width: 380px; height: 380px; top: -140px; left: -100px;
  background: radial-gradient(circle, rgba(236,72,153,.45), transparent 70%); filter: blur(70px);
}
.customdev::after {
  content: ""; position: absolute; width: 340px; height: 340px; bottom: -140px; right: -80px;
  background: radial-gradient(circle, rgba(6,182,212,.4), transparent 70%); filter: blur(70px);
}
.customdev-text { position: relative; z-index: 2; flex: 1; }
.customdev > .btn { position: relative; z-index: 2; flex-shrink: 0; }
.customdev-badge {
  display: inline-block; background: rgba(251,191,36,.16); color: var(--yellow);
  border: 1px solid rgba(251,191,36,.35);
  font-weight: 700; font-size: .85rem; padding: 5px 14px; border-radius: 999px; margin-bottom: 12px;
}
.customdev h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 900; margin-bottom: 10px; }
.customdev p { color: #c1c6e4; max-width: 640px; margin-bottom: 16px; }
.customdev p strong { color: #fff; }
.customdev-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.customdev-tags li {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: 6px 14px; font-size: .88rem; font-weight: 600; color: #dfe3ff;
}

/* ===== Pro builds (WordPress / stores / web apps) ===== */
.probuild-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.probuild-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.probuild-card::before {
  content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--grad-rainbow); background-size: 300% 100%; animation: gradShift 8s ease infinite;
}
.probuild-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.probuild-card.featured { border-color: rgba(124,58,237,.45); box-shadow: 0 14px 44px rgba(124,58,237,.16); }
.probuild-flag {
  position: absolute; top: -14px; right: 22px;
  background: var(--grad-hot); color: #fff; font-weight: 800; font-size: .82rem;
  padding: 5px 14px; border-radius: 999px; box-shadow: 0 8px 22px rgba(236,72,153,.35);
}
.probuild-icon {
  display: inline-grid; place-items: center; width: 62px; height: 62px; font-size: 1.8rem;
  border-radius: 18px; margin-bottom: 16px; margin-inline: auto;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.12));
}
.probuild-icon.pb-shop { background: linear-gradient(135deg, rgba(236,72,153,.13), rgba(251,146,60,.13)); }
.probuild-icon.pb-app { background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(52,211,153,.14)); }
.probuild-card h3 { font-size: 1.3rem; font-weight: 900; color: var(--ink); margin-bottom: 10px; text-align: center; }
.probuild-card > p { color: var(--muted); margin-bottom: 18px; text-align: center; }
.probuild-list { list-style: none; margin-bottom: 22px; display: grid; gap: 9px; }
.probuild-list li { position: relative; padding-right: 26px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.probuild-list li::before { content: "✓"; position: absolute; right: 0; color: var(--green); font-weight: 900; }
.probuild-card .btn { margin-top: auto; }

.price-promise {
  position: relative; overflow: hidden; margin-top: 40px;
  background: var(--dark); color: #fff; border-radius: 24px;
  padding: 40px 38px; display: flex; align-items: center; gap: 30px;
  box-shadow: var(--shadow-md);
}
.price-promise::before {
  content: ""; position: absolute; width: 380px; height: 380px; top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(251,191,36,.35), transparent 70%); filter: blur(70px);
}
.price-promise::after {
  content: ""; position: absolute; width: 340px; height: 340px; bottom: -140px; left: -80px;
  background: radial-gradient(circle, rgba(124,58,237,.45), transparent 70%); filter: blur(70px);
}
.price-promise-text { position: relative; z-index: 2; flex: 1; }
.price-promise > .btn { position: relative; z-index: 2; flex-shrink: 0; }
.price-promise-actions {
  position: relative; z-index: 2; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
}
.price-promise-actions .btn-demo { justify-content: center; }
.price-promise-badge {
  display: inline-block; background: rgba(251,191,36,.16); color: var(--yellow);
  border: 1px solid rgba(251,191,36,.35);
  font-weight: 700; font-size: .85rem; padding: 5px 14px; border-radius: 999px; margin-bottom: 12px;
}
.price-promise h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 900; margin-bottom: 10px; }
.price-promise p { color: #c1c6e4; max-width: 640px; }
.price-promise p strong { color: #fff; }

/* ===== Blog cards ===== */
.blog-card { display: flex; flex-direction: column; }
.blog-card h3 { transition: color .2s; }
.blog-card:hover h3 { color: var(--violet); }
.blog-more {
  margin-top: auto; padding-top: 14px; font-weight: 800; font-size: .95rem;
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== SEO copy blocks ===== */
.seo-copy p { margin-bottom: 16px; color: var(--muted); line-height: 1.8; }
.seo-copy p:last-child { margin-bottom: 0; }

/* ===== Article pages ===== */
.article-page h2 { margin-top: 30px; }
.article-page li { margin-bottom: 10px; }
.article-cta {
  position: relative; overflow: hidden; margin-top: 38px; text-align: center;
  background: var(--dark); color: #fff; border-radius: 20px; padding: 34px 26px;
}
.article-cta::before {
  content: ""; position: absolute; width: 300px; height: 300px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(124,58,237,.5), transparent 70%); filter: blur(60px);
}
.article-cta h3 { position: relative; font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.article-cta p { position: relative; color: #c1c6e4 !important; margin-bottom: 18px; }
.article-cta .btn { position: relative; }

/* ===== Personal touch ===== */
.personal { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
.personal::before {
  content: ""; position: absolute; width: 500px; height: 500px; top: -160px; left: -140px;
  background: radial-gradient(circle, rgba(124,58,237,.5), transparent 70%);
  filter: blur(90px); animation: blobFloat 12s ease-in-out infinite;
}
.personal::after {
  content: ""; position: absolute; width: 460px; height: 460px; bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(236,72,153,.4), transparent 70%);
  filter: blur(90px); animation: blobFloat 10s ease-in-out infinite reverse;
}
.personal-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.personal-badge {
  display: inline-block; background: rgba(56,189,248,.14); color: var(--sky);
  border: 1px solid rgba(56,189,248,.3);
  font-weight: 700; padding: 7px 18px; border-radius: 999px; margin-bottom: 18px;
}
.personal h2 { color: #fff; font-size: clamp(1.7rem,3.5vw,2.5rem); font-weight: 900; }
.grad-light {
  background: linear-gradient(120deg, var(--sky), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.personal-lead { color: #c1c6e4; font-size: 1.15rem; margin: 18px auto 30px; max-width: 620px; }
.personal-points {
  list-style: none; display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 32px; text-align: center;
}
.personal-points li {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius); padding: 24px 16px; transition: transform .25s, border-color .25s;
}
.personal-points li:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.6); }
.personal-points strong { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.personal-points span { color: #aab1d6; font-size: .95rem; }

/* ===== Comparison table ===== */
.compare-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; align-items: center; }
.compare-row > div { padding: 16px 14px; border-bottom: 1px solid var(--line); text-align: center; }
.compare-row .c-feat { text-align: right; font-weight: 600; color: var(--ink); background: var(--bg-alt); }
.compare-row:last-child > div { border-bottom: none; }
.compare-head > div { font-weight: 800; color: #fff; background: var(--dark); }
.compare-head .c-me { background: var(--grad); background-size: 200% 100%; animation: gradShift 6s ease infinite; }
.compare-head .c-feat { background: var(--dark); text-align: center; color: #fff; }
.c-me {
  color: var(--violet); font-weight: 800; background: rgba(124,58,237,.06);
  display: flex; align-items: center; justify-content: center;
  text-align: center; align-self: stretch;
}
.c-me.yes { position: relative; z-index: 0; }
.c-me.yes::after {
  content: ""; position: absolute; z-index: -1;
  inset: 28% 6% 20% 6%; border-radius: 5px;
  background: rgba(52,211,153,.3); transform: rotate(-.6deg);
}
.c-them { color: var(--muted); }

/* ===== Mid CTA ===== */
.mid-cta {
  background: var(--grad-rainbow); background-size: 300% 100%;
  animation: gradShift 9s ease infinite; color: #fff;
}
.mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 44px 20px; flex-wrap: wrap; }
.mid-cta h2 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.mid-cta p { color: rgba(255,255,255,.94); margin-top: 6px; }

/* ===== Guarantee ===== */
.guarantee {
  margin-top: 16px; text-align: center; font-size: .92rem; color: var(--muted);
  background: linear-gradient(120deg, rgba(124,58,237,.06), rgba(6,182,212,.08));
  border: 1px dashed var(--violet);
  border-radius: 12px; padding: 12px 14px;
}
.guarantee strong { color: var(--violet); }

/* ===== Pricing ===== */
.pricing-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: start; }
.pricing-card {
  position: relative; background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-rainbow) border-box;
  border: 2.5px solid transparent; border-radius: 24px;
  padding: 36px 34px; box-shadow: var(--shadow-md);
}
.pricing-top { text-align: center; border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 22px; }
.pricing-name { font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pricing-price { display: flex; align-items: flex-start; justify-content: center; font-weight: 900; margin: 8px 0;
  background: linear-gradient(120deg, var(--violet), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricing-price .p-cur { font-size: 2rem; margin-top: 10px; }
.pricing-price .p-amt { font-size: 4.2rem; line-height: 1; }
.pricing-note { color: var(--muted); font-size: .9rem; }
.pricing-list { list-style: none; margin-bottom: 26px; }
.pricing-list li { padding: 10px 0; padding-right: 30px; position: relative; border-bottom: 1px dashed var(--line); }
.pricing-list li::before {
  content: "✓"; position: absolute; right: 0; top: 10px;
  color: #fff; background: linear-gradient(135deg, var(--violet), var(--cyan));
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .75rem; font-weight: 900;
}
.pricing-side {
  position: relative; overflow: hidden;
  background: var(--dark); color: #fff; border-radius: 24px; padding: 34px;
}
.pricing-side::before {
  content: ""; position: absolute; width: 300px; height: 300px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(6,182,212,.4), transparent 70%); filter: blur(60px);
}
.pricing-side h3 { position: relative; font-size: 1.4rem; margin-bottom: 12px; }
.pricing-side p { position: relative; color: #c1c6e4; }
.side-hint { position: relative; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); }
.side-hint strong { color: var(--sky); display: block; margin-bottom: 6px; }
.side-hint span { color: #c1c6e4; font-size: .95rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 16px;
  color: #fff; font-weight: 900; font-size: 1.3rem; border-radius: 50%;
  box-shadow: var(--glow-violet);
}
.steps .step:nth-child(1) .step-num { background: linear-gradient(135deg, var(--violet), var(--purple)); }
.steps .step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--cyan), var(--sky)); box-shadow: var(--glow-cyan); }
.steps .step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--pink), var(--orange)); box-shadow: 0 10px 30px rgba(236,72,153,.35); }
.steps .step:nth-child(4) .step-num { background: linear-gradient(135deg, var(--green), var(--cyan)); box-shadow: 0 10px 30px rgba(52,211,153,.35); }
.step h3 { color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ===== Portfolio ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.portfolio-grid.two { grid-template-columns: repeat(2,1fr); max-width: 860px; margin: 0 auto; }
.portfolio-item {
  aspect-ratio: 16/11; border-radius: var(--radius); position: relative; overflow: hidden;
  background: var(--dark); display: block;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-item:hover img { transform: scale(1.04); }
.pf-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; gap: 6px; text-align: center;
  padding: 22px; color: #fff;
  background: linear-gradient(to top, rgba(14,17,48,.96) 0%, rgba(14,17,48,.82) 22%, rgba(14,17,48,.4) 45%, transparent 72%);
}
.pf-name { font-weight: 900; font-size: 1.7rem; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.pf-tag { font-size: 1rem; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.7); }
.pf-cta {
  margin-top: 12px; font-weight: 800; background: var(--grad); background-size: 200% 100%;
  animation: gradShift 6s ease infinite;
  padding: 9px 22px; border-radius: 999px; box-shadow: var(--glow-violet);
}

/* "Live demo" chip on demo portfolio items */
.pf-demo-chip {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--grad-hot); color: #fff; font-weight: 800; font-size: .78rem;
  padding: 4px 12px; border-radius: 999px; box-shadow: 0 6px 18px rgba(236,72,153,.4);
}

/* ===== FAQ ===== */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 20px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq details[open] { border-color: #d5c8fa; }
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink); padding: 16px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--violet); font-size: 1.5rem; font-weight: 500; }
.faq details[open] summary::after { content: "–"; color: var(--pink); }
.faq details p { color: var(--muted); padding-bottom: 18px; }

/* ===== Contact ===== */
.contact { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
.contact::before {
  content: ""; position: absolute; width: 520px; height: 520px; top: -180px; left: -150px;
  background: radial-gradient(circle, rgba(6,182,212,.4), transparent 70%);
  filter: blur(90px); animation: blobFloat 12s ease-in-out infinite;
}
.contact::after {
  content: ""; position: absolute; width: 480px; height: 480px; bottom: -200px; right: -120px;
  background: radial-gradient(circle, rgba(124,58,237,.5), transparent 70%);
  filter: blur(90px); animation: blobFloat 10s ease-in-out infinite reverse;
}
.contact-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.contact-text h2 { color: #fff; font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 900; }
.contact-text p { color: #c1c6e4; margin: 12px 0 24px; font-size: 1.1rem; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact-line { color: #dbe0ff; font-weight: 500; transition: color .2s; }
.contact-line:hover { color: var(--sky); }

.contact-form {
  background: rgba(255,255,255,.98); border-radius: 24px; padding: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.4);
  display: flex; flex-direction: column; gap: 14px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fbfaff; color: var(--ink);
  transition: border .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,.15);
}
.form-msg { text-align: center; font-weight: 700; color: var(--cyan); }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: #aab1d6; padding: 44px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.footer-brand .logo-text { color: #aab1d6; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { transition: color .2s; }
.footer-nav a:hover { color: var(--sky); }
.footer-copy { font-size: .9rem; color: #7a82ad; }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #10b981); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.5); transition: transform .2s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== Accessibility widget ===== */
.a11y-toggle {
  position: fixed; bottom: 88px; right: 22px; z-index: 62;
  width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); background-size: 200% 200%; animation: gradShift 6s ease infinite;
  color: #fff; display: grid; place-items: center;
  box-shadow: var(--glow-violet); transition: transform .2s;
}
.a11y-toggle:hover { transform: scale(1.1); }
.a11y-panel {
  position: fixed; bottom: 150px; right: 22px; z-index: 63;
  width: 270px; max-width: calc(100vw - 44px); background: #fff;
  border-radius: 18px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
  padding: 16px; overflow: hidden;
}
.a11y-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.a11y-head h3 { font-size: 1.1rem; color: var(--ink); }
.a11y-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--muted); }
.a11y-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-actions button {
  font-family: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
  background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink);
  border-radius: 10px; padding: 10px 6px; transition: background .15s, border .15s;
}
.a11y-actions button:hover { border-color: var(--violet); }
.a11y-actions button.active { background: var(--grad); color: #fff; border-color: transparent; }
.a11y-actions .a11y-reset { grid-column: 1 / -1; background: #fff; color: var(--violet); }
.a11y-statement-link { display: block; margin-top: 12px; text-align: center; color: var(--violet); font-weight: 600; font-size: .9rem; }

/* Accessibility state classes (applied to <html>) */
html.a11y-contrast { filter: contrast(1.35); }
html.a11y-grayscale { filter: grayscale(1); }
html.a11y-contrast.a11y-grayscale { filter: contrast(1.35) grayscale(1); }
html.a11y-links a { text-decoration: underline !important; color: #0b4a8f !important; }
html.a11y-readable, html.a11y-readable body { font-family: Arial, "Times New Roman", serif !important; }
html.a11y-stop * { animation: none !important; transition: none !important; }
html.a11y-stop .reveal { opacity: 1 !important; transform: none !important; }

/* ===== Legal / content page ===== */
.legal-page { padding: 50px 0 70px; }
.back-link { display: inline-block; color: var(--violet); font-weight: 600; margin-bottom: 18px; }
.back-link:hover { color: var(--pink); }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: var(--ink); }
.legal-updated { color: var(--muted); font-size: .9rem; margin: 6px 0 26px; }
.legal-page h2 { color: var(--violet); font-size: 1.35rem; margin: 28px 0 10px; }
.legal-page p { color: var(--ink); margin-bottom: 12px; }
.legal-page ul { margin: 0 22px 14px; color: var(--ink); }
.legal-page ul li { margin-bottom: 8px; }
.legal-page a { color: var(--violet); font-weight: 600; }
.legal-contact {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; line-height: 2;
}

/* ===== Cookie bar ===== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 26px rgba(23,21,50,.12);
}
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; flex-wrap: wrap; }
.cookie-inner p { color: var(--ink); font-size: .92rem; margin: 0; flex: 1; min-width: 260px; }
.cookie-btns { display: flex; align-items: center; gap: 12px; }
.cookie-btns .btn-primary { padding: 10px 26px; font-size: .95rem; }
.cookie-decline { background: none; border: none; color: var(--muted); font-weight: 600; cursor: pointer; text-decoration: underline; font-family: inherit; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn-primary, .urgency-bar, .trustbar, .mid-cta, .logo-mark, .grad, .a11y-toggle { animation: none !important; }
}

/* ===== Back to top ===== */
.to-top {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--dark); color: #fff; font-size: 1.4rem; font-weight: 700;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--violet); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .cards, .steps, .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .probuild-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .price-promise { flex-direction: column; text-align: center; padding: 32px 22px; }
  .pricing-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }

  /* Center hero content on tablet/mobile */
  .hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-points { justify-content: center; }
  .price-highlight { margin-inline: auto; }
  .portfolio-grid.two { grid-template-columns: 1fr; max-width: 460px; }

  /* Center contact block on tablet/mobile */
  .contact-text { text-align: center; }
  .contact-methods { align-items: center; }
}
@media (max-width: 640px) {
  /* Hide urgency banner on mobile — keeps the top clean */
  .urgency-bar { display: none; }

  .customdev { flex-direction: column; text-align: center; padding: 32px 22px; }
  .customdev-tags { justify-content: center; }
  .probuild-card { text-align: center; padding: 30px 22px; }
  .probuild-icon { margin-inline: auto; }
  .probuild-list { display: inline-grid; text-align: right; margin-inline: auto; margin-bottom: 22px; }

  .nav {
    position: fixed; inset: 72px 0 auto 0; z-index: 49; background: #fff; flex-direction: column;
    padding: 20px; gap: 14px; border-bottom: 1px solid var(--line);
    transform: translateY(-160%); visibility: hidden; opacity: 0;
    transition: transform .3s, opacity .25s, visibility .3s; box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); visibility: visible; opacity: 1; }
  .nav-toggle { display: flex; }
  .cards, .steps, .portfolio-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .price-highlight { flex-direction: row; }

  /* Center card content on mobile */
  .card { text-align: center; }
  .card-icon { margin-inline: auto; }
  .card.quote .quote-by { text-align: center; }
  .pricing-card { text-align: center; }
  .pricing-list { display: inline-block; text-align: right; margin-inline: auto; }
  .personal-points { grid-template-columns: 1fr; }
  .mid-cta-inner { flex-direction: column; text-align: center; }
  .compare-row > div { padding: 12px 6px; font-size: .82rem; }
  .compare-row .c-feat { font-size: .82rem; }
}
