/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ── */
:root {
  --bg:           #0a0a0a;
  --surface:      #141414;
  --accent:       #dc5adb;
  --accent-glow:  rgba(220, 90, 219, 0.25);
  --text:         #f1f1f1;
  --text-muted:   #888;
  --radius:       12px;
  --font-body:    'Figtree', sans-serif;
  --font-display: 'Playfair Display', serif;
  --edge:         3rem;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  padding: 0 var(--edge);
}

/* ── Background: Gradient Mesh ── */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #050505;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: blob-drift 20s ease-in-out infinite alternate;
}

.bg-blob-1 {
  width: 50vw; height: 50vw;
  top: -15%; left: -10%;
  background: radial-gradient(circle, rgba(220,90,219,0.3), transparent 70%);
}

.bg-blob-2 {
  width: 45vw; height: 45vw;
  bottom: -10%; right: -10%;
  background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 70%);
  animation-delay: -7s;
}

.bg-blob-3 {
  width: 35vw; height: 35vw;
  top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(147,51,234,0.2), transparent 70%);
  animation-delay: -14s;
}

@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 15px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--edge);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem var(--edge);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo:hover { opacity: 0.7; }

.accent { color: var(--accent); }

/* Navbar logo image */
.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--text); }

.nav-cta {
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s ease;
}

.mobile-link:hover { color: var(--accent); }

.mobile-cta {
  margin-top: 1rem;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #e87ce7;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 8rem 0 6rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px var(--accent-glow));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .word {
  white-space: nowrap;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-badge-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════
   TRUSTED BY (Marquee)
   ══════════════════════════════════════ */
#trusted {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-track span::before {
  content: '\2014';
  margin-right: 3rem;
  color: rgba(255,255,255,0.15);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════ */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}

.section-heading .word,
.cta-heading .word {
  white-space: nowrap;
}

.section-heading em {
  font-style: italic;
  color: var(--accent);
}

/* ══════════════════════════════════════
   WHY CHOOSE US (#about)
   ══════════════════════════════════════ */
#about {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

#about .container {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  margin-top: 0;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(220, 90, 219, 0.2);
  transform: translateY(-4px);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
#services {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

#services .container {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(220, 90, 219, 0.2);
  transform: translateY(-4px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PROJECTS (#work)
   ══════════════════════════════════════ */
#work {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

#work .container {
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

/* Bento pattern: small(5) + large(7), then large(7) + small(5) */
.project-card:nth-child(4n+1) { grid-column: 1 / 6; }
.project-card:nth-child(4n+2) { grid-column: 6 / 13; }
.project-card:nth-child(4n+3) { grid-column: 1 / 8; }
.project-card:nth-child(4n+4) { grid-column: 8 / 13; }

/* Last card alone on its row — span full width */
.project-card:last-child:nth-child(4n+1) {
  grid-column: 4 / 10;
}

/* Featured (large) cards get taller images */
.project-card:nth-child(4n+2) .project-img,
.project-card:nth-child(4n+3) .project-img {
  aspect-ratio: 16 / 9;
}

.project-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.project-card:hover {
  border-color: rgba(220, 90, 219, 0.2);
  transform: translateY(-6px);
}

.project-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #080808;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.04);
}

.project-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(220, 90, 219, 0.3);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.project-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.project-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: gap 0.2s ease;
}

.project-link:hover {
  gap: 0.7rem;
}

/* ══════════════════════════════════════
   HOW IT WORKS (#process)
   ══════════════════════════════════════ */
#process {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}

.process-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 0.25rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   STATISTICS
   ══════════════════════════════════════ */
#stats {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   CTA / CONTACT
   ══════════════════════════════════════ */
#contact {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
  text-align: center;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(220, 90, 219, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-heading em {
  font-style: italic;
  color: var(--accent);
}

.contact-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ── Contact Form ── */
.contact-form {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.form-group label .required {
  color: var(--accent);
}

.form-group label .optional {
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: center;
  min-width: 220px;
  position: relative;
  margin-top: 0.5rem;
}

.form-submit .btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-submit.loading .btn-text {
  opacity: 0;
}

.form-submit.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 2rem;
  animation: successFade 0.6s ease;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-muted);
}

@keyframes successFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes successPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem var(--edge);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 992px) {
  :root { --edge: 2rem; }

  .nav-links,
  .nav-cta { display: none; }

  .hamburger { display: flex; }

  .navbar {
    padding: 0.75rem var(--edge);
  }

  .hero-logo-img {
    width: 140px;
    height: 140px;
  }

  .hero-badges { gap: 1.5rem; }

  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .projects-grid .project-card:nth-child(n) { grid-column: auto; }
  .projects-grid .project-card .project-img { aspect-ratio: 16 / 10; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --edge: 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid .project-card:nth-child(n) { grid-column: auto; }

  #hero { padding: 7rem 0 4rem; }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section-heading {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

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

  #about,
  #services,
  #work,
  #process { padding: 5rem 0; }

  #contact { padding: 6rem 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

  .hero-badges { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --edge: 1.25rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-logo-img {
    width: 100px;
    height: 100px;
  }

  .hero-badge-divider { display: none; }
  .hero-badges { gap: 1.5rem; }
}
