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

:root {
  /* === VEDHSHALA DESIGN SYSTEM === */
  /* One unified palette — no green, just black/white/accent */
  --brand-accent: #e85d3a;
  --brand-accent-hover: #d14e2d;
  --brand-dark: #1a1a1a;
  --brand-black: #1a1a1a;

  /* Text */
  --color-text: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-text-light-muted: #999;

  /* Backgrounds */
  --color-bg-dark: #0a0a0a;
  --color-bg-light: #f4f4f1;
  --color-bg-light-alt: #eaeae5;
  --color-bg-white: #ffffff;
  --color-bg-card: #ffffff;

  /* Borders */
  --color-border: rgba(255, 255, 255, 0.15);
  --color-border-light: rgba(255, 255, 255, 0.08);
  --color-border-dark: var(--color-border-dark);

  /* Typography */
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg-dark);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: auto;
}

.navbar-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background: rgba(23, 23, 23, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(64, 64, 64, 0.8);
  border-radius: 72px;
}

.nav-logo {
  text-decoration: none;
  margin-right: 0.5rem;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--brand-black);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  background: rgb(41, 41, 41);
  color: #fff;
  border: 1px solid rgb(50, 50, 50);
  border-radius: 120px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.2s;
  box-shadow:
    rgba(0, 0, 0, 0.68) 0px -0.5px 0.5px -1.25px inset,
    rgba(0, 0, 0, 0.6) 0px -1.8px 1.8px -2.5px inset,
    rgba(0, 0, 0, 0.24) 0px -8px 8px -3.75px inset;
}

.nav-cta:hover {
  background: rgb(55, 55, 55);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #fff;
  padding: 0.25rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Smoke background */
.hero-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 45% 40%, rgba(180, 180, 180, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 55% 50%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 40% 60%, rgba(150, 150, 150, 0.08) 0%, transparent 50%);
  z-index: 0;
  animation: smokeShift 12s ease-in-out infinite alternate;
}

@keyframes smokeShift {
  0% { opacity: 0.8; transform: scale(1) translateY(0); }
  100% { opacity: 1; transform: scale(1.05) translateY(-10px); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 160px;
  flex: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.5rem;
  background: rgba(40, 40, 40, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Heading */
.hero-heading {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

/* Subtext */
.hero-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background: #000;
  border: 1px solid rgba(100, 100, 100, 0.5);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  opacity: 0.8;
}

.hero-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 30%;
  right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0.5;
}

.hero-btn:hover {
  border-color: rgba(150, 150, 150, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.hero-btn-primary {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
}

.hero-btn-secondary {
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-scroll-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.hero-scroll-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-scroll-mouse {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Brand logos marquee */
.hero-logos {
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.hero-logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.logo-text svg {
  opacity: 0.5;
}

.logo-bold {
  font-weight: 700;
  font-size: 1.4rem;
}

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

/* ===== BUTTONS (shared) ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--color-border-dark);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--color-bg-light);
  padding: 5rem 0;
  color: var(--brand-black);
  overflow: hidden;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.services-header-left {
  flex: 1;
}

.services-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--brand-black);
  color: #fff;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brand-black);
  line-height: 1.1;
}

.services-intro {
  max-width: 300px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: right;
}

/* Service Cards Grid */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-bg-light-alt);
}

.service-card-top {
  padding: 2rem 1.75rem 1.5rem;
  flex: 1;
}

.service-card-icon {
  margin-bottom: 1.25rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-dark);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

/* Service Card Image */
.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  margin: 0 1rem 1rem;
  border-radius: 12px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.card-image-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red {
  background: var(--brand-accent);
}

.dot-orange {
  background: var(--brand-accent);
}

.dot-pink {
  background: rgba(232, 93, 58, 0.3);
}

/* Services responsive */
@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: 1fr;
  }

  .services-header {
    flex-direction: column;
  }

  .services-intro {
    text-align: left;
    max-width: 100%;
  }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background: var(--color-bg-light-alt);
  padding: 5rem 0;
  color: var(--brand-black);
  overflow: hidden;
}

.benefits-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.benefits-header-left {
  flex: 1;
}

.benefits-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--brand-black);
  color: #fff;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.benefits-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brand-black);
  line-height: 1.1;
}

.benefits-intro {
  max-width: 320px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: right;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--color-border-dark);
  transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.benefit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.benefit-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-black);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.bdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-dark);
}

.bdot-red {
  background: var(--brand-accent);
}

.benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 0.5rem;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

/* Benefits responsive */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-header {
    flex-direction: column;
  }

  .benefits-intro {
    text-align: left;
    max-width: 100%;
  }

  .benefit-card-header {
    margin-bottom: 2rem;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--color-bg-light-alt);
  padding: 5rem 0;
  color: var(--brand-black);
  overflow: hidden;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 2rem;
}

.pricing-header-left { flex: 1; }

.pricing-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--brand-black);
  color: #fff;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brand-black);
  line-height: 1.1;
}

.pricing-intro {
  max-width: 300px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: right;
}

.pricing-dot-center {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-dot-center span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--brand-black);
  border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

/* Left: Workflow Steps */
.pricing-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-card {
  background: #fff;
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  padding: 1.5rem;
}

.step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dots {
  display: flex;
  gap: 4px;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-dark);
}

.sdot-red {
  background: var(--brand-accent);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 0.25rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  line-height: 1.5;
}

/* Pricing Cards */
.pricing-card {
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.pricing-card-light {
  background: #fff;
  border: 1px solid var(--color-border-dark);
  color: var(--brand-black);
}

.pricing-card-dark {
  background: var(--brand-black);
  color: #fff;
}

.pricing-card-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pricing-icon-dark {
  background: #2a2a2a;
}

.pricing-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.pricing-card-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-card-price {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.6;
}

.pricing-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.pricing-card-dark .pricing-card-desc {
  color: var(--color-text-light-muted);
}

/* Addon toggle */
.pricing-addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  background: var(--color-bg-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border-dark);
}

.pricing-addon-dark {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #fff;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: #c0c0ba;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-block;
}

.toggle-dark {
  background: #555;
}

.toggle-knob {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch.active {
  background: var(--brand-accent);
}

.toggle-dark.active {
  background: var(--brand-accent);
}

.toggle-switch.active .toggle-knob {
  left: 22px;
}

.price-animating {
  transition: transform 0.1s;
  transform: scale(1.05);
}

/* Features list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-card-dark .pricing-features li {
  color: var(--color-text-light-muted);
}

.feature-plus {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--color-text-light-muted);
}

.pricing-card-dark .feature-plus {
  border-color: #3a3a3a;
  color: var(--color-text-muted);
}

/* CTA buttons */
.pricing-cta {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pricing-cta:hover {
  opacity: 0.85;
}

.pricing-cta-dark {
  background: var(--brand-black);
  color: #fff;
}

.pricing-cta-light {
  background: #fff;
  color: var(--brand-black);
}

/* Pricing responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header {
    flex-direction: column;
  }

  .pricing-intro {
    text-align: left;
    max-width: 100%;
  }

  .pricing-steps {
    flex-direction: row;
    overflow-x: auto;
  }

  .step-card {
    min-width: 220px;
  }
}

/* ===== ABOUT SECTION (Aleric Style) ===== */
.about-section {
  background: var(--color-bg-light);
  color: var(--brand-dark);
  overflow: hidden;
}

.about-grid {
  display: flex;
  gap: 4rem;
  padding: 5rem 0 4rem;
  align-items: flex-start;
}

/* Left: Counter */
.about-left {
  flex: 0 0 45%;
  position: relative;
}

.about-tag {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  border: 1.5px solid var(--brand-black);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 2rem;
}

.about-counter-area {
  position: relative;
  width: 100%;
  height: 380px;
}

.about-counter-text {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.about-counter-number {
  font-size: clamp(10rem, 22vw, 18rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 0.85;
  display: inline-block;
}

.about-counter-suffix {
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 0.85;
  display: inline-block;
  vertical-align: top;
  margin-left: -0.5rem;
}

.about-counter-glow {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 93, 58, 0.2) 0%, rgba(232, 93, 58, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Floating Read More buttons */
.read-more-btn {
  position: absolute;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  z-index: 3;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.read-more-orange {
  background: var(--brand-accent);
  color: #fff;
  bottom: 110px;
  left: 30px;
}

.read-more-outline-top {
  background: #fff;
  color: var(--brand-dark);
  border: 1.5px solid var(--brand-black);
  top: 80px;
  right: 40px;
}

.read-more-green {
  background: var(--brand-black);
  color: #fff;
  bottom: 40px;
  left: 180px;
}

/* Right: Agency Info */
.about-right {
  flex: 0 0 50%;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Rating Row */
.about-rating-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-rating-score {
  display: flex;
  flex-direction: column;
}

.rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
}

.rating-reviews {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.about-rating-divider {
  width: 1px;
  height: 50px;
  background: var(--color-border-dark);
  align-self: center;
}

.about-rating-stars {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rating-label {
  font-size: 0.85rem;
  color: var(--brand-dark);
  font-weight: 500;
}

.stars-row {
  display: flex;
  gap: 4px;
}

.stars-row svg {
  width: 22px;
  height: 22px;
}

/* Testimonial */
.about-testimonial {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
  font-style: normal;
}

.about-author {
  display: flex;
  flex-direction: column;
}

.about-author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.about-author-role {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Stats Bar */
.stats-bar {
  border-top: 1px solid var(--color-border-dark);
  padding: 3rem 0;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  flex-shrink: 0;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
}

.stat-content {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.stat-number,
.stat-suffix {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  display: inline;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  width: 100%;
}

/* ===== WORK / PORTFOLIO CAROUSEL ===== */
.work-section {
  background: var(--color-bg-dark);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.work-header {
  text-align: center;
  margin-bottom: 3rem;
}

.work-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.work-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: inline-block;
}

.work-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}

/* Carousel */
.work-carousel-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  perspective: 1200px;
}

.work-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-slide {
  position: absolute;
  width: 280px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, opacity 0.5s ease, z-index 0s;
  cursor: grab;
  user-select: none;
}

.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.work-play {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

.work-play span {
  font-size: 0.65rem;
}

/* Slide positions via data attributes — set by JS */
.work-slide[data-pos="0"] {
  transform: translateX(-520px) scale(0.7) rotateY(8deg);
  opacity: 0.3;
  z-index: 1;
}

.work-slide[data-pos="1"] {
  transform: translateX(-300px) scale(0.82) rotateY(5deg);
  opacity: 0.6;
  z-index: 2;
}

.work-slide[data-pos="2"] {
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.work-slide[data-pos="3"] {
  transform: translateX(300px) scale(0.82) rotateY(-5deg);
  opacity: 0.6;
  z-index: 2;
}

.work-slide[data-pos="4"] {
  transform: translateX(520px) scale(0.7) rotateY(-8deg);
  opacity: 0.3;
  z-index: 1;
}

.work-slide[data-pos="hidden"] {
  transform: translateX(0) scale(0.5);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Active card green border */
.work-slide[data-pos="2"]::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--brand-accent);
  border-radius: 24px;
  pointer-events: none;
}

/* Nav arrows */
.work-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(232, 93, 58, 0.4);
}

.work-nav:hover {
  background: var(--brand-accent-hover);
  transform: translateY(-50%) scale(1.1);
}

.work-nav-prev {
  left: calc(50% - 190px);
}

.work-nav-next {
  right: calc(50% - 190px);
}

/* Work responsive */
@media (max-width: 768px) {
  .work-carousel-wrap {
    height: 420px;
  }

  .work-slide {
    width: 220px;
    height: 370px;
  }

  .work-slide[data-pos="0"] {
    transform: translateX(-320px) scale(0.7) rotateY(8deg);
  }

  .work-slide[data-pos="1"] {
    transform: translateX(-180px) scale(0.82) rotateY(5deg);
  }

  .work-slide[data-pos="3"] {
    transform: translateX(180px) scale(0.82) rotateY(-5deg);
  }

  .work-slide[data-pos="4"] {
    transform: translateX(320px) scale(0.7) rotateY(-8deg);
  }

  .work-nav-prev {
    left: calc(50% - 140px);
  }

  .work-nav-next {
    right: calc(50% - 140px);
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 0;
  background: #fff;
  color: var(--brand-black);
  overflow: hidden;
}

.contact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brand-black);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.875rem 1rem;
  border: none;
  border-bottom: 1.5px solid var(--color-border-dark);
  border-radius: 0;
  font-size: 0.95rem;
  font-family: var(--font-family);
  background: transparent;
  color: var(--brand-black);
  transition: border-color 0.2s;
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-light-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-black);
}

.contact-submit-btn {
  align-self: flex-start;
  padding: 0.85rem 2rem;
  background: var(--brand-black);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-family);
  transition: background 0.2s;
}

.contact-submit-btn:hover {
  background: #2a2a2a;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  line-height: 1.5;
}

.contact-email-link {
  color: var(--brand-black);
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Image */
.contact-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-play-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-black);
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-black);
  font-family: var(--font-family);
  text-align: left;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-accent);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 1px;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-image {
    height: 350px;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-light);
  color: var(--brand-black);
  padding: 4rem 0 0;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border-dark);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-black);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: var(--brand-black);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
  transition: background 0.2s;
}

.footer-contact-btn:hover {
  background: #2a2a2a;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-black);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-email:hover {
  opacity: 0.6;
}

/* Nav columns */
.footer-nav {
  display: flex;
  gap: 3rem;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 1rem;
}

.footer-nav-col a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-nav-col a:hover {
  color: var(--brand-black);
}

.footer-new-badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  background: var(--brand-black);
  color: #fff;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Socials */
.footer-socials {
  text-align: right;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-black);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-social-icon:hover {
  background: var(--brand-black);
  color: #fff;
  border-color: var(--brand-black);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background: var(--color-bg-light-alt);
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  border-radius: 50px;
}

.footer-avatar {
  width: 28px;
  height: 28px;
  background: var(--brand-black);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--brand-black);
}

/* Watermark */
.footer-watermark {
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  text-align: center;
  line-height: 0.8;
  padding-bottom: 1rem;
  letter-spacing: -0.03em;
  user-select: none;
  pointer-events: none;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-socials {
    text-align: left;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    gap: 1rem;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 2rem);
    top: 0.75rem;
  }

  .navbar-pill {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(23, 23, 23, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(64, 64, 64, 0.8);
    border-radius: 16px;
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.6rem 1rem;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-heading {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-scroll-line {
    width: 60px;
  }

  .about-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
  }

  .about-counter-area {
    height: 280px;
  }

  .about-counter-number {
    font-size: 8rem;
  }

  .about-counter-suffix {
    font-size: 6rem;
  }

  .read-more-orange {
    left: 10px;
    bottom: 80px;
  }

  .read-more-outline-top {
    right: 10px;
    top: 50px;
  }

  .read-more-green {
    left: 120px;
    bottom: 20px;
  }

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

  .about-rating-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== COMPREHENSIVE MOBILE FIX ===== */
@media (max-width: 768px) {
  /* Prevent all horizontal overflow */
  section, header, footer, .container {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    padding: 0 1rem;
  }

  /* --- Hero --- */
  .hero-content {
    padding-top: 100px;
  }

  .hero-heading {
    font-size: 2.25rem;
  }

  .hero-subtext {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    gap: 0.75rem;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .hero-logos-track {
    gap: 2.5rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  /* --- Services --- */
  .services-header,
  .benefits-header,
  .pricing-header {
    flex-direction: column;
    gap: 1rem;
  }

  .services-intro,
  .benefits-intro,
  .pricing-intro {
    text-align: left;
    max-width: 100%;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .service-card-image {
    height: 200px;
  }

  /* --- Benefits --- */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card-header {
    margin-bottom: 1.5rem;
  }

  /* --- Pricing --- */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-steps {
    flex-direction: column;
  }

  .step-card {
    min-width: 0;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card-title-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  /* --- About / 15+ Section --- */
  .about-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .about-counter-area {
    height: 250px;
  }

  .about-counter-number {
    font-size: 7rem;
  }

  .about-counter-suffix {
    font-size: 5rem;
  }

  .read-more-orange {
    left: 10px;
    bottom: 70px;
  }

  .read-more-outline-top {
    right: 10px;
    top: 40px;
  }

  .read-more-green {
    left: 100px;
    bottom: 15px;
  }

  .about-heading {
    font-size: 1.75rem;
  }

  .about-rating-row {
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  /* --- Work Carousel --- */
  .work-carousel-wrap {
    height: 400px;
  }

  .work-slide {
    width: 200px;
    height: 340px;
  }

  .work-slide[data-pos="0"] {
    transform: translateX(-260px) scale(0.65);
    opacity: 0.2;
  }

  .work-slide[data-pos="1"] {
    transform: translateX(-140px) scale(0.8) rotateY(4deg);
  }

  .work-slide[data-pos="2"] {
    transform: translateX(0) scale(1);
  }

  .work-slide[data-pos="3"] {
    transform: translateX(140px) scale(0.8) rotateY(-4deg);
  }

  .work-slide[data-pos="4"] {
    transform: translateX(260px) scale(0.65);
    opacity: 0.2;
  }

  .work-nav-prev {
    left: calc(50% - 130px);
  }

  .work-nav-next {
    right: calc(50% - 130px);
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-image {
    height: 300px;
  }

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

  .faq-title {
    font-size: 1.75rem;
  }

  /* --- Footer --- */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-socials {
    text-align: left;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-watermark {
    font-size: 5rem;
  }

  .footer-nav {
    gap: 2rem;
  }
}

/* ===== SMALL MOBILE (< 400px) ===== */
@media (max-width: 400px) {
  .hero-heading {
    font-size: 1.75rem;
  }

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

  .about-counter-number {
    font-size: 5rem;
  }

  .about-counter-suffix {
    font-size: 4rem;
  }

  .work-slide {
    width: 170px;
    height: 290px;
  }

  .footer-watermark {
    font-size: 3.5rem;
  }
}
