/* ============================================
   OUNCE LAB — Main Stylesheet
   Primary: #1AB08C | Dark: #0A0A0A | Light: #FAFAFA
   Sharp corners, fine borders, clean grid system
   ============================================ */

/* === CSS VARIABLES === */
:root {
  /* Colors — change these to update the entire site */
  --primary: #1AB08C;
  --primary-dark: #148F72;
  --primary-light: rgba(26, 176, 140, 0.12);

  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-border: #222222;

  --light: #FAFAFA;
  --light-2: #F2F2F2;
  --light-3: #E8E8E8;
  --light-border: #E0E0E0;

  --text-dark: #0A0A0A;
  --text-light: #FAFAFA;
  --text-muted: #888888;
  --text-muted-light: #AAAAAA;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Layout */
  --max-w: 1240px;
  --px: 40px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s var(--ease);
}

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

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

/* === UTILITY === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-border {
  border-top: 1px solid var(--light-border);
}

.section-border-dark {
  border-top: 1px solid var(--dark-border);
}

/* === HEADINGS === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn-outline-light {
  color: var(--text-muted);
  border-color: var(--light-border);
}
.btn-outline-light:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-outline-dark {
  color: var(--text-muted-light);
  border-color: var(--dark-border);
}
.btn-outline-dark:hover {
  border-color: var(--text-light);
  color: var(--text-light);
}

/* === PILLS === */
.pill {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid;
  font-family: var(--font-body);
  display: inline-block;
}
.pill-light {
  color: var(--text-muted);
  border-color: var(--light-border);
}
.pill-dark {
  color: var(--text-muted-light);
  border-color: var(--dark-border);
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid items */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.15s; }
.fade-in:nth-child(4) { transition-delay: 0.2s; }
.fade-in:nth-child(5) { transition-delay: 0.25s; }
.fade-in:nth-child(6) { transition-delay: 0.3s; }
.fade-in:nth-child(7) { transition-delay: 0.35s; }
.fade-in:nth-child(8) { transition-delay: 0.4s; }


/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--light-border);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img,
.nav-logo svg {
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}
.nav-links a:hover {
  color: var(--text-dark);
}

.nav-cta {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s var(--ease);
}
.nav-cta:hover {
  background: #222;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--light);
  border-bottom: 1px solid var(--light-border);
  padding: 20px var(--px);
  z-index: 99;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-border);
}

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


/* ============================================
   SECTION 1: HERO (LIGHT)
   ============================================ */
#hero {
  padding: 140px 0 80px;
  background: var(--light);
}

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

.hero-label {
  color: var(--primary);
  margin-bottom: 20px;
}

#hero h1 {
  font-size: 50px;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
}

.hero-visual {
  background: var(--light-2);
  border: 1px solid var(--light-border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light-border);
  width: 100%;
  height: 100%;
}

.hero-visual-grid div {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-family: var(--font-body);
  font-weight: 500;
}


/* ============================================
   SECTION 2: CREDIBILITY BAR (LIGHT)
   ============================================ */
#credibility {
  padding: 48px 0;
  background: var(--light);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--light-border);
}

.logos-label {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.logo-placeholder {
  width: 100px;
  height: 36px;
  background: var(--light-2);
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  flex-shrink: 0;
  font-family: var(--font-body);
}

/* Replace .logo-placeholder with actual logo images:
   <img src="images/clients/client-1.svg" alt="Client Name" class="client-logo"> */
.client-logo {
  height: 32px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

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


/* ============================================
   SECTION 3: SERVICES (DARK)
   ============================================ */
#services {
  padding: 100px 0;
  background: var(--dark);
  color: var(--text-light);
}

#services .section-header {
  margin-bottom: 60px;
}

#services .section-header .label {
  color: var(--primary);
}

#services .section-header h2 {
  font-size: 40px;
  color: var(--text-light);
  margin-top: 12px;
  letter-spacing: -1px;
}

#services .section-header p {
  font-size: 16px;
  color: var(--text-muted-light);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  padding: 32px 28px;
  border: 1px solid var(--dark-border);
  transition: background 0.3s var(--ease);
}
.service-card:hover {
  background: var(--dark-2);
}

.service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon span {
  color: var(--primary);
  font-size: 18px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-link {
  font-size: 13px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover {
  color: var(--primary-dark);
}

.services-cta {
  margin-top: 48px;
  text-align: center;
}
.services-cta p {
  color: var(--text-muted-light);
  font-size: 15px;
  margin-bottom: 16px;
}


/* ============================================
   SECTION 4: PORTFOLIO (LIGHT)
   ============================================ */
#portfolio {
  padding: 100px 0;
  background: var(--light);
}

#portfolio .section-header {
  margin-bottom: 48px;
}

#portfolio .section-header .label {
  color: var(--primary);
}

#portfolio .section-header h2 {
  font-size: 40px;
  margin-top: 12px;
  letter-spacing: -1px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.portfolio-card {
  border: 1px solid var(--light-border);
  background: var(--light-2);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.portfolio-card:hover {
  border-color: var(--primary);
}

.card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--light-3), var(--light-2));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--light-border);
  overflow: hidden;
}

/* Replace placeholder with actual images:
   <img src="images/projects/project-1.jpg" alt="Project Name"> */
.card-img span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .card-img img {
  transform: scale(1.03);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.card-tags span {
  font-size: 11px;
  padding: 3px 10px;
  border: 1px solid var(--light-border);
  color: var(--text-muted);
}

.portfolio-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.portfolio-view {
  text-align: center;
  margin-top: 40px;
}

.portfolio-view a {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}
.portfolio-view a:hover {
  color: var(--primary-dark);
}


/* ============================================
   SECTION 5: WHY OUNCE LAB (LIGHT)
   ============================================ */
#why {
  padding: 100px 0;
  background: var(--light);
}

#why .section-header {
  margin-bottom: 60px;
}

#why .section-header .label {
  color: var(--primary);
}

#why .section-header h2 {
  font-size: 40px;
  margin-top: 12px;
  letter-spacing: -1px;
}

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

.why-card {
  padding: 32px 28px;
  border: 1px solid var(--light-border);
}

.why-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.4;
}

.why-card h3 {
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================
   SECTION 6: PROCESS (DARK)
   ============================================ */
#process {
  padding: 100px 0;
  background: var(--dark);
  color: var(--text-light);
}

#process .section-header {
  margin-bottom: 60px;
}

#process .section-header .label {
  color: var(--primary);
}

#process .section-header h2 {
  font-size: 40px;
  color: var(--text-light);
  margin-top: 12px;
  letter-spacing: -1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-step {
  padding: 32px 24px;
  border: 1px solid var(--dark-border);
}

.step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.step-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.step-pills span {
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid var(--dark-border);
  color: var(--text-muted-light);
}


/* ============================================
   SECTION 7: FOUNDER (DARK)
   ============================================ */
#founder {
  padding: 100px 0;
  background: var(--dark-2);
  color: var(--text-light);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.founder-photo {
  aspect-ratio: 3/4;
  background: var(--dark-3);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Replace placeholder:
   <img src="images/founder.jpg" alt="Saurabh - Founder, Ounce Lab"> */
.founder-photo span {
  font-size: 12px;
  color: var(--text-muted);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#founder .label {
  color: var(--primary);
  margin-bottom: 12px;
}

#founder h2 {
  font-size: 32px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.founder-bio {
  font-size: 15px;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.founder-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--dark-border);
  padding: 8px 14px;
}

.founder-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.founder-badge span {
  font-size: 12px;
  color: var(--text-muted-light);
}

.founder-quote {
  background: var(--dark-3);
  border: 1px solid var(--dark-border);
  padding: 20px;
  margin-top: 8px;
}

.founder-quote p {
  font-size: 14px;
  color: var(--text-muted-light);
  font-style: italic;
  line-height: 1.7;
}

.quote-author {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: normal;
}

.founder-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.founder-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted-light);
  transition: all 0.2s var(--ease);
}
.founder-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
}


/* ============================================
   SECTION 8: TESTIMONIALS (LIGHT)
   ============================================ */
#testimonials {
  padding: 100px 0;
  background: var(--light);
}

#testimonials .section-header {
  margin-bottom: 48px;
}

#testimonials .section-header .label {
  color: var(--primary);
}

#testimonials .section-header h2 {
  font-size: 40px;
  margin-top: 12px;
  letter-spacing: -1px;
}

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

.testimonial-card {
  padding: 32px;
  border: 1px solid var(--light-border);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.stars span {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #F59E0B;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-card blockquote {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 36px;
  height: 36px;
  background: var(--light-2);
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  border-radius: 50%;
  flex-shrink: 0;
}

.t-name {
  font-size: 13px;
  font-weight: 600;
}

.t-role {
  font-size: 12px;
  color: var(--text-muted);
}


/* ============================================
   SECTION 9: FAQ (LIGHT)
   ============================================ */
#faq {
  padding: 100px 0;
  background: var(--light);
}

#faq .section-header {
  margin-bottom: 48px;
}

#faq .section-header .label {
  color: var(--primary);
}

#faq .section-header h2 {
  font-size: 40px;
  margin-top: 12px;
  letter-spacing: -1px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--light-border);
  margin-bottom: -1px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s var(--ease);
  user-select: none;
}
.faq-question:hover {
  background: var(--light-2);
}

.faq-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-bottom {
  margin-top: 40px;
}

.faq-bottom p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}


/* ============================================
   SECTION 10: CTA + CONTACT (DARK)
   ============================================ */
#cta {
  padding: 100px 0;
  background: var(--dark);
  color: var(--text-light);
}

.cta-header {
  text-align: center;
  margin-bottom: 60px;
}

.cta-header .label {
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.cta-header h2 {
  font-size: 44px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.cta-header p {
  font-size: 16px;
  color: var(--text-muted-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cta-form {
  display: grid;
  gap: 16px;
}

.cta-form label {
  font-size: 12px;
  color: var(--text-muted-light);
  margin-bottom: 4px;
  display: block;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  color: var(--text-light);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--primary);
}

.cta-form textarea {
  min-height: 80px;
  resize: vertical;
}

.cta-form select {
  cursor: pointer;
}

.cta-form option {
  background: var(--dark-2);
}

.cta-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-sidebar-card {
  border: 1px solid var(--dark-border);
  padding: 24px;
  background: var(--dark-2);
}

.cta-sidebar-card .label {
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.cta-sidebar-card p {
  font-size: 13px;
  color: var(--text-muted-light);
}

.trust-signals {
  display: grid;
  gap: 8px;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-signal span {
  font-size: 13px;
  color: var(--text-muted-light);
}


/* ============================================
   SECTION 11: FOOTER (DARK)
   ============================================ */
footer {
  padding: 60px 0 24px;
  background: var(--dark);
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo img,
.footer-logo svg {
  height: 24px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted-light);
  margin-bottom: 10px;
}
.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted-light);
  transition: all 0.2s var(--ease);
}
.footer-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --px: 20px; }

  nav .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  #hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  #hero h1 { font-size: 34px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; justify-content: center; }

  .stats-row { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-bottom { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  #cta .cta-header h2 { font-size: 32px; }
  #services .section-header h2,
  #portfolio .section-header h2,
  #why .section-header h2,
  #testimonials .section-header h2,
  #faq .section-header h2 { font-size: 32px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 16px; }
  .stat-num { font-size: 28px; }
}
