/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --bg:          #0a0a0f;
  --bg2:         #111118;
  --bg3:         #16161f;
  --card:        #1a1a24;
  --border:      rgba(255,255,255,0.08);
  --accent:      #6c63ff;
  --accent-dim:  rgba(108,99,255,0.15);
  --accent2:     #ff6b6b;
  --gold:        #f5a623;
  --text:        #e8e8f0;
  --muted:       #8888aa;
  --white:       #ffffff;
  --radius:      16px;
  --nav-h:       72px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; letter-spacing: -0.5px; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 38px; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-cta {
  background: var(--accent); color: var(--white);
  padding: 10px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); color: var(--white); }
.nav-hamburger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--text); border-radius: 10px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
.nav-hamburger svg { width: 24px; height: 24px; }
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(24px);
  z-index: 199;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; padding: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 22px; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--white); }
.nav-mobile .nav-cta { font-size: 16px; padding: 14px 36px; margin-top: 8px; display: inline-block; }

/* ── PAGE HERO BANNER ────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 60px 80px;
  text-align: center; background: var(--bg2);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { display: block; text-align: center; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 64px); font-weight: 700; margin-bottom: 16px; position: relative; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto; line-height: 1.7; position: relative; }

/* ── LAYOUT ──────────────────────────────────────────────── */
section { padding: 100px 60px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; margin-bottom: 20px; }
.section-sub { color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-center { text-align: center; }
.section-center .section-sub { max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 0 40px rgba(108,99,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(108,99,255,0.5); color: var(--white); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); color: var(--text);
  background: rgba(255,255,255,0.04);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-group.center { justify-content: center; }

/* ── HERO (HOME) ─────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 20px 100px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,99,255,0.15); border: 1px solid rgba(108,99,255,0.35);
  color: #a99fff; padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 32px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 { font-size: clamp(40px, 7vw, 88px); font-weight: 700; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 50%, var(--accent2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero > div > p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 44px; line-height: 1.7; }

/* ── BADGES ROW ──────────────────────────────────────────── */
.badges-row {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 48px 60px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.badges-row-label { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.badges-row img { height: 54px; opacity: 0.7; filter: grayscale(0.3) brightness(1.1); transition: opacity 0.2s; }
.badges-row img:hover { opacity: 1; }

/* ── ABOUT SPLIT ─────────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); width: 100%; }
.about-img-wrap::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: linear-gradient(135deg, rgba(108,99,255,0.4), transparent 60%);
  z-index: -1;
}
.about-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.about-stat-pill { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 22px; }
.about-stat-pill strong { display: block; font-size: 26px; font-weight: 800; color: var(--accent); font-family: 'Space Grotesk', sans-serif; }
.about-stat-pill span { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ── SERVICE ICON ────────────────────────────────────────── */
.svc-icon {
  width: 56px; height: 56px; background: var(--accent-dim);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 20px; flex-shrink: 0;
}
.svc-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(108,99,255,0.3); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tech-pill { background: var(--bg3); border: 1px solid var(--border); border-radius: 50px; padding: 4px 14px; font-size: 12px; font-weight: 500; color: var(--muted); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  display: flex; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  background: var(--card); max-width: 1200px; margin: 0 auto;
}
.stat-item { flex: 1; padding: 40px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-size: clamp(32px, 4vw, 52px); font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-item span { color: var(--muted); font-size: 14px; font-weight: 500; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 64px auto 0; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 80px; line-height: 1; color: var(--accent); opacity: 0.15; font-family: Georgia, serif; }
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.stars svg { width: 16px; height: 16px; }
.testimonial-card > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.author-row { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: white; flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; }
.author-info span { font-size: 13px; color: var(--muted); }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--bg2); }
.cta-inner {
  background: linear-gradient(135deg, var(--card), var(--bg3));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 80px 60px; text-align: center;
  position: relative; overflow: hidden; max-width: 900px; margin: 0 auto;
}
.cta-glow { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(108,99,255,0.2), transparent 70%); pointer-events: none; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; position: relative; }
.cta-inner > p { color: var(--muted); font-size: 17px; margin-bottom: 40px; position: relative; }

/* ── CONTACT INFO CARDS ──────────────────────────────────── */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto 64px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; text-align: center; transition: all 0.3s; }
.contact-card:hover { border-color: rgba(108,99,255,0.3); transform: translateY(-3px); }
.contact-card-icon { width: 64px; height: 64px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent); }
.contact-card-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 15px; }
.contact-card a:hover { color: var(--accent); }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-form-wrap h2 { font-size: 32px; margin-bottom: 12px; }
.contact-form-wrap > p { color: var(--muted); font-size: 15px; margin-bottom: 36px; line-height: 1.6; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: var(--muted); font-family: 'Inter', sans-serif; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px; color: var(--text);
  font-size: 15px; transition: border-color 0.2s; outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(136,136,170,0.6); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit-wrap { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.contact-aside h3 { font-size: 22px; margin-bottom: 16px; }
.contact-aside > p { color: var(--muted); font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.contact-detail-item a, .contact-detail-item span { color: var(--muted); font-size: 14px; }
.contact-detail-item a:hover { color: var(--accent); }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-tab {
  padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border); color: var(--muted); background: transparent;
  transition: all 0.2s; cursor: pointer; font-family: 'Inter', sans-serif;
}
.filter-tab:hover { border-color: rgba(108,99,255,0.4); color: var(--text); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.portfolio-item { display: none; }
.portfolio-item.show { display: block; }
.portfolio-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; height: 100%; display: flex; flex-direction: column; }
.portfolio-card:hover { border-color: rgba(108,99,255,0.3); transform: translateY(-4px); }
.portfolio-card-img { overflow: hidden; position: relative; }
.portfolio-card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; transition: transform 0.4s; }
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.04); }
.portfolio-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.portfolio-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.portfolio-card-body p { color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1; margin-bottom: 20px; }
.portfolio-card-footer { display: flex; align-items: center; justify-content: space-between; }
.portfolio-tag { display: inline-block; background: var(--accent-dim); color: var(--accent); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.portfolio-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.portfolio-link:hover { color: var(--accent); }
.portfolio-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── VALUES GRID ─────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.value-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.value-card-num { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.value-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── CEO SECTION ─────────────────────────────────────────── */
.ceo-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--accent-dim); border: 1px solid rgba(108,99,255,0.3); border-radius: 50px; padding: 8px 20px; font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 24px; }

/* ── CLUTCH BANNER ───────────────────────────────────────── */
.clutch-banner {
  background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(255,107,107,0.08));
  border: 1px solid rgba(108,99,255,0.25); border-radius: var(--radius);
  padding: 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
  max-width: 1200px; margin: 64px auto 0;
}
.clutch-banner h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.clutch-banner p { color: var(--muted); font-size: 15px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 60px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── SCROLL-TO-TOP ───────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 100;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(108,99,255,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 20px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 64px 20px; }
  .page-hero { padding: calc(var(--nav-h) + 60px) 20px 60px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .stats-bar { flex-direction: column; border-radius: var(--radius); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .badges-row { padding: 32px 20px; gap: 20px; }
  .badges-row img { height: 42px; }

  .cta-inner { padding: 48px 28px; }
  .clutch-banner { padding: 32px 24px; }

  .hero { padding: 110px 20px 80px; min-height: auto; }
  .hero h1 { letter-spacing: -1px; font-size: 38px; }
  .hero-glow { width: 400px; height: 300px; }

  .scroll-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .btn-primary, .btn-outline { padding: 13px 22px; font-size: 14px; }
  .cta-inner h2 { font-size: 26px; }
  .service-card { padding: 28px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}
