/* ═══════════════════════════════════════════════
   TAKALI DIGITAL — style.css
   Light, futuristic, clean corporate
   ═══════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fb;
  color: #0f172a;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ────────────────────────────── */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --accent: #10b981;
  --accent-light: #d1fae5;
  --warning: #f59e0b;
  --error: #ef4444;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  --grad: linear-gradient(135deg, #0ea5e9, #06b6d4, #10b981);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

/* ── TYPOGRAPHY ───────────────────────────────── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }

/* ── CONTAINER ────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ──────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(14,165,233,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,.45); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--neutral-300);
  color: var(--neutral-700);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-ghost.small { padding: 10px 18px; font-size: .85rem; }

.btn-nav {
  background: var(--neutral-900);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s, transform .2s;
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── SECTION COMMONS ──────────────────────────── */
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--neutral-900); margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--neutral-500); max-width: 560px; margin: 0 auto; }

/* ── REVEAL ANIMATIONS ────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease calc(var(--delay, 0s)), transform .7s ease calc(var(--delay, 0s));
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.in-view.reveal-up, .in-view.reveal-left, .in-view.reveal-right {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,249,251,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
#navbar.scrolled {
  border-color: var(--neutral-200);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; gap: 48px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: .05em; color: var(--neutral-900); }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; gap: 36px; margin-left: auto; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--neutral-600); transition: color .2s; }
.nav-links a:hover { color: var(--neutral-900); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--neutral-700); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--neutral-200);
  background: rgba(248,249,251,.98);
}
.nav-mobile.open { display: flex; }
.mobile-link { padding: 10px 0; font-size: 1rem; font-weight: 500; color: var(--neutral-700); border-bottom: 1px solid var(--neutral-100); transition: color .2s; }
.mobile-link:hover { color: var(--primary); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: #fff;
  max-width: 100vw;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  opacity: .6;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0;
  display: flex; flex-direction: column; gap: 0;
}

/* hero layout wrapper */
.hero {
  padding: 120px 0 80px;
}
.hero > .hero-content,
.hero > .hero-visual {
  position: relative; z-index: 2;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "content visual"
    "scroll scroll";
  gap: 48px;
  align-items: center;
  padding: 120px max(24px, calc((100vw - 1200px)/2)) 80px;
}
.hero-content { grid-area: content; display: flex; flex-direction: column; gap: 0; }
.hero-visual { grid-area: visual; display: flex; justify-content: center; align-items: center; }
.hero-scroll { grid-area: scroll; display: flex; align-items: center; gap: 12px; justify-content: center; }
#hero-canvas { grid-area: 1 / 1 / 3 / 3; }
.hero-grid-overlay { grid-area: 1 / 1 / 3 / 3; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light);
  color: #065f46;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--neutral-900);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--neutral-900); }
.stat-unit { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--primary); }
.stat-label { display: block; font-size: .78rem; color: var(--neutral-500); margin-top: 2px; }
.stat-sep { width: 1px; height: 40px; background: var(--neutral-200); }

/* hero scroll indicator */
.hero-scroll {
  display: flex; align-items: center; gap: 12px;
  color: var(--neutral-400); font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase;
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.scroll-line {
  width: 32px; height: 1px;
  background: var(--neutral-300);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--primary);
  animation: scroll-move 2s infinite;
}
@keyframes scroll-move { to { left: 100%; } }

/* device mockup */
.device-mockup {
  width: 340px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--neutral-200);
  overflow: hidden;
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
  transition: transform .4s ease;
}
.device-mockup:hover { transform: perspective(900px) rotateY(-4deg) rotateX(1deg); }
.device-bar {
  height: 40px;
  background: var(--neutral-100);
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
  border-bottom: 1px solid var(--neutral-200);
}
.device-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--neutral-300);
}
.device-bar span:first-child { background: #ef4444; }
.device-bar span:nth-child(2) { background: #f59e0b; }
.device-bar span:nth-child(3) { background: #22c55e; }
.device-screen { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.screen-line { height: 10px; border-radius: 6px; background: var(--neutral-200); animation: shimmer 2.5s infinite; }
.s1 { width: 60%; }
.s2 { width: 40%; }
.s3 { width: 80%; }
.s4 { width: 55%; }
.s5 { width: 70%; }
.screen-block { height: 60px; border-radius: 10px; background: var(--primary-light); animation: shimmer 2.5s infinite .3s; }
.b1 { background: linear-gradient(135deg, var(--primary-light), #e0f2fe); }
.b2 { background: var(--neutral-100); height: 40px; width: 45%; }
.screen-img { height: 100px; border-radius: 10px; background: var(--neutral-200); animation: shimmer 2.5s infinite .6s; }
.screen-pill { height: 32px; width: 100px; border-radius: 50px; background: var(--grad); animation: none; }
@keyframes shimmer {
  0%,100% { opacity: 1; }
  50% { opacity: .6; }
}

/* floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--neutral-200);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--neutral-700);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.fc1 { left: -20px; top: 60px; animation-delay: 0s; }
.fc2 { right: -16px; top: 130px; animation-delay: .8s; }
.fc3 { left: 0px; bottom: 60px; animation-delay: 1.6s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.sparkline { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.sparkline span {
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
  opacity: .7;
}
.sparkline span:nth-child(1) { height: 8px; }
.sparkline span:nth-child(2) { height: 14px; }
.sparkline span:nth-child(3) { height: 10px; }
.sparkline span:nth-child(4) { height: 18px; }
.sparkline span:nth-child(5) { height: 16px; }
.hero-visual { position: relative; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-section { background: var(--neutral-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.featured-card {
  border-color: var(--primary);
  background: linear-gradient(160deg, #fff 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 24px rgba(14,165,233,.15);
}
.featured-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--grad); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  padding: 4px 14px; border-radius: 50px;
}
.scard-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-dark);
  transition: background .3s;
}
.service-card:hover .scard-icon { background: var(--primary); color: #fff; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--neutral-900); }
.service-card p { font-size: .9rem; color: var(--neutral-500); line-height: 1.65; margin-bottom: 20px; }
.scard-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.scard-tags span {
  background: var(--neutral-100);
  color: var(--neutral-600);
  font-size: .74rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
}
.scard-link { font-size: .85rem; font-weight: 600; color: var(--primary); transition: gap .2s; }
.scard-link:hover { color: var(--primary-dark); }

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.portfolio-section { background: var(--neutral-50); }
.portfolio-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 40px;
}
.pf-filter {
  padding: 9px 20px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all .25s;
}
.pf-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pf-filter.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(14,165,233,.25);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pf-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.pf-card.hidden {
  display: none;
}
.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(15,23,42,.18);
  border-color: var(--primary);
}
.pf-visual {
  height: 220px;
  position: relative;
  padding: 16px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.pf-browser {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.pf-browser-dots { display: flex; gap: 4px; }
.pf-browser-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neutral-300);
}
.pf-browser-dots span:nth-child(1) { background: #ef4444; }
.pf-browser-dots span:nth-child(2) { background: #f59e0b; }
.pf-browser-dots span:nth-child(3) { background: #22c55e; }
.pf-browser-bar {
  flex: 1;
  font-size: .68rem;
  color: var(--neutral-500);
  background: var(--neutral-100);
  padding: 3px 10px;
  border-radius: 100px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
}
.pf-mockup {
  width: 92%;
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .5s;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  max-height: 160px;
  overflow: hidden;
}
.pf-card:hover .pf-mockup { transform: translateY(-8px); }
.pfm-header {
  height: 12px; background: var(--neutral-200); border-radius: 3px;
  width: 100%;
}
.pfm-hero {
  height: 50px;
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-200));
  border-radius: 4px;
}
.pfm-grid3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.pfm-grid3 span {
  height: 30px;
  background: var(--neutral-100);
  border-radius: 3px;
}
.pfm-line {
  height: 6px; background: var(--neutral-100); border-radius: 3px;
}
.pfm-line.short { width: 60%; }
.pfm-grid2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
}
.pfm-product {
  height: 40px;
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-200));
  border-radius: 4px;
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 3px;
}
.pfm-product.green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.pfm-price {
  font-size: .55rem;
  font-weight: 700;
  background: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--neutral-700);
  font-family: 'Space Grotesk', sans-serif;
}
.pf-mockup-dashboard {
  flex-direction: row;
  gap: 6px;
  padding: 8px;
}
.pfm-sidebar {
  width: 28px;
  background: var(--neutral-100);
  border-radius: 3px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 6px 4px;
}
.pfm-sidebar span { height: 5px; background: var(--neutral-300); border-radius: 2px; }
.pfm-sidebar span:first-child { background: var(--primary); }
.pfm-main { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pfm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.pfm-stats span { height: 22px; background: var(--neutral-100); border-radius: 3px; }
.pfm-chart {
  flex: 1;
  background: var(--neutral-50);
  border-radius: 3px;
  padding: 4px;
}
.pfm-chart svg { width: 100%; height: 100%; }
.pfm-nav { height: 8px; background: var(--neutral-200); border-radius: 3px; width: 60%; }
.pfm-hero-big {
  height: 34px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: 4px;
}
.pfm-cta-row { display: flex; gap: 6px; }
.pfm-btn {
  width: 40px; height: 10px;
  background: var(--primary);
  border-radius: 3px;
}
.pfm-btn.ghost { background: transparent; border: 1px solid var(--neutral-300); }
.pfm-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.pfm-feats span { height: 16px; background: var(--neutral-100); border-radius: 3px; }
.pfm-split { display: flex; gap: 6px; }
.pfm-split-l { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.pfm-split-l span { height: 6px; background: var(--neutral-200); border-radius: 2px; }
.pfm-split-l span.short { width: 70%; }
.pfm-split-r { width: 55px; background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300)); border-radius: 4px; }
.pfm-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.pfm-team span {
  height: 20px;
  background: var(--neutral-100);
  border-radius: 50px 50px 3px 3px;
}
.pf-body { padding: 22px 24px 24px; }
.pf-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.pf-body h3 {
  font-size: 1.2rem;
  color: var(--neutral-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pf-body p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 14px;
}
.pf-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-tags span {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  border-radius: 100px;
}
.portfolio-note {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 40px;
  padding: 14px 24px;
  background: #fff;
  border: 1px dashed var(--neutral-300);
  border-radius: var(--radius-sm);
  color: var(--neutral-500);
  font-size: .85rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════ */
.blog-section { background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.blog-card.featured {
  grid-row: span 2;
  flex-direction: column;
}
.blog-card.featured .blog-visual { height: 320px; }
.blog-card.featured .blog-body { padding: 28px 32px 32px; }
.blog-card.featured h3 { font-size: 1.6rem; }
.blog-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.blog-visual-1 { background: linear-gradient(135deg, #0ea5e9, #22c55e); }
.blog-visual-2 { background: linear-gradient(135deg, #0f172a, #0ea5e9); }
.blog-visual-3 { background: linear-gradient(135deg, #06b6d4, #10b981); }
.blog-visual-4 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.blog-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.2) 0%, transparent 40%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,.15) 0%, transparent 40%);
}
.blog-pattern::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(45deg, transparent 48%, rgba(255,255,255,.08) 49%, rgba(255,255,255,.08) 51%, transparent 52%);
  background-size: 14px 14px;
}
.blog-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--neutral-900);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.blog-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.blog-meta {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 12px;
  font-size: .74rem;
  color: var(--neutral-500);
}
.blog-cat {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-date, .blog-read {
  display: flex; align-items: center; gap: 4px;
}
.blog-read::before { content: '·'; margin-right: 4px; }
.blog-body h3 {
  font-size: 1.1rem;
  color: var(--neutral-900);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color .2s;
}
.blog-card:hover .blog-body h3 { color: var(--primary); }
.blog-body p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: gap .25s;
}
.blog-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   PERFORMANCE / PAGESPEED
══════════════════════════════════════════════ */
.perf-section { background: #fff; position: relative; overflow: hidden; }
.perf-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(14,165,233,.06), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(16,185,129,.06), transparent 50%);
  pointer-events: none;
}
.perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.perf-score-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.perf-score-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.perf-device-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: var(--neutral-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gauge-wrap {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 16px;
}
.gauge { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-bg {
  fill: none;
  stroke: var(--neutral-100);
  stroke-width: 10;
}
.gauge-fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.8s cubic-bezier(.25,.8,.25,1);
}
.gauge-val {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--neutral-900);
}
.perf-metric-name {
  font-size: .9rem; font-weight: 600;
  color: var(--neutral-700);
}
.perf-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  position: relative; z-index: 1;
}
.perf-metric {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 16px;
  border-right: 1px solid var(--neutral-200);
}
.perf-metric:last-child { border-right: none; }
.perf-metric-label {
  font-size: .78rem; color: var(--neutral-500); font-weight: 500;
}
.perf-metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700;
}
.perf-metric-value.good { color: var(--accent); }
.perf-cta { text-align: center; margin-top: 32px; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process-section { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 56px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary) 0%, var(--accent) 100%);
  opacity: .2;
  z-index: 0;
}
.proc-step {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.proc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.proc-num {
  position: absolute;
  top: -14px; right: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: .9;
}
.proc-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-dark);
  transition: background .3s, color .3s;
}
.proc-step:hover .proc-icon { background: var(--primary); color: #fff; }
.proc-step h4 {
  font-size: 1rem;
  color: var(--neutral-900);
  margin-bottom: 8px;
}
.proc-step p {
  font-size: .85rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section { background: #fff; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(14,165,233,.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--neutral-900);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--neutral-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--neutral-600);
  transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: .92rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-section { background: #fff; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(15%);
  transition: filter .4s;
}
.about-img-frame:hover img { filter: grayscale(0); }
.img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: -24px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--neutral-200);
}
.ab-icon {
  width: 40px; height: 40px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-badge strong { display: block; font-size: .9rem; color: var(--neutral-900); }
.about-badge span { font-size: .8rem; color: var(--neutral-500); }
.about-visual { position: relative; }
.about-content { display: flex; flex-direction: column; gap: 16px; }
.about-text { font-size: 1rem; color: var(--neutral-600); line-height: 1.75; }
.about-text strong { color: var(--neutral-900); font-weight: 600; }

.about-skills { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.skill-item { display: flex; flex-direction: column; gap: 6px; }
.skill-name { font-size: .85rem; font-weight: 600; color: var(--neutral-700); }
.skill-bar { height: 5px; background: var(--neutral-200); border-radius: 50px; overflow: hidden; }
.skill-fill {
  height: 100%; width: 0;
  background: var(--grad);
  border-radius: 50px;
  transition: width 1.2s ease .4s;
}
.in-view .skill-fill { width: var(--pct); }

.about-info { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.info-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--neutral-600); }
.info-item svg { color: var(--primary); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   STORY / TIMELINE
══════════════════════════════════════════════ */
.story-section { background: var(--neutral-50); }
.timeline {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
  max-width: 800px; margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 0 0 48px 0;
  width: 50%;
  padding-right: 48px;
  position: relative;
}
.tl-item.right {
  align-self: flex-end;
  padding-right: 0;
  padding-left: 48px;
  flex-direction: row-reverse;
}
.tl-dot {
  position: absolute;
  right: -9px; top: 6px;
  width: 16px; height: 16px;
  background: var(--primary);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(14,165,233,.2);
  flex-shrink: 0;
  z-index: 1;
}
.tl-item.right .tl-dot { right: auto; left: -9px; }
.active-dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(16,185,129,.25), 0 0 16px rgba(16,185,129,.4);
  animation: glow-dot 2s infinite;
}
@keyframes glow-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,.25), 0 0 16px rgba(16,185,129,.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,.15), 0 0 28px rgba(16,185,129,.6); }
}
.tl-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tl-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: box-shadow .3s;
}
.tl-card:hover { box-shadow: var(--shadow-md); }
.tl-card h4 { font-size: 1rem; color: var(--neutral-900); margin-bottom: 8px; }
.tl-card p { font-size: .88rem; color: var(--neutral-500); line-height: 1.65; }
.active-card {
  border-color: var(--accent);
  background: linear-gradient(160deg, #fff, var(--accent-light));
}
.tl-item .tl-card { width: 100%; }

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing-section { background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-price {
  border-color: var(--primary);
  background: linear-gradient(160deg, #fff 0%, var(--primary-light) 100%);
  box-shadow: 0 8px 32px rgba(14,165,233,.18);
  transform: scale(1.03);
}
.featured-price:hover { transform: scale(1.03) translateY(-4px); }
.featured-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  padding: 5px 18px; border-radius: 50px; white-space: nowrap;
}
.price-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.price-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.featured-price .price-icon { background: var(--primary); color: #fff; }
.price-head h3 { font-size: 1.1rem; color: var(--neutral-900); margin-bottom: 2px; }
.price-head p { font-size: .82rem; color: var(--neutral-500); }
.price-range { display: flex; align-items: baseline; gap: 8px; margin-bottom: 28px; }
.price-from { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--neutral-900); }
.price-sep { font-size: 1rem; color: var(--neutral-400); }
.price-to { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--neutral-600); }
.btn-price {
  display: block; text-align: center;
  border: 1.5px solid var(--neutral-300);
  color: var(--neutral-700);
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
}
.btn-price:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.featured-btn {
  background: var(--grad);
  border: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(14,165,233,.3);
}
.featured-btn:hover { box-shadow: 0 8px 24px rgba(14,165,233,.45); transform: translateY(-1px); color: #fff; background: var(--grad); border: none; }
.pricing-note {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-size: .85rem; color: var(--neutral-500);
  margin-top: 40px;
}
.pricing-note svg { color: var(--neutral-400); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-section { background: var(--neutral-50); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.why-point { display: flex; gap: 16px; }
.wp-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.why-point strong { display: block; font-size: .95rem; color: var(--neutral-900); margin-bottom: 4px; }
.why-point p { font-size: .88rem; color: var(--neutral-500); line-height: 1.6; }
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-badge {
  background: #fff;
  border: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  font-size: .82rem; font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all .25s;
  cursor: default;
}
.tech-badge:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14,165,233,.25);
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-section { background: #fff; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--neutral-700); }
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--neutral-900);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--neutral-400); }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(14,165,233,.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,.45); }
.form-success, .form-error {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500;
}
.form-success { background: var(--accent-light); color: #065f46; }
.form-error { background: #fee2e2; color: #991b1b; }

.contact-info { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.contact-info h3 { font-size: 1.3rem; color: var(--neutral-900); margin-bottom: 28px; }
.ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--neutral-100);
}
.ci-icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: .88rem; color: var(--neutral-700); margin-bottom: 3px; }
.ci-item span, .ci-item a { font-size: .9rem; color: var(--neutral-500); }
.ci-item a:hover { color: var(--primary); }
.ci-web { margin-top: 24px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .nav-logo { margin-bottom: 16px; }
.footer .logo-text { color: #fff; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: var(--neutral-500); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong { font-size: .88rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer-col a { font-size: .85rem; color: var(--neutral-500); transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px 24px;
  max-width: 1200px; margin: 0 auto;
  font-size: .8rem; color: var(--neutral-600);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "visual" "scroll";
    padding: 100px 24px 80px;
    gap: 40px;
  }
  .hero-visual { justify-content: flex-start; }
  .device-mockup { width: 100%; max-width: 400px; transform: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card.featured { grid-row: span 1; grid-column: span 2; }
  .blog-card.featured .blog-visual { height: 220px; }
  .blog-card.featured h3 { font-size: 1.3rem; }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-metrics-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .perf-metric:nth-child(2) { border-right: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame img { height: 380px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-price { transform: none; }
  .featured-price:hover { transform: translateY(-4px); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .perf-grid { grid-template-columns: 1fr; }
  .perf-metrics-row { grid-template-columns: 1fr; }
  .perf-metric { border-right: none; border-bottom: 1px solid var(--neutral-200); padding-bottom: 16px; }
  .perf-metric:last-child { border-bottom: none; padding-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .faq-q { padding: 18px 20px; font-size: .92rem; }
  .faq-a p { padding: 0 20px 18px; font-size: .88rem; }
  .timeline-line { left: 20px; }
  .tl-item, .tl-item.right {
    width: 100%; padding-left: 52px; padding-right: 0;
    flex-direction: column;
    align-self: unset;
  }
  .tl-dot, .tl-item.right .tl-dot { left: 12px; right: auto; top: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .section-title { font-size: 1.8rem; }
}
