/* ===========================
   DigiForce · Global Tokens
   =========================== */
:root {
  --blue: #3157f6;
  --blue-dark: #1a3adb;
  --blue-light: #edf3ff;
  --purple: #6d5dfc;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --soft: #f4f8ff;
  --border: #e2eaf7;
  --green: #16a34a;
  --green-bg: #dcfce7;
  --red: #ef4444;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 4px 16px rgba(15,23,42,0.06);
  --shadow: 0 12px 36px rgba(15,23,42,0.09);
  --shadow-lg: 0 24px 64px rgba(15,23,42,0.13);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

h1,h2,h3,h4 { margin: 0; line-height: 1.15; }

p { margin: 0; }

/* ===========================
   Layout
   =========================== */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

section { padding: 88px 0; }

/* ===========================
   Scroll Animations
   =========================== */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(49,87,246,0.28);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(49,87,246,0.36);
  filter: brightness(1.08);
}

.btn:active { transform: translateY(0); }

.btn.secondary {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn.secondary:hover { box-shadow: var(--shadow); filter: none; }

.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 16px; }

.btn-cta {
  background: #fff;
  color: var(--blue);
  border-radius: 18px;
  padding: 18px 32px;
  font-size: 17px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.btn-cta:hover { filter: brightness(0.96); }

/* ===========================
   Header / Nav
   =========================== */
header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow var(--transition);
}

header.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,0.08); }

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img { height: 72px; width: auto; }

.logo-fallback {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.menu {
  display: flex;
  gap: 30px;
  font-weight: 700;
  font-size: 15px;
}

.menu a { position: relative; padding-bottom: 2px; }

.menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--transition);
}

.menu a:hover::after, .menu a.active::after { width: 100%; }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(9.75px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9.75px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 150;
  backdrop-filter: blur(4px);
}

.mobile-overlay.show { display: block; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 82vw);
  height: 100dvh;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 80px 28px 40px;
  box-shadow: -8px 0 40px rgba(15,23,42,0.12);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  font-size: 17px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.mobile-menu a:last-child { border: none; margin-top: 14px; }

.mobile-close {
  position: absolute;
  top: 22px;
  left: 22px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

/* ===========================
   Hero
   =========================== */
.hero {
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at 0% 0%, #dde9ff 0, transparent 42%),
    radial-gradient(circle at 100% 80%, #ede8ff 0, transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--blue-light);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(38px, 4.8vw, 68px);
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.trust-item small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  margin-top: 2px;
}

/* Dashboard */
.dashboard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dash-title { font-weight: 700; font-size: 14px; color: var(--muted); }

.dash-badge {
  background: var(--green-bg);
  color: var(--green);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 99px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
}

.stat small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }

.stat b {
  display: block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.up { color: var(--green); font-size: 12px; font-weight: 800; }
.down { color: var(--green); font-size: 12px; font-weight: 800; }

/* Chart */
.chart-wrap { margin-bottom: 16px; }

.chart-label { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }

.chart {
  height: 90px;
  border-radius: 14px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 10px 10px 0;
}

.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--blue), var(--purple));
  opacity: 0.85;
  transition: opacity var(--transition);
  transform-origin: bottom;
  animation: growBar 0.6s ease forwards;
  transform: scaleY(0);
}

@keyframes growBar {
  to { transform: scaleY(1); }
}

.chart-bar:hover { opacity: 1; }

/* Channels */
.channels { display: grid; gap: 9px; }

.channel {
  display: grid;
  grid-template-columns: 30px 1fr 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
}

.ch-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.ch-icon.meta { background: #1877f2; }
.ch-icon.google { background: #ea4335; }
.ch-icon.wa { background: #22c55e; }

.bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 99px;
  animation: fillBar 0.9s ease forwards;
  transform-origin: right;
  transform: scaleX(0);
}

@keyframes fillBar {
  to { transform: scaleX(1); }
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-title h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* ===========================
   Cards
   =========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* ===========================
   Soft Section
   =========================== */
.section-soft { background: var(--soft); }

/* ===========================
   Services
   =========================== */
.services-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.services-layout h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 14px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ===========================
   Proof / Results
   =========================== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.proof:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.proof strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.proof h3 { font-size: 17px; margin-bottom: 6px; }
.proof p { color: var(--muted); font-size: 14px; }

/* ===========================
   Steps / Process
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.step {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.num {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 6px 18px rgba(49,87,246,0.3);
}

.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ===========================
   CTA
   =========================== */
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1a38d8 50%, #2c22c4 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 28px 72px rgba(49,87,246,0.32);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: -40px -40px -40px 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta p { opacity: 0.88; font-size: 17px; line-height: 1.6; }

.cta-action { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.cta-note { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; text-align: center; }

/* ===========================
   Dropdown Nav
   =========================== */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-toggle .arrow { font-size: 10px; transition: transform var(--transition); }
.dropdown:hover .arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.dropdown-menu a {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--soft); color: var(--blue); }

.mobile-section-title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  padding: 14px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.mobile-sub {
  font-size: 15px !important;
  padding: 10px 0 !important;
  padding-right: 14px !important;
  color: var(--muted) !important;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-right: 20px;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 52px;
  color: var(--blue-light);
  font-style: normal;
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -4px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-light);
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.author-name { font-weight: 800; font-size: 14px; }
.author-role { font-size: 12px; color: var(--muted); }

/* ===========================
   FAQ Accordion
   =========================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: right;
  transition: background var(--transition);
  font-family: inherit;
}

.faq-question:hover { background: var(--soft); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
  font-weight: 300;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 0; }

/* ===========================
   Breadcrumb
   =========================== */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb span { opacity: 0.5; }

/* ===========================
   Service Page
   =========================== */
.service-hero {
  padding: 60px 0 70px;
  background:
    radial-gradient(circle at 0% 0%, #dde9ff 0, transparent 40%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.service-hero h1 { font-size: clamp(34px, 4vw, 58px); margin-bottom: 18px; }

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-benefits { display: grid; gap: 14px; margin-top: 28px; }

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.benefit-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.benefit h4 { font-size: 15px; margin-bottom: 4px; }
.benefit p  { font-size: 13px; color: var(--muted); margin: 0; }

.service-visual {
  background: linear-gradient(135deg, var(--blue-light), #f0eeff);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.visual-stat {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
}

.visual-stat strong { font-size: 26px; font-weight: 900; color: var(--blue); }
.visual-stat span   { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ===========================
   Articles
   =========================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.article-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-light), #f0eeff);
  display: grid;
  place-items: center;
  font-size: 48px;
}

.article-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.article-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 99px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
}

.article-card h3 { font-size: 17px; line-height: 1.4; }
.article-card p  { font-size: 14px; color: var(--muted); flex: 1; }

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.read-more {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.read-more:hover { gap: 8px; }

/* ===========================
   Footer (updated)
   =========================== */
footer {
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col img { height: 52px; margin-bottom: 6px; }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 260px; }
.footer-col h4 { font-size: 14px; font-weight: 900; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); font-weight: 600; transition: color var(--transition); }
.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: var(--muted); margin: 2px 0; }

/* ===========================
   WhatsApp FAB
   =========================== */
.whatsapp-fab {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(34,197,94,0.42);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 32px rgba(34,197,94,0.54);
}

/* ===========================
   Responsive — 980px
   =========================== */
@media (max-width: 980px) {
  .hero-grid,
  .services-layout,
  .cta {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta { padding: 40px 32px; }

  .cards,
  .proof-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:last-child { grid-column: span 2; max-width: 340px; margin-inline: auto; width: 100%; }

  .menu { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* ===========================
   Responsive — 620px
   =========================== */
@media (max-width: 620px) {
  section { padding: 60px 0; }

  .hero { padding-top: 44px; }

  h1 { letter-spacing: -0.5px; }

  .cards,
  .proof-grid,
  .service-list,
  .articles-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .steps .step:last-child { grid-column: auto; max-width: none; }

  .stats { grid-template-columns: repeat(3, 1fr); }

  .trust { grid-template-columns: 1fr; }

  .cta { padding: 30px 22px; }
  .cta h2 { font-size: 26px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-hero-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Reduce Motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; transition: none; }
  .chart-bar, .bar-fill { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}
