@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============ Design tokens — Crisant-inspired warm/light theme ============ */
:root {
  --bg: #faf7f2;          /* warm cream page */
  --bg-alt: #f3ede4;      /* section alt */
  --bg-warm: #fff4ef;     /* peach tint */
  --surface: #ffffff;     /* cards */
  --surface-2: #fbf8f3;
  --border: rgba(46, 46, 61, 0.10);
  --border-2: rgba(46, 46, 61, 0.16);
  --text: #2e2e3d;        /* primary text */
  --heading: #22222e;
  --muted: #5d5d74;
  --muted-2: #7c7c93;
  --brand: #fd6037;       /* orange */
  --brand-2: #fea348;     /* amber */
  --brand-strong: #ef4517;
  --accent: #2fb872;      /* subtle green (status dot) */
  --grad: linear-gradient(90deg, #fd6037 0%, #fea348 100%);
  --grad-soft: linear-gradient(135deg, rgba(253, 96, 55, 0.10), rgba(254, 163, 72, 0.10));
  --shadow: 0 24px 60px -24px rgba(46, 46, 61, 0.28);
  --shadow-sm: 0 10px 30px -16px rgba(46, 46, 61, 0.25);
  --shadow-brand: 0 18px 40px -14px rgba(253, 96, 55, 0.40);
  --footer-bg: #15151d;
  --footer-text: #c9c9d6;
  --footer-muted: #8f8fa6;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1280px;
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

/* ============ Reset ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 93.75%; } /* 16px → 15px base for a slightly more compact layout */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: rgba(253, 96, 55, 0.22); }

/* ============ Layout helpers ============ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading);
}
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -12px rgba(253, 96, 55, 0.55); }
.btn--ghost { background: rgba(46, 46, 61, 0.04); border: 1px solid var(--border-2); color: var(--text); }
.btn--ghost:hover { background: rgba(46, 46, 61, 0.08); transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #062b14; font-weight: 700; }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(37, 211, 102, 0.5); }
.btn--light { background: #fff; color: #22222e; }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.3); }
.btn--outline { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }
.btn--outline:hover { background: rgba(255, 255, 255, 0.15); }
.btn--block { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid var(--border-2);
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 184, 114, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(47, 184, 114, 0.28); }
  50% { box-shadow: 0 0 0 7px rgba(47, 184, 114, 0); }
}

/* ============ Navbar ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -20px rgba(46, 46, 61, 0.4);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { display: block; height: 40px; width: auto; }
.brand__logo--footer { height: 44px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: var(--shadow-brand);
}
.brand__mark svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; }
.brand__text span { color: var(--brand); }
@media (max-width: 560px) {
  .brand__logo { height: 34px; }
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) { color: var(--muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; position: relative; }
.nav__links > a:not(.btn):hover { color: var(--heading); }
.nav__links > a.is-active { color: var(--brand); }
.nav__links > a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad); border-radius: 2px;
}
.nav__cta { padding: 10px 20px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--heading); }
.nav__toggle:hover { background: rgba(46, 46, 61, 0.06); }

/* ============ Hero ============ */
.hero {
  position: relative; padding: 170px 0 120px; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(168deg, #fff1e9 0%, #fdeee2 34%, var(--bg) 72%);
  border-bottom: 1px solid var(--border);
}
.hero > .container { width: 100%; }
.hero__glow {
  position: absolute; top: -25%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; max-width: 120vw;
  background: radial-gradient(circle, rgba(253, 96, 55, 0.22), rgba(254, 163, 72, 0.12) 40%, transparent 65%);
  filter: blur(10px); pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5.6vw, 4.1rem); line-height: 1.03; letter-spacing: -0.035em; margin: 20px 0 0; color: var(--heading); }
.hero__accent { color: var(--brand); }
.hero__dot { color: var(--heading); }
.hero__divider { display: block; width: 60px; height: 5px; border-radius: 999px; background: var(--grad); margin: 22px 0 20px; }
.hero__text { color: var(--muted-2); font-size: 1.08rem; font-weight: 500; line-height: 1.7; max-width: 540px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 26px 0 10px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.hero__trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* Hero entrance animations (run once on load) */
@keyframes heroSlideIn { from { opacity: 0; transform: translateX(-46px); } to { opacity: 1; transform: none; } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero__content > .pill { animation: heroFadeUp 0.6s 0.05s both; }
.hero__title { animation: heroSlideIn 0.85s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__divider { animation: heroSlideIn 0.7s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero__text { animation: heroFadeUp 0.6s 0.52s both; }
.hero__actions { animation: heroFadeUp 0.6s 0.64s both; }
.hero__stats { animation: heroFadeUp 0.6s 0.76s both; }
@media (prefers-reduced-motion: reduce) {
  .hero__content > .pill, .hero__title, .hero__divider, .hero__text, .hero__actions, .hero__stats { animation: none; }
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 40px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border-top: 1px solid var(--border); padding-top: 28px; }
.hero__stats strong { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stats span { font-size: 0.82rem; color: var(--muted-2); }

.hero__visual { position: relative; padding: 10px; }
/* Rotating self-framed client screenshots */
.hero-shots {
  position: relative; width: 100%; aspect-ratio: 1900 / 960;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  background: var(--bg-alt);
  animation: floatCard 7s ease-in-out infinite;
}
.hero-shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-shot.is-active { opacity: 1; }
/* Layered depth panel peeking behind the main window */
.mock-back {
  position: absolute; top: -14px; left: 22px; right: -8px; height: 88%;
  background: linear-gradient(160deg, #ffffff, #fbeee7);
  border: 1px solid var(--border); border-radius: 20px;
  box-shadow: 0 20px 50px -30px rgba(46, 46, 61, 0.5);
  transform: rotate(-3deg); opacity: 0.75;
}
.mock {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-2);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
  animation: floatCard 7s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.mock__bar > span { width: 11px; height: 11px; border-radius: 50%; }
.mock__bar > span:nth-child(1) { background: #ff5f57; }
.mock__bar > span:nth-child(2) { background: #febc2e; }
.mock__bar > span:nth-child(3) { background: #28c840; }
.mock__url { margin-left: 10px; flex: 1; font-size: 0.72rem; color: var(--muted-2); background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 4px 12px; }
/* real client screenshots — crossfading carousel */
.mock__shots { position: relative; width: 100%; aspect-ratio: 4 / 3.7; background: var(--bg-alt); }
.mock__shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity 0.8s ease;
}
.mock__shot.is-active { opacity: 1; }
.mock__dots { display: flex; justify-content: center; gap: 7px; margin-top: 18px; }
.mock__dots button {
  width: 8px; height: 8px; border-radius: 999px; padding: 0;
  background: var(--border-2); cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.mock__dots button:hover { background: var(--muted-2); }
.mock__dots button.is-active { width: 22px; background: var(--grad); }
/* mini site nav */
.mock__nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.mock__logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.82rem; color: var(--heading); font-family: var(--font-display); }
.mock__logo-mark { width: 18px; height: 18px; border-radius: 6px; background: var(--grad); }
.mock__menu { display: flex; gap: 12px; }
.mock__menu i { width: 26px; height: 7px; border-radius: 4px; background: #ece6dc; }
.mock__navbtn { width: 60px; height: 22px; border-radius: 6px; background: var(--grad); }
/* mini hero */
.mock__body { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; padding: 22px 20px; align-items: center; }
.mock__chip { display: block; width: 74px; height: 16px; border-radius: 999px; background: var(--grad-soft); border: 1px solid var(--border-2); margin-bottom: 14px; }
.mock__h { height: 16px; border-radius: 5px; background: #26263a; margin-bottom: 10px; }
.mock__h--1 { width: 92%; }
.mock__h--2 { width: 66%; background: var(--grad); }
.mock__p { height: 8px; border-radius: 4px; background: #ece6dc; margin-bottom: 8px; }
.mock__p { width: 100%; } .mock__p--s { width: 70%; }
.mock__cta { width: 92px; height: 30px; border-radius: 8px; background: var(--grad); margin-top: 14px; box-shadow: 0 8px 16px -6px rgba(253, 96, 55, 0.5); }
.mock__media { position: relative; height: 118px; border-radius: 14px; background: radial-gradient(circle at 65% 30%, #ffe3d5, #f4efe7); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; padding: 14px; }
.mock__avatar { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; background: var(--grad); box-shadow: var(--shadow-sm); }
.mock__media-line { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.85); width: 80%; }
.mock__media-line--s { width: 55%; }
/* feature pills row */
.mock__pills { display: flex; gap: 10px; padding: 0 20px 22px; }
.mock__pills span { flex: 1; height: 30px; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); }

/* Floating conversion card */
.hero__card {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 11px;
  padding: 13px 16px; border-radius: 14px;
  background: #fff; border: 1px solid var(--border-2);
  box-shadow: var(--shadow); animation: floatBadge 6s ease-in-out infinite;
}
.hero__card--stat { bottom: 4%; left: -6%; }
.hero__card-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad); color: #fff; flex-shrink: 0; }
.hero__card-txt { display: flex; flex-direction: column; line-height: 1.15; }
.hero__card-txt strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--heading); }
.hero__card-txt em { font-style: normal; font-size: 0.74rem; color: var(--muted-2); font-weight: 600; }

.floaty {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border-2); font-size: 0.83rem; font-weight: 600;
  box-shadow: var(--shadow-sm); color: var(--heading);
  animation: floatBadge 5s ease-in-out infinite;
}
.floaty svg { color: var(--brand); }
.floaty--2 { top: 20%; right: -8%; animation-delay: 1.2s; }
.floaty--3 { top: 4%; left: 4%; animation-delay: 2.4s; }
.floaty--3 svg { color: var(--brand-2); }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============ Inner page hero ============ */
.page-hero {
  position: relative; overflow: hidden;
  padding: 140px 0 60px;
  background: linear-gradient(168deg, #fff1e9 0%, #fdeee2 38%, var(--bg) 82%);
  border-bottom: 1px solid var(--border);
}
.page-hero__glow {
  position: absolute; top: -40%; right: -5%;
  width: 620px; height: 620px; max-width: 90vw;
  background: radial-gradient(circle, rgba(253, 96, 55, 0.18), transparent 65%);
  filter: blur(10px); pointer-events: none;
}
.page-hero .container { position: relative; }
.crumb { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 600; margin-bottom: 18px; }
.crumb a { color: var(--muted); transition: color 0.2s ease; }
.crumb a:hover { color: var(--brand); }
.crumb__sep { color: var(--muted-2); }
.crumb__current { color: var(--brand); }
.page-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--heading); }
.page-hero__sub { color: var(--muted); font-size: 1.08rem; max-width: 620px; margin-top: 16px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ============ 404 ============ */
.notfound { text-align: center; padding: 160px 0 120px; }
.notfound__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--heading); margin: 12px 0 12px; }
.notfound p { color: var(--muted); max-width: 460px; margin: 0 auto 26px; }

/* ============ Cards / Services ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(253, 96, 55, 0.4); box-shadow: var(--shadow); }
.service__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--brand);
}
.service h3 { font-family: var(--font-display); font-size: 1.22rem; margin-bottom: 10px; color: var(--heading); }
.service p { color: var(--muted); font-size: 0.96rem; }
.service__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; font-size: 0.92rem; color: var(--brand);
}
.service__link svg { transition: transform 0.2s ease; }
.service:hover .service__link svg { transform: translateX(4px); }

/* ============ Industries ============ */
.industry { padding: 26px 24px; text-align: left; }
.industry__icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--brand);
  transition: background 0.25s ease, color 0.25s ease;
}
.industry:hover .industry__icon { background: var(--grad); color: #fff; border-color: transparent; }
.industry h3 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 8px; color: var(--heading); }
.industry p { color: var(--muted); font-size: 0.92rem; }

/* ============ About ============ */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__panel {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.about__row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-weight: 600; }
.about__row:last-of-type { border-bottom: none; }
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot--a { background: #fd6037; } .dot--b { background: #fea348; }
.dot--c { background: #2fb872; } .dot--d { background: #f6c445; }
.about__progress { height: 8px; border-radius: 999px; background: var(--bg-alt); margin-top: 22px; overflow: hidden; }
.about__progress-bar { height: 100%; width: 92%; background: var(--grad); border-radius: 999px; }
.about__progress-label { font-size: 0.82rem; color: var(--muted-2); margin-top: 10px; }
.about__badge {
  position: absolute; right: -14px; top: -22px; z-index: 2;
  background: var(--grad); color: #fff; border-radius: 16px;
  padding: 16px 20px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-brand);
}
.about__badge strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.about__badge span { font-size: 0.74rem; font-weight: 600; line-height: 1.2; }
.about__content > p { color: var(--muted); margin: 8px 0 22px; font-size: 1.03rem; }
.ticks { display: grid; gap: 13px; margin-bottom: 30px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: 0.98rem; }
.tick { width: 22px; height: 22px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; color: #fff; }

/* ============ Work ============ */
.work { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.work:hover { transform: translateY(-6px); border-color: rgba(253, 96, 55, 0.4); box-shadow: var(--shadow); }
.work__thumb {
  position: relative; display: block; aspect-ratio: 1900 / 960; overflow: hidden;
  background: var(--bg-alt);
}
.work__thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.5s ease;
}
.work:hover .work__thumb img { transform: scale(1.04); }
.work__tag { position: absolute; top: 14px; left: 14px; font-size: 0.72rem; font-weight: 600; color: #fff; padding: 5px 11px; border-radius: 999px; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.2); }
.work__meta { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; }
.work__meta h3 { font-family: var(--font-display); font-size: 1.12rem; color: var(--heading); }
.work__meta p { color: var(--muted); font-size: 0.9rem; }
.work__arrow { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border-2); color: var(--brand); transition: background 0.2s, transform 0.2s, color 0.2s; }
.work:hover .work__arrow { background: var(--grad); color: #fff; transform: rotate(-45deg); border-color: transparent; }

/* ============ Process ============ */
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.process-head { margin-bottom: 26px; }
.process-head .section__title { text-align: left; }
.process-intro { color: var(--muted); margin-top: 14px; font-size: 1rem; line-height: 1.65; max-width: 470px; }

.process-acc { display: grid; }
.pacc { border-top: 1px solid var(--border); }
.pacc:last-child { border-bottom: 1px solid var(--border); }
.pacc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 2px; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--heading);
  transition: color 0.2s ease;
}
.pacc__head:hover { color: var(--brand); }
.pacc__num { color: var(--brand); }
.pacc.is-open .pacc__num { color: var(--brand); }
/* +/- toggle drawn with two bars */
.pacc__toggle { position: relative; width: 22px; height: 22px; flex-shrink: 0; color: var(--muted); }
.pacc.is-open .pacc__toggle { color: var(--brand); }
.pacc__toggle::before, .pacc__toggle::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.pacc__toggle::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.pacc__toggle::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); transition: opacity 0.25s ease, transform 0.25s ease; }
.pacc.is-open .pacc__toggle::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.pacc__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s ease; }
.pacc.is-open .pacc__body { grid-template-rows: 1fr; }
.pacc__body > p { overflow: hidden; color: var(--muted); font-size: 0.96rem; line-height: 1.7; }
.pacc.is-open .pacc__body > p { background: var(--grad-soft); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 18px; }

/* Vertical numbered steps */
.process-steps { display: flex; flex-direction: column; justify-content: space-between; min-height: 476px; }
.pstep {
  position: relative; display: flex; align-items: center; gap: 20px;
  padding: 16px 20px; text-align: left; border-radius: 16px; cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
/* connector line to the next step */
.pstep::before { content: ''; position: absolute; left: 43px; top: 74px; height: calc(100% - 26px); width: 2px; background: var(--border); z-index: 0; }
.pstep:last-child::before { display: none; }
.pstep__num {
  position: relative; z-index: 1; width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--surface); border: 2px solid var(--border-2);
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--muted-2);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pstep__info { display: flex; flex-direction: column; gap: 3px; }
.pstep__label { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--heading); line-height: 1.2; }
.pstep__deliverable { font-size: 0.86rem; color: var(--muted-2); }
.pstep:hover { background: var(--surface); }
.pstep.is-active { background: var(--surface); box-shadow: var(--shadow-sm); }
.pstep.is-active .pstep__num { background: var(--grad); border-color: transparent; color: #fff; box-shadow: var(--shadow-brand); }
.pstep.is-active .pstep__label { color: var(--brand); }

@media (max-width: 860px) {
  .process-layout { grid-template-columns: 1fr; gap: 30px; }
  .process-head .section__title { text-align: left; }
  .process-steps { min-height: 0; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============ Testimonials / Reviews ============ */
.reviews-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.reviews-head .section__title { text-align: left; }
.reviews-head__sub { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); margin-top: 14px; font-size: 1.04rem; }
.reviews-head__sub svg { color: var(--brand-2); flex-shrink: 0; }

.review { display: flex; flex-direction: column; gap: 16px; padding: 26px; }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review__stars { display: flex; gap: 3px; color: var(--brand-2); }
.review__badge {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted-2); padding: 5px 11px; border-radius: 999px; border: 1px solid var(--border-2);
  white-space: nowrap;
}
.review blockquote { color: var(--text); font-size: 0.97rem; line-height: 1.65; }
.review__readmore {
  color: var(--brand); font-weight: 700; font-size: 0.9rem;
  padding-bottom: 18px; border-bottom: 1px solid var(--border); transition: color 0.2s ease;
}
.review__readmore:hover { color: var(--brand-strong); }
.review__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.review__foot strong { display: block; color: var(--heading); font-size: 0.98rem; }
.review__time { color: var(--muted-2); font-size: 0.84rem; }
.review__link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-weight: 600; font-size: 0.88rem; white-space: nowrap; transition: color 0.2s ease; }
.review__link:hover { color: var(--brand-strong); }

.reviews-more { margin-top: 34px; }
.reviews-more a { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 700; transition: gap 0.2s ease, color 0.2s ease; }
.reviews-more a:hover { gap: 13px; color: var(--brand-strong); }

/* ============ Technologies ============ */
.tech-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
  max-width: max-content; margin: 0 auto clamp(36px, 5vw, 54px);
  padding: 6px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--border);
}
.tech-tab {
  padding: 11px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem; color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.tech-tab:hover { color: var(--heading); }
.tech-tab.is-active { background: #fff; color: var(--heading); box-shadow: var(--shadow-sm); }

.tech-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 26px 16px; max-width: 960px; margin: 0 auto; justify-items: center;
}
.tech { display: flex; flex-direction: column; align-items: center; gap: 14px; animation: techPop 0.45s both; }
@keyframes techPop { from { opacity: 0; transform: translateY(14px) scale(0.96); } to { opacity: 1; transform: none; } }
.tech__hex {
  width: 92px; height: 100px; display: grid; place-items: center;
  background: #fff;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  filter: drop-shadow(0 10px 20px rgba(46, 46, 61, 0.13));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.tech:hover .tech__hex { transform: translateY(-7px); filter: drop-shadow(0 16px 26px rgba(46, 46, 61, 0.2)); }
.tech__hex svg { width: 42px; height: 42px; }
.tech__name { font-weight: 600; font-size: 0.9rem; color: var(--text); text-align: center; }

@media (max-width: 520px) {
  .tech-grid { grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 20px 12px; }
  .tech__hex { width: 78px; height: 86px; }
  .tech__hex svg { width: 36px; height: 36px; }
  .tech-tab { padding: 9px 16px; font-size: 0.86rem; }
}

/* ============ Articles / Blog ============ */
.article { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); display: flex; flex-direction: column; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.article:hover { transform: translateY(-6px); border-color: rgba(253, 96, 55, 0.4); box-shadow: var(--shadow); }
.article__thumb {
  position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 60%),
    linear-gradient(150deg, #2b2b3a, #15151d);
}
.article__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.article:hover .article__thumb img { transform: scale(1.05); }
.article__cat { position: absolute; z-index: 2; top: 14px; left: 14px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; padding: 5px 12px; border-radius: 999px; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.22); }
.article__icon { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; }
.article__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article__meta { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; color: var(--muted-2); font-weight: 600; }
.article__sep { color: var(--brand); }
.article__body h3 { font-family: var(--font-display); font-size: 1.14rem; line-height: 1.3; }
.article__body h3 a { color: var(--heading); transition: color 0.2s ease; }
.article__body h3 a:hover { color: var(--brand); }
.article__body p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.article__link { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-weight: 700; font-size: 0.9rem; margin-top: 4px; transition: gap 0.2s ease, color 0.2s ease; }
.article__link:hover { gap: 11px; color: var(--brand-strong); }
.articles-more { text-align: center; margin-top: 40px; }
/* Compact card (Related Articles): title only, no excerpt/read-more */
.article--compact .article__body { gap: 8px; }
.article--compact .article__body h3 { margin-bottom: 2px; }

/* ============ Locations / Areas served ============ */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 52px); align-items: center; }
.locations-content { display: flex; flex-direction: column; }
.locations { display: flex; flex-wrap: wrap; gap: 12px; }
.location-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 0.94rem;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.location-chip svg { color: var(--brand); }
.location-chip:hover { transform: translateY(-2px); border-color: rgba(253, 96, 55, 0.45); color: var(--brand); box-shadow: var(--shadow-sm); }
.locations__note { color: var(--muted-2); font-size: 0.95rem; line-height: 1.6; margin: 22px 0 0; }
.locations__cta { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.locations__cta p { color: var(--muted); font-size: 1rem; line-height: 1.6; }

.locations-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-2); box-shadow: var(--shadow); min-height: 400px; background: var(--bg-alt); }
.locations-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; filter: saturate(1.05); }

@media (max-width: 860px) {
  .locations-grid { grid-template-columns: 1fr; gap: 32px; }
  .locations-map, .locations-map iframe { min-height: 320px; }
}

/* ============ Services page ============ */
.svc-features { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 84px); }
.svc-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.svc-feature--rev .svc-feature__content { order: 2; }
.svc-feature__tag { display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.svc-feature__content h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; color: var(--heading); }
.svc-feature__content > p { color: var(--muted); margin: 14px 0 22px; line-height: 1.75; }
.svc-feature__content .ticks { margin-bottom: 28px; }
.svc-subgroups { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; margin-bottom: 28px; align-items: start; }
.svc-subgroup__title { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.svc-subgroup .ticks { margin-bottom: 0; gap: 11px; }
.svc-subgroup .ticks li { font-size: 0.94rem; }
@media (max-width: 560px) { .svc-subgroups { grid-template-columns: 1fr; gap: 22px; } }
.svc-feature__media { position: relative; aspect-ratio: 16 / 12; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--bg-alt); }
.svc-feature__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.svc-feature:hover .svc-feature__media img { transform: scale(1.04); }
.svc-feature__ic { position: absolute; left: 16px; bottom: 16px; width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }

/* Why-choose reason chips */
.why-reason { display: flex; align-items: center; gap: 15px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 22px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.why-reason:hover { border-color: rgba(253, 96, 55, 0.4); box-shadow: var(--shadow-sm); }
.why-reason__ic { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-brand); }
.why-reason p { color: var(--text); font-weight: 500; font-size: 0.98rem; line-height: 1.4; }

/* Featured project cards */
.proj-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.proj-card:hover { transform: translateY(-6px); border-color: rgba(253, 96, 55, 0.4); box-shadow: var(--shadow); }
.proj-card__thumb { display: block; aspect-ratio: 1900 / 960; overflow: hidden; background: var(--bg-alt); }
.proj-card__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.proj-card:hover .proj-card__thumb img { transform: scale(1.04); }
.proj-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.proj-card__body h3 { font-family: var(--font-display); font-size: 1.16rem; color: var(--heading); }
.proj-card__industry { display: block; color: var(--brand); font-weight: 600; font-size: 0.86rem; margin-top: 3px; }
.proj-card__meta { display: grid; gap: 12px; margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--border); }
.proj-card__meta div { display: grid; gap: 2px; }
.proj-card__meta dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.proj-card__meta dd { margin: 0; color: var(--text); font-size: 0.92rem; font-weight: 500; }
.proj-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--brand); font-weight: 700; font-size: 0.9rem; transition: gap 0.2s ease; }
.proj-card:hover .proj-card__link { gap: 10px; }

/* SEO service cards with an "Includes" list */
.seo-svc { display: flex; flex-direction: column; }
.seo-svc > p { flex: 1; }
.seo-svc__includes { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.seo-svc__label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.seo-svc__includes ul { list-style: none; display: grid; gap: 8px; margin: 0; padding: 0; }
.seo-svc__includes li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--muted); line-height: 1.45; }
.seo-svc__includes svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }

.tech-note { max-width: 720px; margin: 34px auto 0; text-align: center; }
.tech-note p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }

/* Local SEO focus-areas card */
.local-focus { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.local-focus__title { font-family: var(--font-display); font-size: 1.12rem; color: var(--heading); margin-bottom: 18px; }
.local-focus .ticks { margin: 0; }

/* Technical SEO intro + measurement note */
.tech-seo-copy { max-width: 780px; margin: 0 auto 36px; text-align: center; }
.tech-seo-copy p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.measure-note { max-width: 780px; margin: 32px auto 0; text-align: center; }
.measure-note p { color: var(--muted-2); font-size: 0.92rem; line-height: 1.65; }

/* SEO cost factors card */
.cost-factors { max-width: 820px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 30px; box-shadow: var(--shadow-sm); }
.cost-factors__list { grid-template-columns: 1fr 1fr; gap: 12px 40px; margin: 0; }
@media (max-width: 560px) { .cost-factors__list { grid-template-columns: 1fr; } }

/* Local relevance with map */
.local-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 4vw, 52px); align-items: center; }
.local-copy .section__title { text-align: left; }
.local-copy p { color: var(--muted); margin-top: 14px; line-height: 1.75; }
@media (max-width: 860px) { .local-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Business benefit cards (larger) */
.benefit-card { padding: 32px 30px; }
.benefit-card h3 { font-size: 1.22rem; }
.benefit-card p { font-size: 0.98rem; }

/* Service inclusions — three labeled groups */
.incl-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.incl-group { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; }
.incl-group__title { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.incl-group .ticks { margin: 0; gap: 12px; }
.incl-group .ticks li { font-size: 0.94rem; }
@media (max-width: 860px) { .incl-groups { grid-template-columns: 1fr; } }

/* Maintenance band */
.maint-band { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 52px); align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.maint-band__icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); margin-bottom: 16px; }
.maint-band__head .svc-feature__tag { display: block; }
.maint-band__head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -0.02em; color: var(--heading); }
.maint-band__head p { color: var(--muted); margin-top: 12px; line-height: 1.7; }
.maint-band__points { margin-bottom: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-2); }
.price-card--popular { border-color: transparent; box-shadow: var(--shadow); background: linear-gradient(180deg, #fff, var(--bg-warm)); outline: 2px solid var(--brand); transform: translateY(-8px); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-brand); white-space: nowrap; }
.price-card__name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.price-card__price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--heading); line-height: 1.1; margin: 10px 0 4px; display: flex; align-items: baseline; gap: 2px; }
.price-card__cur { font-size: 1.4rem; }
.price-card__unit { font-family: var(--font); font-size: 0.8rem; font-weight: 500; color: var(--muted-2); margin-left: 6px; }
.price-card__note { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.price-card__features { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-card__features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 0.94rem; }
.price-card__features svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.pricing-note { max-width: 760px; margin: 34px auto 0; text-align: center; }
.pricing-note p { color: var(--muted-2); font-size: 0.86rem; line-height: 1.65; }

@media (max-width: 860px) {
  .svc-feature { grid-template-columns: 1fr; gap: 28px; }
  .svc-feature--rev .svc-feature__content { order: 0; }
  .svc-feature__media { order: -1; max-width: 460px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card--popular { transform: none; }
  .maint-band { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ About page ============ */
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.about-hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 100px) 0; }
.about-hero__glow { position: absolute; top: -20%; right: -5%; width: 620px; height: 620px; max-width: 90vw; background: radial-gradient(circle, rgba(253, 96, 55, 0.12), transparent 65%); filter: blur(12px); pointer-events: none; }
.about-hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.about-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.1; letter-spacing: -0.025em; color: var(--heading); margin: 14px 0 18px; }
.about-hero__text { color: var(--muted); font-size: 1.08rem; line-height: 1.7; margin-bottom: 28px; }
.about-hero__visual { position: relative; }
.about-collage { position: relative; }
.about-collage__a { width: 84%; border-radius: 16px; border: 1px solid var(--border-2); box-shadow: var(--shadow); display: block; }
.about-collage__b { position: absolute; right: 0; bottom: 0; width: 54%; border-radius: 12px; border: 4px solid #fff; box-shadow: var(--shadow); display: block; }
.about-collage__badge { position: absolute; left: -8px; top: 18px; z-index: 2; background: var(--grad); color: #fff; border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-brand); }
.about-collage__badge strong { font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.about-collage__badge span { font-size: 0.72rem; font-weight: 600; line-height: 1.2; }

.about-who { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.about-who__main .section__title { text-align: left; }
.about-who__main p { color: var(--muted); margin-top: 14px; line-height: 1.75; }
.about-who__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-hl { padding: 26px 24px; }
.about-hl .service__icon { margin-bottom: 16px; }
.about-hl h3 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 8px; color: var(--heading); }
.about-hl p { color: var(--muted); font-size: 0.93rem; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: start; }
.about-story__text p { color: var(--muted); line-height: 1.78; margin-bottom: 18px; }
.about-timeline { display: grid; gap: 26px; padding: 6px 0; margin: 0; list-style: none; }
.about-timeline__item { position: relative; padding-left: 32px; }
.about-timeline__item::before { content: ''; position: absolute; left: 5px; top: 20px; height: calc(100% + 4px); width: 2px; background: var(--border); }
.about-timeline__item:last-child::before { display: none; }
.about-timeline__dot { position: absolute; left: 0; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px var(--bg-alt); }
.about-timeline strong { font-family: var(--font-display); color: var(--heading); font-size: 1.04rem; }
.about-timeline p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

.about-why { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.about-why__statement { border-left: 4px solid var(--brand); padding-left: 26px; }
.about-why__statement p { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.95rem); line-height: 1.3; color: var(--heading); margin-top: 12px; }
.about-why__support .section__title { text-align: left; }
.about-why__support p { color: var(--muted); margin-top: 14px; line-height: 1.78; }

.about-choose { display: flex; gap: 15px; padding: 4px; }
.about-choose__ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--brand); }
.about-choose h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 5px; color: var(--heading); }
.about-choose p { color: var(--muted); font-size: 0.93rem; }

.founder-card { display: flex; gap: 30px; align-items: center; max-width: 840px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.founder-card__photo { width: 132px; height: 132px; border-radius: 20px; object-fit: cover; object-position: top center; flex-shrink: 0; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.founder-card__body h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--heading); }
.founder-card__role { display: block; color: var(--brand); font-weight: 600; font-size: 0.9rem; margin: 3px 0 12px; }
.founder-card__body p { color: var(--muted); line-height: 1.7; }
.founder-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 9px 18px; border-radius: 999px; background: #0a66c2; color: #fff; font-weight: 600; font-size: 0.9rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.founder-card__link:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(10, 102, 194, 0.6); }
@media (max-width: 620px) { .founder-card__photo { width: 110px; height: 110px; } }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 820px; margin: 0 auto clamp(36px, 5vw, 52px); text-align: center; list-style: none; padding: 0; }
.about-stats strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-stats span { font-size: 0.85rem; color: var(--muted-2); }
.about-selected { margin-bottom: 4px; }

.start-step { text-align: center; padding: 32px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.start-step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0 auto 16px; box-shadow: var(--shadow-brand); }
.start-step h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; color: var(--heading); }
.start-step p { color: var(--muted); font-size: 0.95rem; }

.about-serve { max-width: 820px; margin: 0 auto; text-align: center; }
.about-serve .section__title { text-align: center; }
.about-serve p { color: var(--muted); margin-top: 16px; line-height: 1.8; font-size: 1.05rem; }
.serve-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 28px 0 4px; }
.serve-chip { padding: 9px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border-2); color: var(--text); font-weight: 600; font-size: 0.9rem; transition: border-color 0.2s ease, color 0.2s ease; }
.serve-chip:hover { border-color: rgba(253, 96, 55, 0.45); color: var(--brand); }
.serve-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--brand); font-weight: 700; transition: gap 0.2s ease, color 0.2s ease; }
.serve-link:hover { gap: 12px; color: var(--brand-strong); }

@media (max-width: 900px) {
  .about-hero__inner, .about-who, .about-story, .about-why { grid-template-columns: 1fr; gap: 38px; }
  .about-hero__visual { max-width: 480px; }
  .about-who__main .section__title, .about-why__support .section__title { text-align: left; }
}
@media (max-width: 620px) {
  .grid--2, .about-who__grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .founder-card { flex-direction: column; text-align: center; }
}

/* ============ Blog article page ============ */
.post-hero {
  position: relative; overflow: hidden; padding: 130px 0 54px;
  background: linear-gradient(168deg, #fff1e9 0%, #fdeee2 40%, var(--bg) 85%);
  border-bottom: 1px solid var(--border);
}
.post-hero__glow { position: absolute; top: -40%; right: -5%; width: 620px; height: 620px; max-width: 90vw; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 24%, transparent), transparent 65%); filter: blur(12px); pointer-events: none; }
.post-hero__inner { position: relative; max-width: 840px; }
.post-hero__cat { display: inline-flex; align-items: center; gap: 7px; margin: 16px 0 16px; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--border-2); font-size: 0.8rem; font-weight: 700; color: var(--brand); }
.post-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.14; letter-spacing: -0.02em; color: var(--heading); }
.post-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: 22px; color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.post-hero__author { display: inline-flex; align-items: center; gap: 9px; color: var(--heading); font-weight: 600; }
.post-hero__av { width: 32px; height: 32px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 0.72rem; font-weight: 700; font-family: var(--font-display); }
.post-hero__img { position: relative; margin-top: 34px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-2); box-shadow: var(--shadow); aspect-ratio: 16 / 6.5; }
.post-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 640px) { .post-hero__img { aspect-ratio: 16 / 9; margin-top: 26px; } }

/* Article prose */
.prose { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) 0 16px; color: #3a3a4d; font-size: 1.06rem; line-height: 1.8; }
.prose p { margin-bottom: 22px; }
.prose a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--brand-strong); }
.prose strong { color: var(--heading); font-weight: 700; }
.prose h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.2; letter-spacing: -0.02em; color: var(--heading); margin: 42px 0 16px; scroll-margin-top: 92px; }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--heading); margin: 30px 0 12px; }
.prose h4 { font-weight: 700; font-size: 1.08rem; color: var(--heading); margin: 22px 0 10px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 26px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 10px; padding-left: 4px; }
.prose li::marker { color: var(--brand); font-weight: 700; }
.prose hr { border: none; height: 1px; background: var(--border); margin: 36px 0; }
.prose blockquote { margin: 26px 0; padding: 16px 22px; border-left: 4px solid var(--brand); background: var(--bg-alt); border-radius: 0 12px 12px 0; color: var(--muted); font-style: italic; }
.prose img { max-width: 100%; border-radius: 14px; margin: 24px 0; border: 1px solid var(--border); }
.prose .table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 560px; }
.prose thead th { background: var(--bg-alt); color: var(--heading); font-family: var(--font-display); font-weight: 700; text-align: left; padding: 13px 16px; font-size: 0.86rem; }
.prose tbody td { padding: 12px 16px; border-top: 1px solid var(--border); color: var(--text); vertical-align: top; }
.prose tbody tr:hover { background: rgba(253, 96, 55, 0.04); }
.prose tbody td:first-child { font-weight: 700; color: var(--brand); }

/* Callout boxes */
.prose .highlight-box, .prose .tip-box, .prose .warn-box { margin: 26px 0; padding: 22px 24px; border-radius: var(--radius-sm); border: 1px solid var(--border-2); background: var(--surface); }
.prose .highlight-box { background: var(--grad-soft); border-color: color-mix(in srgb, var(--brand) 25%, transparent); }
.prose .tip-box { background: rgba(47, 184, 114, 0.08); border-color: rgba(47, 184, 114, 0.3); }
.prose .warn-box { background: rgba(253, 96, 55, 0.08); border-color: rgba(253, 96, 55, 0.32); }
.prose .highlight-box h4, .prose .tip-box h4, .prose .warn-box h4 { margin-top: 0; }
.prose .highlight-box ul, .prose .tip-box ul, .prose .warn-box ul, .prose .highlight-box p:last-child, .prose .tip-box p:last-child { margin-bottom: 0; }

/* Footer strip: tags, share, author (rendered by BlogPost, aligned to prose width) */
.post-footer-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin: 40px 0 26px; padding-top: 28px; border-top: 1px solid var(--border); }
.pf-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-tag { font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--bg-alt); border: 1px solid var(--border); color: var(--muted); }
.pf-share { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.share-btn { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border-2); color: var(--muted); transition: all 0.2s ease; }
.share-btn:hover { background: var(--grad); color: #fff; border-color: transparent; }
.author-box { display: flex; gap: 16px; align-items: flex-start; margin: 26px 0 4px; padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.author-av { width: 54px; height: 54px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }
.author-name { font-family: var(--font-display); font-weight: 700; color: var(--heading); font-size: 1.05rem; }
.author-role { font-size: 0.85rem; color: var(--brand); font-weight: 600; margin: 2px 0 8px; }
.author-bio { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* Two-column layout with sidebar */
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 52px; align-items: start; padding-top: 6px; padding-bottom: clamp(48px, 6vw, 80px); }
.post-main { min-width: 0; }
.post-main .prose { max-width: none; margin: 0; padding-top: clamp(36px, 5vw, 52px); }
.post-back { padding: 8px 0 10px; }

.post-side { position: sticky; top: 96px; display: grid; gap: 20px; margin-top: clamp(36px, 5vw, 52px); }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.side-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--heading); margin-bottom: 14px; }

.post-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 3px; padding: 0; margin: 0; }
.post-toc li { counter-increment: toc; margin: 0; }
.post-toc a { display: flex; gap: 9px; padding: 7px 9px; border-radius: 8px; font-size: 0.85rem; color: var(--muted); line-height: 1.4; transition: background 0.2s ease, color 0.2s ease; }
.post-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--brand); font-weight: 700; font-size: 0.76rem; flex-shrink: 0; }
.post-toc a:hover { background: var(--bg-alt); color: var(--heading); }

.post-promo { background: var(--grad); border-color: transparent; box-shadow: var(--shadow-brand); }
.post-promo h4 { color: #fff; }
.post-promo p { color: rgba(255, 255, 255, 0.92); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }

.post-services ul { list-style: none; display: grid; gap: 2px; padding: 0; margin: 0; }
.post-services li { margin: 0; }
.post-services a { display: flex; align-items: center; gap: 8px; padding: 8px 9px; border-radius: 8px; font-size: 0.9rem; color: var(--muted); font-weight: 500; transition: background 0.2s ease, color 0.2s ease; }
.post-services a svg { color: var(--brand); flex-shrink: 0; }
.post-services a:hover { background: var(--bg-alt); color: var(--brand); }

@media (max-width: 980px) {
  .post-layout { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .post-side { position: static; margin-top: 20px; grid-template-columns: repeat(2, 1fr); }
  .post-toc { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .post-side { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-head { position: sticky; top: 104px; }
.faq-head .section__title { text-align: left; }
.faq-head__sub { color: var(--muted); margin-top: 16px; font-size: 1rem; max-width: 340px; }

.faq { display: grid; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--heading);
  transition: color 0.2s ease;
}
.faq__q:hover { color: var(--brand); }
.faq__icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(46, 46, 61, 0.05); border: 1px solid var(--border); color: var(--muted);
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--grad); color: #fff; border-color: transparent; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > p { overflow: hidden; color: var(--muted); font-size: 0.98rem; line-height: 1.7; padding: 0 4px; }
.faq__item.is-open .faq__a > p { padding: 0 4px 24px; }

@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
  .faq-head .section__title { text-align: left; }
}

/* ============ CTA band ============ */
.cta-band { padding: clamp(48px, 7vw, 80px) 0; }
.cta-band__inner {
  background: var(--grad);
  border-radius: 28px; padding: clamp(32px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow-brand); position: relative; overflow: hidden;
}
.cta-band__inner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.25), transparent 45%); pointer-events: none; }
.cta-band__inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; letter-spacing: -0.02em; }
.cta-band__inner p { color: rgba(255, 255, 255, 0.9); margin-top: 8px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ============ Contact ============ */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.contact__info > p { color: var(--muted); margin: 8px 0 28px; }
.contact__list { display: grid; gap: 20px; margin-bottom: 30px; }
.contact__list li { display: flex; align-items: center; gap: 15px; }
.contact__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--brand); flex-shrink: 0; }
.contact__list em { display: block; font-style: normal; font-size: 0.78rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }
.contact__list a, .contact__list strong { font-weight: 600; color: var(--heading); }
.contact__list a:hover { color: var(--brand); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact__actions .btn { gap: 8px; }

.contact__form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.contact__form { display: grid; gap: 18px; }
.contact__form label { display: grid; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.contact__form input, .contact__form select, .contact__form textarea {
  background: var(--bg); border: 1px solid var(--border-2); border-radius: 12px;
  padding: 13px 15px; color: var(--text); font-size: 0.96rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact__form textarea { resize: vertical; }
.contact__form input::placeholder, .contact__form textarea::placeholder { color: var(--muted-2); }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(253, 96, 55, 0.15); }
.contact__form select option { background: #fff; }
.turnstile { min-height: 65px; }
.contact__error { color: #d64020; background: rgba(214, 64, 32, 0.08); border: 1px solid rgba(214, 64, 32, 0.25); border-radius: 10px; padding: 10px 14px; font-size: 0.9rem; font-weight: 500; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.contact__success { text-align: center; padding: 30px 10px; display: grid; gap: 14px; place-items: center; }
.contact__success-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-brand); }
.contact__success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--heading); }
.contact__success p { color: var(--muted); max-width: 360px; }
.contact__success a { color: var(--brand); }

/* ============ Footer ============ */
.footer { background: var(--footer-bg); border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 60px; color: var(--footer-text); }
.footer .brand { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer__brand p { color: var(--footer-muted); margin: 16px 0 20px; font-size: 0.94rem; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.78rem; font-weight: 700; color: var(--footer-text); transition: all 0.2s; }
.footer__social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.footer__col h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; color: #fff; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: var(--footer-muted); font-size: 0.93rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--brand-2); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 22px 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: var(--footer-muted); font-size: 0.86rem; }

/* ============ Floating action buttons ============ */
.fab-wa {
  position: fixed; left: 0; bottom: 28px; z-index: 90;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 20px 10px 13px; border-radius: 0 999px 999px 0;
  background: #1fa855; color: #fff; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 14px 30px -10px rgba(31, 168, 85, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab-wa:hover { transform: translateX(3px); box-shadow: 0 18px 38px -10px rgba(31, 168, 85, 0.72); }
.fab-wa__icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); display: grid; place-items: center; flex-shrink: 0; color: #fff; }

.fab-top {
  position: fixed; right: 26px; bottom: 28px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-brand);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.fab-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab-top:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -12px rgba(253, 96, 55, 0.6); }

@media (max-width: 520px) {
  .fab-wa { padding: 10px; gap: 0; }
  .fab-wa__text { display: none; }
  .fab-top { width: 48px; height: 48px; right: 16px; bottom: 20px; }
}

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 940px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 460px; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__toggle { display: grid; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: rgba(250, 247, 242, 0.98); backdrop-filter: blur(14px);
    padding: 20px 24px 28px; border-bottom: 1px solid var(--border);
    transform: translateY(-140%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    max-height: calc(100vh - 72px); overflow-y: auto;
    box-shadow: 0 20px 40px -20px rgba(46, 46, 61, 0.35);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links > a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .nav__cta { margin-top: 12px; }
  .hero { padding-top: 120px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .floaty--1 { left: 0; } .floaty--2 { right: 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .about__badge { right: 10px; top: -16px; }
  .hero__actions .btn { flex: 1; }
}
