/* =============================================================
   Tech Savvy Solutions — Global Stylesheet
   Design system: Light + Bold Accent (orange/coral)
   Author: Tech Savvy Solutions
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fff7f1;
  --color-bg-cream: #fdf6ee;
  --color-surface: #ffffff;
  --color-text: #0d0d0f;
  --color-text-muted: #5a5a66;
  --color-text-soft: #8a8a96;
  --color-border: #ececf2;
  --color-border-strong: #d8d8e0;

  --color-primary: #ff5722;
  --color-primary-dark: #e8431a;
  --color-secondary: #ffb800;
  --color-accent: #ff2e63;
  --color-success: #18b56b;
  --color-info: #2c6bff;

  --gradient-primary: linear-gradient(135deg, #ff5722 0%, #ff2e63 100%);
  --gradient-warm: linear-gradient(135deg, #ffb800 0%, #ff5722 60%, #ff2e63 100%);
  --gradient-soft: linear-gradient(135deg, #fff7f1 0%, #fdf6ee 100%);

  --shadow-sm: 0 2px 6px rgba(15, 15, 20, .04);
  --shadow-md: 0 10px 30px rgba(15, 15, 20, .06);
  --shadow-lg: 0 24px 60px rgba(15, 15, 20, .10);
  --shadow-glow: 0 20px 60px rgba(255, 87, 34, .25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --section-pad: clamp(60px, 9vw, 120px);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .25s var(--ease-out);
}
a:hover { color: var(--color-primary-dark); }

button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-text-muted); }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; position: relative; }
.section--soft { background: var(--color-bg-soft); }
.section--cream { background: var(--color-bg-cream); }
.section--dark { background: #0d0d0f; color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.75); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 70px);
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 87, 34, .1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255,87,34,.18);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-full);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { color: #fff; box-shadow: 0 25px 70px rgba(255,87,34,.35); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border-strong);
}
.btn-outline:hover { background: var(--color-text); color: #fff; border-color: var(--color-text); }

.btn-ghost { background: transparent; color: var(--color-primary); padding: 12px 18px; }
.btn-ghost:hover { background: rgba(255,87,34,.08); color: var(--color-primary-dark); }

.btn-light {
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(15,15,20,.05);
  transition: box-shadow .3s var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--color-text); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-primary);
  display: grid; place-items: center;
  color: #fff; font-weight: 800;
  box-shadow: var(--shadow-glow);
}
.brand-name span { color: var(--color-primary); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-links a:hover { color: var(--color-primary); background: rgba(255,87,34,.06); }
.nav-links a.active { color: var(--color-primary); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--gradient-primary);
}

.nav-cta { display: flex; gap: 12px; align-items: center; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--color-bg-soft);
  align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--color-text); position: relative; }
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: var(--color-text);
  transition: transform .25s var(--ease-out);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 16px; right: 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform-origin: top right;
    transform: scale(.96) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  }
  .nav-links.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 110px);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(255,46,99,.15), transparent 70%),
    radial-gradient(900px 500px at -10% 110%, rgba(255,184,0,.18), transparent 70%),
    var(--color-bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,15,20,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,15,20,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { display: inline-block; position: relative; }
.hero h1 .accent::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 14px; border-radius: 8px;
  background: var(--gradient-warm);
  opacity: .25;
  z-index: -1;
}
.hero-lede { font-size: 1.18rem; max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; color: var(--color-text-muted); font-size: .92rem; }
.hero-meta strong { color: var(--color-text); font-size: 1.6rem; font-family: var(--font-display); display: block; line-height: 1; margin-bottom: 4px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(closest-side, rgba(255,255,255,.4), transparent);
  animation: spin 14s linear infinite;
}
.hero-visual-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; gap: 12px; align-items: center;
  font-size: .88rem; font-weight: 600; color: var(--color-text);
}
.hero-visual-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-success); box-shadow: 0 0 0 4px rgba(24,181,107,.2); }
.hvc-1 { top: 12%; left: 10%; animation: float 6s ease-in-out infinite; }
.hvc-2 { top: 50%; right: 8%; animation: float 7s ease-in-out infinite reverse; }
.hvc-3 { bottom: 14%; left: 18%; animation: float 8s ease-in-out infinite; }
.hero-visual-center {
  position: absolute; inset: 25%;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero-visual-center .num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.hero-visual-center .lbl { color: var(--color-text-muted); font-size: .85rem; margin-top: 6px; font-weight: 500; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
  background: var(--color-bg);
}
.trust-strip .container { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; opacity: .8; }
.trust-strip span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-text-soft); font-weight: 600; }
.trust-strip .logo { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--color-text-muted); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-cream);
  padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--color-text);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track span::after { content: "✦"; color: var(--color-primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards / Services ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  z-index: 0;
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: var(--shadow-glow);
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 18px; font-size: .96rem; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9rem;
  color: var(--color-primary);
}
.service-card .more::after { content: "→"; transition: transform .25s var(--ease-out); }
.service-card:hover .more::after { transform: translateX(4px); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px;
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat .lbl { color: var(--color-text-muted); font-weight: 500; margin-top: 8px; font-size: .92rem; }

/* ---------- Process ---------- */
.process {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.step h4 { margin-bottom: 8px; }
.step p { margin: 0; font-size: .92rem; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial .quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 22px;
}
.testimonial .author { display: flex; gap: 14px; align-items: center; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-primary);
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
}
.testimonial .who strong { display: block; font-weight: 700; color: var(--color-text); }
.testimonial .who span { color: var(--color-text-muted); font-size: .88rem; }
.stars { color: #ffb800; margin-bottom: 14px; letter-spacing: 2px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-primary);
  color: #fff;
  padding: clamp(50px, 8vw, 90px) clamp(28px, 5vw, 60px);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.cta-banner::before {
  content: ""; position: absolute; inset: -50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent);
  animation: spin 22s linear infinite;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-banner .btn-light { color: var(--color-primary); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0d0d0f;
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,.7); font-size: .94rem; }
.footer-grid a:hover { color: var(--color-primary); }
.footer-brand { font-size: 1.4rem; }
.footer-brand .brand-name { color: #fff; }
.footer-about p { color: rgba(255,255,255,.6); margin-bottom: 18px; max-width: 360px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
}
.footer-social a:hover { background: var(--color-primary); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}

/* ---------- Page Hero (interior) ---------- */
.page-hero {
  padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 70px);
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(255,46,99,.12), transparent 70%),
    radial-gradient(600px 320px at 0% 100%, rgba(255,184,0,.16), transparent 70%),
    var(--color-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 { max-width: 880px; margin: 18px auto 18px; }
.page-hero p { max-width: 680px; margin: 0 auto 28px; font-size: 1.12rem; }
.breadcrumbs { font-size: .86rem; color: var(--color-text-soft); }
.breadcrumbs a { color: var(--color-text-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }

/* ---------- Pillar / Long-form ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img, .split .visual {
  border-radius: var(--radius-xl);
  background: var(--gradient-soft);
  aspect-ratio: 4/3;
  width: 100%;
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}
.split .visual::before {
  content: "";
  position: absolute; inset: 20px;
  border: 2px dashed rgba(255,87,34,.3);
  border-radius: var(--radius-lg);
}
.feature-list { list-style: none; padding: 0; margin: 24px 0 30px; }
.feature-list li {
  padding-left: 36px;
  position: relative;
  margin-bottom: 14px;
  color: var(--color-text);
  font-weight: 500;
}
.feature-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .82rem;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  background: #fff;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.faq-item:hover { border-color: var(--color-border-strong); }
.faq-item[open] { border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 700;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--color-primary); color: #fff; }
.faq-item p { margin: 14px 0 0; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.featured { background: var(--gradient-primary); color: #fff; border: 0; transform: scale(1.03); box-shadow: var(--shadow-glow); }
.price.featured h3, .price.featured .amount, .price.featured ul li { color: #fff; }
.price.featured ul li::before { background: rgba(255,255,255,.25); color: #fff; }
.price.featured .btn { background: #fff; color: var(--color-primary); }
.price-tier { font-size: .85rem; color: var(--color-primary); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.price.featured .price-tier { color: rgba(255,255,255,.85); }
.price .amount {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  margin: 14px 0;
  line-height: 1;
}
.price .amount small { font-size: .9rem; font-weight: 500; color: var(--color-text-muted); }
.price.featured .amount small { color: rgba(255,255,255,.8); }
.price ul { list-style: none; padding: 0; margin: 24px 0; text-align: left; }
.price ul li {
  padding-left: 28px; position: relative; margin-bottom: 10px;
  color: var(--color-text);
  font-size: .94rem;
}
.price ul li::before {
  content: "✓"; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px;
  background: rgba(255,87,34,.12); color: var(--color-primary);
  border-radius: 50%; font-size: .72rem; font-weight: 700;
  display: grid; place-items: center;
}

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
.post {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-thumb {
  aspect-ratio: 16/10;
  background: var(--gradient-warm);
  position: relative;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 2.2rem;
  letter-spacing: -.03em;
  text-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.post-thumb.t-2 { background: linear-gradient(135deg, #2c6bff 0%, #ff2e63 100%); }
.post-thumb.t-3 { background: linear-gradient(135deg, #18b56b 0%, #ffb800 100%); }
.post-thumb.t-4 { background: linear-gradient(135deg, #ff5722 0%, #5c33ff 100%); }
.post-thumb.t-5 { background: linear-gradient(135deg, #ff2e63 0%, #ffb800 100%); }
.post-thumb.t-6 { background: linear-gradient(135deg, #0d0d0f 0%, #ff5722 100%); }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-cat { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; }
.post-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post-body h3 a { color: var(--color-text); }
.post-body h3 a:hover { color: var(--color-primary); }
.post-body p { margin: 0 0 16px; font-size: .94rem; flex: 1; }
.post-meta { font-size: .82rem; color: var(--color-text-soft); display: flex; justify-content: space-between; align-items: center; }
.post-meta a { font-weight: 600; }

/* ---------- Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { margin-bottom: 12px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-item:last-child { border: 0; }
.contact-info-item .ic {
  width: 44px; height: 44px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 700;
}
.contact-info-item strong { display: block; color: var(--color-text); margin-bottom: 4px; }
.contact-info-item span { color: var(--color-text-muted); font-size: .94rem; }

.form-card {
  background: #fff;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font: inherit;
  color: var(--color-text);
  background: #fff;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255,87,34,.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; color: var(--color-text-soft); margin-top: 14px; text-align: center; }

/* ---------- Tag chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--color-bg-soft);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(255,87,34,.15);
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
