/* =========================================
   Nutraunitedmedia — Design System
   ========================================= */

:root {
  --color-bg: #f5f1ea;
  --color-bg-alt: #ede7dc;
  --color-dark: #0b1410;
  --color-dark-2: #142a22;
  --color-primary: #0f3e2a;
  --color-primary-light: #1a5d43;
  --color-accent: #c1ff72;
  --color-accent-2: #e8ffb5;
  --color-muted: #6b7a72;
  --color-text: #0b1410;
  --color-line: rgba(11, 20, 16, 0.12);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  --shadow-soft: 0 20px 40px -20px rgba(11, 20, 16, 0.18);
  --shadow-lift: 0 30px 60px -30px rgba(11, 20, 16, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 400;
}
h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  color: var(--color-text);
  opacity: 0.78;
  font-size: 1.05rem;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 25px;
}

/* ----------- NAVBAR ----------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(245, 241, 234, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(245, 241, 234, 0.92);
  border-bottom: 1px solid var(--color-line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  display: grid;
  place-items: center;
  color: var(--color-accent);
  font-weight: 700;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}
.logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo-img {
    height: 34px;
  }
  .logo-img-footer {
    height: 40px;
  }
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 4px 0;
  position: relative;
}
.nav-links .dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease);
}
.has-dropdown:hover .dropdown-toggle::after,
.has-dropdown.open .dropdown-toggle::after {
  width: 100%;
}
.dropdown-arrow {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 340px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  list-style: none;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.25s var(--ease);
}
.dropdown-menu a::after {
  display: none;
}
.dropdown-menu a:hover {
  background: var(--color-bg-alt);
}
.dropdown-menu .dd-num {
  font-family: "Fraunces", serif;
  color: var(--color-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.dropdown-menu .dd-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  display: block;
  margin-bottom: 2px;
}
.dropdown-menu .dd-sub {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-dark);
}
.btn-accent:hover {
  background: var(--color-dark);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--color-dark);
  color: var(--color-dark);
}
.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-accent);
}
.btn-ghost {
  color: var(--color-dark);
  padding: 14px 20px;
}
.btn-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  display: grid;
  place-items: center;
  color: inherit;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn-arrow {
  transform: translateX(4px) rotate(-45deg);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-dark);
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: all 0.3s var(--ease);
}
.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 5px));
}
.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 5px));
}
.menu-toggle.open span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ----------- HERO ----------- */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(15, 62, 42, 0.08);
  color: var(--color-primary);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero h1 .italic {
  font-style: italic;
  color: var(--color-primary);
}
.hero h1 .accent-bg {
  background: var(--color-accent);
  padding: 0 14px;
  border-radius: 14px;
  display: inline-block;
}
.hero-desc {
  margin-top: 32px;
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.6;
}
.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-primary);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  right: -30px;
  top: 40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-accent);
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  color: var(--color-dark);
  animation: spin-slow 22s linear infinite;
  box-shadow: var(--shadow-lift);
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.marquee {
  margin-top: 60px;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--color-dark);
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: "✦";
  color: var(--color-primary);
  font-size: 1.2rem;
  font-style: normal;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ----------- SECTION BASE ----------- */
section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head.centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}
.section-head p {
  font-size: 1.1rem;
  max-width: 480px;
}
.section-head.centered p {
  margin: 0 auto;
}

/* ----------- SERVICES ----------- */
.services {
  background: var(--color-dark);
  color: var(--color-bg);
  border-radius: var(--radius-xl);
  margin: 0 20px;
}
.services h2,
.services .section-head p {
  color: var(--color-bg);
}
.services .eyebrow {
  background: rgba(193, 255, 114, 0.12);
  color: var(--color-accent);
}
.services .eyebrow-dot {
  background: var(--color-accent);
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 2fr 3fr auto;
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.service-row:hover {
  padding-left: 20px;
}
.service-row:hover .service-title {
  color: var(--color-accent);
}
.service-num {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: var(--color-accent);
  opacity: 0.6;
}
.service-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  transition: color 0.3s var(--ease);
  color: var(--color-bg);
}
.service-desc {
  font-size: 0.98rem;
  opacity: 0.65;
  color: var(--color-bg);
}
.service-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
  color: var(--color-bg);
}
.service-row:hover .service-arrow {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  transform: rotate(-45deg);
}

/* ----------- STATS ----------- */
.stats {
  padding: 100px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  padding: 40px 32px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.stat:hover {
  transform: translateY(-6px);
}
.stat:nth-child(2) {
  background: var(--color-accent);
}
.stat:nth-child(3) {
  background: var(--color-primary);
  color: var(--color-bg);
}
.stat:nth-child(3) .stat-label {
  color: rgba(255, 255, 255, 0.7);
}
.stat-number {
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 400;
}
.stat-label {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
}

/* ----------- WORK / CASE GRID ----------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.case-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* cursor: pointer; */
}
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.case-card:hover img {
  transform: scale(1.06);
}
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(11, 20, 16, 0.85) 100%
  );
}
.case-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px;
  color: var(--color-bg);
  z-index: 2;
}
.case-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.case-tags span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}
.case-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  color: var(--color-bg);
}
.case-result {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.8;
  color: #fff;
}

/* ----------- PROCESS ----------- */
.process {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  margin: 0 20px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  padding: 36px 28px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.4s var(--ease);
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.process-num {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.process-step h4 {
  margin-bottom: 12px;
  font-family: "Fraunces", serif;
  font-weight: 500;
}
.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----------- TESTIMONIALS ----------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
}
.testimonial:nth-child(2) {
  background: var(--color-primary);
  color: var(--color-bg);
}
.testimonial:nth-child(2) .t-quote,
.testimonial:nth-child(2) .t-name {
  color: var(--color-bg);
}
.testimonial:nth-child(2) .t-role {
  color: rgba(255, 255, 255, 0.7);
}
.t-stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.testimonial:nth-child(2) .t-stars {
  color: var(--color-accent);
}
.t-quote {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--color-dark);
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg);
  overflow: hidden;
}
.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}
.t-role {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ----------- CTA ----------- */
.cta {
  padding: 140px 0;
  text-align: center;
}
.cta-inner {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  color: var(--color-bg);
}
.cta-inner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--color-primary-light);
  top: -200px;
  right: -200px;
  opacity: 0.4;
}
.cta-inner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-accent);
  bottom: -150px;
  left: -100px;
  opacity: 0.15;
}
.cta h2 {
  color: var(--color-bg);
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}
.cta h2 .italic {
  font-style: italic;
  color: var(--color-accent);
}
.cta-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ----------- FOOTER ----------- */
.footer {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 100px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
  color: var(--color-bg);
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 340px;
}
.footer h5 {
  color: var(--color-bg);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.footer ul a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.social {
  display: flex;
  gap: 12px;
}
.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--color-bg);
  transition: all 0.3s var(--ease);
}
.social a:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  transform: translateY(-3px);
}

/* ----------- PAGE HEADER ----------- */
.page-header {
  padding: 180px 0 80px;
  position: relative;
}
.page-header-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-header h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}
.page-header h1 .italic {
  font-style: italic;
  color: var(--color-primary);
}
.crumb {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 30px;
}
.crumb a {
  color: var(--color-dark);
  font-weight: 500;
}
.crumb span {
  margin: 0 8px;
}

/* ----------- ABOUT ----------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-intro-img img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value {
  padding: 40px 32px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  transition: all 0.4s var(--ease);
}
.value:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lift);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.value h4 {
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: left;
}
.team-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--color-bg-alt);
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-img img {
  transform: scale(1.05);
}
.team-card h4 {
  font-family: "Fraunces", serif;
  margin-bottom: 4px;
}
.team-card .role {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-line);
}
.timeline-item {
  position: relative;
  padding: 24px 0 40px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 32px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-bg);
}
.timeline-item .year {
  font-family: "Fraunces", serif;
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.timeline-item h4 {
  font-family: "Fraunces", serif;
  margin-bottom: 10px;
}

/* ----------- SERVICES PAGE ----------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid var(--color-line);
}
.service-detail:nth-child(even) .sd-text {
  order: 2;
}
.service-detail .sd-visual {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-primary);
}
.service-detail .sd-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-text .num {
  font-family: "Fraunces", serif;
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.sd-text h2 {
  margin-bottom: 24px;
}
.sd-text ul {
  list-style: none;
  margin-top: 28px;
}
.sd-text ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.sd-text ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ----------- CASE STUDIES LIST ----------- */
.case-list {
  display: grid;
  gap: 32px;
}
.case-list .case-card {
  aspect-ratio: 16/9;
}
.case-list-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-chip {
  padding: 10px 22px;
  border: 1px solid var(--color-line);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: transparent;
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-primary);
}

/* ----------- BLOG ----------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-8px);
}
.blog-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.blog-meta span:first-child {
  color: var(--color-primary);
  font-weight: 600;
}
.blog-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}
.blog-card:hover h3 {
  color: var(--color-primary);
}
.blog-card p {
  font-size: 0.95rem;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
  padding: 40px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}
.blog-featured .blog-img {
  margin-bottom: 0;
  aspect-ratio: 4/3;
}
.blog-featured h2 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  margin: 20px 0;
  line-height: 1.2;
}

/* ----------- CONTACT ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 24px;
}
.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.contact-card {
  padding: 24px 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}
.contact-card:hover h5,
.contact-card:hover span {
  color: var(--color-bg);
}
.contact-card:hover .c-icon {
  background: var(--color-accent);
  color: var(--color-dark);
}
.c-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all 0.3s var(--ease);
}
.contact-card h5 {
  font-family: "Inter", sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--color-dark);
}
.contact-card span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.contact-form {
  padding: 48px;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  color: var(--color-bg);
}
.contact-form h3 {
  color: var(--color-bg);
  font-family: "Fraunces", serif;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--color-bg);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
.contact-form .btn.btn-accent:hover {
  background-color: #c1ff7233;
}
.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-dark);
}
.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease),
    padding 0.3s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}
.faq-a p {
  max-width: 100%;
}

/* =========================================
   HERO V2 — Creative composition
   ========================================= */
.hero-v2 {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-v2 .container {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-blob-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  animation: blobFloat 14s ease-in-out infinite;
}
.hero-blob-2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(
    circle,
    var(--color-primary-light) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -140px;
  opacity: 0.35;
  animation: blobFloat 18s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -40px) scale(1.08);
  }
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-grid-lines span {
  border-left: 1px solid rgba(11, 20, 16, 0.04);
}
.hero-grid-lines span:last-child {
  border-right: 1px solid rgba(11, 20, 16, 0.04);
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: 10px 18px;
  border: 1px solid var(--color-line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 5;
  white-space: nowrap;
}
.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27c070;
  box-shadow: 0 0 0 4px rgba(39, 192, 112, 0.2);
  animation: pulse 2s infinite;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-v2-head h1 {
  font-size: clamp(3rem, 8.2vw, 7.5rem);
  line-height: 1.1em;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.hero-v2-head .hero-highlight {
  background: var(--color-accent);
  padding: 0 18px;
  border-radius: 16px;
  display: inline-block;
  transform: rotate(-1.5deg);
  margin: 0 4px;
  box-shadow: 0 10px 30px -10px rgba(193, 255, 114, 0.6);
}
.hero-v2-head .italic {
  font-style: italic;
  color: var(--color-primary);
}

.hero-v2-card {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 550px;
  margin-left: auto;
  width: 100%;
  margin-right: -10%;
}
.hero-card-shape {
  position: absolute;
  inset: 0;
  border-radius: 48% 52% 56% 44% / 48% 42% 58% 52%;
  overflow: hidden;
  background: var(--color-primary);
  box-shadow: var(--shadow-lift);
  animation: morphShape 4s ease-in-out infinite;
}
.hero-card-shape img {
  width: 100%;
  height: 110%;
  object-fit: cover;
}
@keyframes morphShape {
  0%,
  100% {
    border-radius: 48% 52% 56% 44% / 48% 42% 58% 52%;
  }
  33% {
    border-radius: 52% 48% 40% 60% / 56% 60% 40% 44%;
  }
  66% {
    border-radius: 44% 56% 60% 40% / 42% 52% 48% 58%;
  }
}

.hero-badge-spin {
  position: absolute;
  right: -40px;
  top: 30px;
  width: 140px;
  height: 140px;
  z-index: 3;
}
.hero-badge-spin svg {
  width: 100%;
  height: 100%;
  animation: spin-slow 22s linear infinite;
}
.hero-badge-spin svg text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  fill: var(--color-dark);
}
.hero-badge-spin .badge-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 20px -6px rgba(193, 255, 114, 0.8);
}

.hero-chip {
  position: absolute;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.hero-chip .chip-num {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1;
}
.hero-chip .chip-lbl {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 500;
}
.hero-chip-1 {
  left: -60px;
  top: 40%;
  opacity: 1 !important;
  animation: floatY 5s ease-in-out infinite;
}
.hero-chip-2 {
  right: -20px;
  bottom: 40px;
  opacity: 1 !important;
  animation: floatY 6s ease-in-out infinite 1.5s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-v2-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--color-line);
}
.hero-v2-bottom .hero-desc {
  margin: 0;
  font-size: 1.05rem;
  max-width: 520px;
}
.hero-v2-bottom .hero-cta {
  margin: 0;
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.hero-scroll .scroll-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.hero-scroll .scroll-line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

@media (max-width: 1100px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-v2-card {
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-v2-bottom {
    flex-direction: column;
    gap: 24px;
  }
  .hero-chip-1 {
    left: -20px;
  }
  .hero-chip-2 {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .hero-v2 {
    padding: 140px 0 60px;
  }
  .cta {
    padding: 80px 0;
  }
  .hero-v2-head h1 {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
  }
  .hero-v2-head .hero-highlight {
    padding: 0 10px;
    border-radius: 10px;
  }
  .hero-badge-spin {
    width: 100px;
    height: 100px;
    right: 0;
    top: 10px;
  }
  .hero-badge-spin .badge-core {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .hero-chip {
    padding: 12px 16px;
  }
  .hero-chip .chip-num {
    font-size: 1.25rem;
  }
  .hero-chip-1 {
    left: 0;
    top: 30%;
  }
  .hero-chip-2 {
    right: 0;
    bottom: 20px;
  }
  .hero-scroll {
    display: none;
  }
}

/* ----------- SERVICE PAGE SPECIFIC ----------- */
.service-hero {
  padding: 170px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.service-hero .container {
  position: relative;
  z-index: 1;
}
.service-hero .crumb {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.service-hero-centered {
  margin: 0 auto;
  text-align: center;
}
.service-hero-centered .num-tag {
  display: inline-block;
}
.service-hero-centered h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: 1.02;
}
.service-hero-centered .hero-desc {
  margin: 28px auto 0;
  max-width: 640px;
  font-size: 1.1rem;
}
.service-hero-centered .hero-cta {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.service-hero .num-tag {
  font-family: "Fraunces", serif;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(15, 62, 42, 0.08);
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.service-hero .visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-primary);
}
.service-hero .visual img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-hero {
    padding: 140px 0 60px;
  }
  .service-hero-centered h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }
  .service-hero-centered .hero-desc {
    font-size: 1rem;
  }
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deliverable {
  padding: 36px 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}
.deliverable:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  background: var(--color-bg);
  box-shadow: var(--shadow-lift);
}
.deliverable .d-num {
  font-family: "Fraunces", serif;
  color: var(--color-primary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.deliverable h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  margin-bottom: 10px;
}
.deliverable p {
  font-size: 0.95rem;
}

.tools-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 40px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}
.tool {
  text-align: center;
  padding: 20px 12px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kpi {
  padding: 40px 32px;
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.kpi:nth-child(2) {
  background: var(--color-accent);
  color: var(--color-dark);
}
.kpi:nth-child(3) {
  background: var(--color-dark);
}
.kpi .kpi-num {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 400;
}
.kpi .kpi-label {
  font-size: 0.95rem;
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .deliverables,
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tools-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .service-hero {
    padding: 150px 0 60px;
  }
  .deliverables,
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .tools-strip {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }
}

/* ----------- REVEAL HELPERS ----------- */
.reveal {
  opacity: 0;
}
.split-line {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  line-height: inherit;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.split-line > * {
  display: inline-block;
  will-change: transform;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero {
    padding: 150px 0 80px;
  }
  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid,
  .blog-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  .container {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-links .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    padding: 8px;
    margin-top: 10px;
    display: none;
  }
  .has-dropdown.open .dropdown-menu {
    display: block;
  }
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .nav-cta {
    display: none;
  }
  .hero-visual {
    aspect-ratio: 4/4;
  }
  .hero-badge {
    width: 110px;
    height: 110px;
    right: 10px;
    top: 10px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
  .work-grid,
  .about-intro,
  .service-detail,
  .contact-grid,
  .page-header-inner,
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail .sd-text {
    order: 1 !important;
  }
  .service-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 24px 0;
  }
  .service-num,
  .service-desc {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat {
    padding: 28px 20px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .services {
    margin: 0 10px;
    border-radius: var(--radius-lg);
  }
  .process {
    margin: 0 10px;
    border-radius: var(--radius-lg);
  }
  .cta-inner {
    padding: 70px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 32px 24px;
  }
}
