/* =============================================
   Enton Innovation — Design Tokens
   ============================================= */
:root {
  --color-ink: #1a1c1c;
  --color-taupe: #635e52;
  --color-body: #4a463f;
  --color-muted-text: #636262;
  --color-cream: #f5edde;
  --color-tag-bg: #e5d8c0;
  --color-footer-bg: #f4f4f4;
  --color-border: #ccc6bb;
  --color-white: #ffffff;
  --color-black: #000000;

  --font-heading: "Hanken Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-label: "Geist", sans-serif;

  --max-width: 1280px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --shadow-card: 0 16px 32px rgba(12, 12, 13, 0.1), 0 4px 4px rgba(12, 12, 13, 0.05);
  --shadow-media: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --nav-height: 80px;
}

/* =============================================
   Reset
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1 0 auto;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

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

.text-muted { color: var(--color-taupe); font-weight: 400; }

/* =============================================
   Buttons
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-body);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--pill { border-radius: var(--radius-pill); }
.btn--primary {
  background: var(--color-cream);
  color: var(--color-black);
  border-color: var(--color-ink);
}
.btn--primary:hover { background: var(--color-tag-bg); }
.btn--ghost {
  background: transparent;
  color: var(--color-black);
  border-color: rgba(26, 28, 28, 0.3);
}
.btn--ghost:hover { background: rgba(26, 28, 28, 0.05); }
.btn__icon { width: 9px; height: 9px; }
 
/* =============================================
   Navbar
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-tag-bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.navbar__inner {
  max-width: var(--max-width);
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar__logo { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.navbar__brand-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -1px;
  color: var(--color-ink);
}
.navbar__links { display: flex; align-items: center; gap: 32px; }
.navbar__link {
  text-decoration: none !important;
  font-size: 16px;
  color: var(--color-body);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.navbar__link:hover { color: var(--color-taupe); }
.navbar__link--active { color: var(--color-taupe); border-bottom-color: var(--color-taupe); }
.navbar__cta { padding: 10px 24px; font-size: 16px; flex-shrink: 0; }
 
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.navbar__toggle:active { background: rgba(26, 28, 28, 0.08); }
.navbar__toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  background: var(--color-cream);
  overflow: hidden;
  padding: 85px 0;
}
.hero__shape {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
}
.hero__shape--one {
  left: 64px;
  top: 80px;
  width: 400px;
  height: 400px;
  border-radius: 160px 320px 260px 340px;
  background: linear-gradient(45deg, #1a1c1c 0%, rgba(26, 28, 28, 0) 100%);
}
.hero__shape--two {
  right: 128px;
  top: -180px;
  width: 300px;
  height: 300px;
  border-radius: 180px 60px 105px 195px;
  background: linear-gradient(135deg, #635e52 0%, rgba(99, 94, 82, 0) 100%);
}
.hero__container { position: relative; }
.hero__grid {
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 576px;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--color-ink);
}
.hero__desc {
  font-size: 18px;
  line-height: 28px;
}
.hero__actions { display: flex; gap: 16px; padding-top: 16px; flex-wrap: wrap; }
.hero__media { flex: 1; display: flex; justify-content: center; align-items: center; }
.hero__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 14px 30px rgba(26, 28, 28, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.hero__image:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 20px 38px rgba(26, 28, 28, 0.16));
}

/* =============================================
   Section titles (shared)
   ============================================= */
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--color-ink);
  background: none !important;
  -webkit-text-fill-color: initial !important;
}
.section-title--center { text-align: center; }
.section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-body);
  margin-top: 16px;
  font-weight: 400;
}
.section-desc--center { text-align: center; font-size: 16px; }

/* =============================================
   About
   ============================================= */
.about {
  padding: 60px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about__grid {
  display: flex;
  align-items: center;
  gap: 56px;
}
.about__copy {
  flex: 1;
  max-width: 580px;
}
.about__copy .section-title {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.about__copy .section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-body, #4a463f);
  margin-top: 14px;
}
.about__copy .tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 0;
}
.tag {
  background: var(--color-tag-bg);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-black);
}
.about__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__media img {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.10));
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  margin: 0 auto;
}
.about__media img:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.15));
}

/* =============================================
   Services
   ============================================= */
.services { padding: 55px 0; }
.services__heading { max-width: 672px; margin: 0 auto; text-align: center; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid var(--color-black);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.service-card__icon--tint { background: var(--color-cream); }
.service-card__icon img { width: 50%; height: 50%; object-fit: contain; }
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.3px;
  color: var(--color-ink);
}
.service-card__desc { font-size: 16px; line-height: 24px; }

.services__banner {
  margin-top: 50px;
  height: auto;
  max-height: 450px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: none;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__banner img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.10));
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  margin: 0 auto;
}
.services__banner img:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.15));
}
 
/* =============================================
   Why choose us
   ============================================= */
.why-us {
  background: var(--color-cream);
  border-top: 1px solid rgba(204, 198, 187, 0.2);
  padding: 71px 0 70px;
}
.why-us__grid { display: flex; align-items: center; gap: 64px; }
.why-us__copy { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 24px; padding-top: 24px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--color-white);
  border: 1px solid rgba(26, 28, 28, 0.3);
  border-radius: var(--radius-md);
  padding: 25px;
}
.feature-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item__icon img { width: 50%; height: 50%; object-fit: contain; }
.feature-item__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-ink);
}
.feature-item__desc { font-size: 16px; margin-top: 8px; }
.why-us__media {
  flex: 1;
  height: auto;
  max-height: 600px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: none;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us__media img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.10));
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  margin: 0 auto;
}
.why-us__media img:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.15));
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--color-footer-bg, #f4f4f4);
  border-top: 1px solid var(--color-border, #ccc6bb);
  padding: 42px 0 50px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: flex-start;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.6px;
  color: var(--color-taupe, #635e52);
  text-transform: uppercase;
}
.footer__tagline {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 22px;
  margin-top: 16px;
  color: var(--color-muted-text, #636262);
}
.footer__copyright {
  font-family: var(--font-body);
  font-size: 15px;
  margin-top: 24px;
  color: var(--color-ink, #1a1c1c);
}
.footer__heading {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-ink, #1a1c1c);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.footer__list li,
.footer__list a {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 22px;
  color: var(--color-muted-text, #636262);
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer__list a:hover {
  color: var(--color-ink, #1a1c1c);
}
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(204, 198, 187, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink, #1a1c1c);
  background: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer__social-link:hover {
  border-color: var(--color-ink, #1a1c1c);
  background: rgba(26, 28, 28, 0.04);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* =============================================
   About page — Hero
   ============================================= */
.about-hero {
  background: var(--color-cream);
  padding: 75px 0 45px;
  text-align: center;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--color-ink);
  max-width: 900px;
  margin: 0 auto;
}
.about-hero__desc {
  font-size: 18px;
  line-height: 28px;
  max-width: 670px;
  margin: 24px auto 0;
}

/* =============================================
   About page — Mission card
   ============================================= */
.mission-wrap { margin-top: -40px; padding-bottom: 60px; }
.mission-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.3);
  padding: 64px 48px;
}
.mission-card__icon { font-size: 30px; margin-bottom: 24px; }
.mission-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--color-ink);
  max-width: 700px;
}
.mission-card__desc {
  font-size: 18px;
  line-height: 28px;
  max-width: 672px;
  margin-top: 24px;
}

/* =============================================
   About page — Core Pillars
   ============================================= */
.pillars { background: var(--color-cream); padding: 60px 0; }
.pillars__heading { max-width: 500px; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 20px rgba(26, 26, 26, 0.04);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.pillar-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.3px;
  color: var(--color-ink);
}
.pillar-card__desc { font-size: 15px; line-height: 22px; }

/* =============================================
   About page — Our Story
   ============================================= */
.story { padding: 60px 0; }
.story__grid { display: flex; align-items: center; gap: 64px; }
.story__copy { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; max-width: 480px; }
.badge {
  background: #e2e2e2;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 17px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--color-ink);
}
.story__paragraph { font-size: 16px; line-height: 24px; }
.btn--outline {
  border-color: var(--color-ink);
  background: transparent;
  color: var(--color-ink);
  margin-top: 8px;
}
.btn--outline:hover { background: rgba(26, 28, 28, 0.05); }
.story__media {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: none;
  border: none;
  height: auto;
  max-height: 504px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__media img {
  width: 100%;
  height: auto;
  max-height: 504px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.10));
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  margin: 0 auto;
}
.story__media img:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.15));
}

/* =============================================
   Services page — Header
   ============================================= */
.services-header { padding: 130px 0 60px; }
.services-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.services-header__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -2px;
  color: var(--color-ink);
}
.services-header__desc { font-size: 18px; margin-top: 12px; }
.btn--dark {
  background: var(--color-ink);
  color: var(--color-white);
  border-color: var(--color-ink);
}
.btn--dark:hover { background: #000; }

/* =============================================
   Services page — Capability cards
   ============================================= */
.capabilities { padding-bottom: 60px; }
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cap-card {
  background: var(--color-white);
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 20px rgba(26, 26, 26, 0.04);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cap-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-black);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 8px;
}
.cap-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-ink);
}
.cap-card__title--lg { font-size: 28px; }
.cap-card__desc { font-size: 15px; line-height: 22px; flex: 1; }
.cap-card__link {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-body);
  margin-top: 8px;
  transition: color 0.2s ease;
}
.cap-card__link:hover { color: var(--color-ink); }

.cap-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cap-card--wide__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-black);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cap-card--wide__body { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.cap-card--wide__glyph {
  font-size: 48px;
  color: var(--color-border);
  font-family: monospace;
  opacity: 0.4;
  flex-shrink: 0;
}

/* =============================================
   Services page — Why choose us
   ============================================= */
.why-choose { padding: 60px 0; }
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 20px rgba(26, 26, 26, 0.04);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-black);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.why-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-ink);
  margin-top: 8px;
}
.why-card__desc { font-size: 16px; line-height: 24px; }
 
/* =============================================
   Services page — CTA banner
   ============================================= */
.cta-wrap { padding-bottom: 130px; }
.cta-banner {
  background: var(--color-white);
  border: 1px solid var(--color-tag-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 20px rgba(26, 26, 26, 0.04);
  padding: 65px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.8px;
  color: var(--color-ink);
  max-width: 672px;
}
.cta-banner__desc { font-size: 18px; max-width: 576px; margin-bottom: 8px; }
 
/* =============================================
   Service Detail Pages — shared components
   ============================================= */
.sd-main { padding-top: 80px; }
.sd-section { padding: 60px 0; }
.sd-section--tight { padding: 64px 0; }
.sd-section--cream { background: var(--color-cream); }
.sd-section--dark { background: #2f3131; color: #fff; }
 
.sd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-tag-bg);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 16px;
}
 
.sd-hero { display: flex; align-items: center; gap: 48px; }
.sd-hero--center { flex-direction: column; text-align: center; max-width: 896px; margin: 0 auto; }
.sd-hero__copy { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.sd-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--color-ink);
}
.sd-hero--dark-word { color: var(--color-taupe); font-weight: 400; }
.sd-hero__desc { font-size: 20px; line-height: 32px; max-width: 600px; color: var(--color-body); }
.sd-hero--center .sd-hero__desc { max-width: 672px; margin: 0 auto; }
.sd-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 8px; }
.sd-hero--center .sd-hero__actions { justify-content: center; }
.sd-hero__media {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: none;
  border: none;
  height: auto;
  max-height: 480px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-hero__media img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.10));
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  margin: 0 auto;
}
.sd-hero__media img:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.15));
}
 
.btn--dark-sm { padding: 16px 32px; font-family: var(--font-label); font-weight: 600; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; }
.btn--outline-dark { border-color: var(--color-ink); color: var(--color-ink); background: transparent; }
.btn--outline-dark:hover { background: rgba(26,28,28,0.05); }
 
.sd-heading-block { max-width: 768px; margin: 0 auto; text-align: center; }
.sd-heading-block .section-title { text-align: center; }
.sd-heading-block .section-desc { text-align: center; }
 
/* Two intro/feature cards side by side */
.sd-intro-grid { display: flex; gap: 32px; align-items: stretch; }
.sd-intro-card {
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--color-tag-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 20px rgba(26,26,26,0.04);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sd-intro-card__icon { font-size: 24px; }
.sd-intro-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-ink);
}
.sd-intro-card__desc { font-size: 16px; line-height: 24px; }
 
/* Bento grid (reuses cap-card look) */
.sd-bento { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.sd-bento-card {
  background: var(--color-white);
  border: 1px solid var(--color-tag-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 20px rgba(26,26,26,0.04);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sd-bento-card--span2 { grid-column: span 2; }
.sd-bento-card__icon { font-size: 24px; margin-bottom: 8px; }
.sd-bento-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 26px;
  color: var(--color-ink);
}
.sd-bento-card__desc { font-size: 15px; line-height: 22px; }
.sd-bento-card__tags { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 8px; }
.sd-bento-card--dark { background: #2f3131; color: #fff; border-color: #2f3131; }
.sd-bento-card--dark h1, .sd-bento-card--dark h2, .sd-bento-card--dark h3, .sd-bento-card--dark h4, .sd-bento-card--dark .sd-bento-card__title { color: #ffffff !important; }
.sd-bento-card--dark .sd-bento-card__desc { color: rgba(243,243,244,0.8); }
.sd-bento-card--glass { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); }
 
/* Numbered process (horizontal, SaaS-style) */
.sd-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 32px; }
.sd-steps--3col { grid-template-columns: repeat(3, minmax(0,1fr)); }
.sd-step__num { font-family: var(--font-heading); font-weight: 700; font-size: 48px; color: rgba(204,198,187,0.4); line-height: 1; }
.sd-step__title { font-size: 18px; color: var(--color-ink); margin-top: 8px; }
.sd-step__desc { font-size: 14px; line-height: 20px; margin-top: 4px; }
.sd-steps-divider { border: none; border-top: 1px solid var(--color-border); margin-bottom: 16px; }
 
/* Vertical timeline (Branding-style) */
.sd-timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--color-tag-bg); display: flex; flex-direction: column; gap: 32px; }
.sd-timeline li { position: relative; padding-left: 32px; }
.sd-timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-taupe);
  border: 3px solid var(--color-white);
}
.sd-timeline-title { font-size: 18px; color: var(--color-ink); }
.sd-timeline-desc { font-size: 15px; margin-top: 2px; }
 
/* Split section: text + media */
.sd-split { display: flex; align-items: center; gap: 64px; }
.sd-split__copy { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.sd-split__media {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: none;
  box-shadow: none;
  height: auto;
  max-height: 420px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-split__media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.10));
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  margin: 0 auto;
}
.sd-split__media img:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.15));
}
.sd-split__list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.sd-split__list-item { display: flex; gap: 16px; align-items: flex-start; }
.sd-split__list-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.sd-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: #f9f9f9; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 24px 33px; margin-top: 8px; }
.sd-checklist__item { font-size: 16px; display: flex; align-items: center; gap: 8px; }
.sd-checklist__item::before { content: "✓"; color: var(--color-taupe); font-weight: 700; }
 
/* FAQ accordion */
.sd-faq { display: flex; flex-direction: column; gap: 16px; }
.sd-faq-item { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 25px; }
.sd-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: var(--color-ink);
}
.sd-faq-item summary::-webkit-details-marker { display: none; }
.sd-faq-item summary::after { content: "+"; font-size: 20px; color: var(--color-taupe); transition: transform 0.2s ease; }
.sd-faq-item[open] summary::after { transform: rotate(45deg); }
.sd-faq-item p { font-size: 16px; line-height: 24px; margin-top: 12px; }
 
/* CTA sections */
.sd-cta {
  background: var(--color-white);
  border: 1px solid var(--color-tag-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(26,26,26,0.04);
  padding: 80px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.sd-cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--color-ink);
  max-width: 800px;
}
.sd-cta__desc { font-size: 18px; max-width: 576px; }
.sd-cta--dark { background: #2f3131; }
.sd-cta--dark .sd-cta__title { color: #fff; }
.sd-cta--dark .sd-cta__desc { color: #ccc6bb; }
.sd-cta--split { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; background: var(--color-cream); padding: 48px; }
.sd-cta--split .sd-cta__title { font-size: 32px; max-width: 320px; }
 
/* Responsive */
@media (max-width: 1024px) {
  .sd-bento { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sd-bento-card--span2 { grid-column: span 2; }
  .sd-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sd-hero { flex-direction: column; }
  .sd-split { flex-direction: column; }
  .sd-intro-grid { flex-direction: column; }
  .sd-cta--split { flex-direction: column; text-align: center; gap: 24px; }
  .sd-cta--split .sd-cta__title { max-width: 100%; }
}
@media (max-width: 640px) {
  .sd-hero__title { font-size: 36px; }
  .sd-bento { grid-template-columns: 1fr; }
  .sd-bento-card--span2 { grid-column: span 1; }
  .sd-steps { grid-template-columns: 1fr; }
  .sd-cta__title { font-size: 30px; }
  .sd-checklist { grid-template-columns: 1fr; }
}
 
/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .hero__title { font-size: 44px; }
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-hero__title { font-size: 44px; }
  .pillars__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story__grid { flex-direction: column; }
  .story__copy { max-width: 100%; }
  .story__media { width: 100%; }
  .capabilities__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-choose__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cap-card--wide { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; }
}
 
@media (max-width: 900px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar.is-open .navbar__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 24px 32px;
    border-bottom: 1px solid var(--color-tag-bg);
  }
  .navbar.is-open .navbar__cta {
    display: inline-flex;
    position: absolute;
    top: calc(var(--nav-height) + 220px);
    left: 32px;
  }
  .hero__grid, .about__grid, .why-us__grid { flex-direction: column; }
  .hero__copy, .about__copy, .why-us__copy { max-width: 100%; }
  .hero__media, .about__media, .why-us__media { width: 100%; }
}
 
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 55px 0; }
  .hero__title { font-size: 34px; letter-spacing: -1px; }
  .section-title { font-size: 28px; line-height: 1.25; }
  .section-desc { font-size: 15px; line-height: 1.6; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .feature-item { flex-direction: column; align-items: flex-start; }
  .about-hero__title { font-size: 32px; letter-spacing: -1px; }
  .mission-card { padding: 36px 24px; }
  .mission-card__title { font-size: 26px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .capabilities__grid { grid-template-columns: 1fr; }
  .why-choose__grid { grid-template-columns: 1fr; }
  .services-header__title { font-size: 36px; }
  .services-header__inner { align-items: flex-start; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner__title { font-size: 28px; }
}
 

/* =============================================
   PREMIUM DESIGN UPGRADES
   ============================================= */

/* 1. Glassmorphism & Depth */
.navbar {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
}

.sd-cta--dark {
  background: linear-gradient(135deg, #1a1c1c 0%, #2a2d2d 100%) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
  border: 1px solid rgba(255,255,255,0.05);
}

/* 2. Micro-Animations & Hover States */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card, .sd-bento-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform, box-shadow;
}

.service-card:hover, .sd-bento-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.03) !important;
}

.navbar__link {
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-taupe);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.navbar__link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* 3. Media Polish */
img {
  transition: transform 0.5s ease;
}
.hero__media img:hover, .sd-split__media img:hover, .about__media img:hover {
  transform: scale(1.02);
}

.service-card__icon svg, .footer__social-link svg {
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__icon svg, .footer__social-link:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

/* Typography Enhancements */
h1, h2, h3 {
  background: linear-gradient(to right, var(--color-ink), #4a463f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sd-cta--dark h2 {
  background: none;
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
}


/* =============================================
   Contact Page Styles
   ============================================= */
.contact {
  background: var(--color-cream, #f5edde);
  padding: 55px 0 70px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-hero__title {
  font-family: var(--font-heading, "Hanken Grotesk", sans-serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -2px;
  color: var(--color-ink, #1c1d1d);
  margin-bottom: 12px;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.contact-hero__subtitle {
  font-size: 26px;
  font-weight: 600;
  color: #4a4843;
  line-height: 1.3;
  margin-bottom: 20px;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.contact-hero__desc {
  font-size: 16px;
  line-height: 1.55;
  color: #4e4b46;
  max-width: 610px;
  margin-bottom: 40px;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #ded9d0;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

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

.form-group--full {
  grid-column: 1 / -1;
  margin-bottom: 28px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4d4b46;
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #8e919b;
  background: transparent;
  padding: 8px 0;
  font-size: 15px;
  font-family: inherit;
  color: #1d1e1e;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: #1d1e1e;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a09d96;
}

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

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #252626;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-form__submit:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-form__status {
  margin-top: 16px;
  font-size: 14px;
  color: #4e4b46;
}

/* Contact Info Right Column */
.contact__right {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5dfd5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: #252626;
}

.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  color: #6e6b63;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 20px;
  font-weight: 700;
  color: #1c1d1d;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info__value:hover {
  color: #000000;
}

.contact-info__value--muted {
  font-size: 16px;
  font-weight: 500;
  color: #4a4843;
}

.contact-divider {
  border: none;
  border-top: 1px solid #ded9d0;
  margin: 40px 0 32px;
}

.contact-connect__label {
  font-size: 12px;
  font-weight: 600;
  color: #6e6b63;
  margin-bottom: 16px;
}

.contact-connect__links {
  display: flex;
  gap: 14px;
}

.contact-connect__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d4cecf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1d1d;
  transition: all 0.25s ease;
}

.contact-connect__link:hover {
  background: #ffffff;
  border-color: #1c1d1d;
  transform: translateY(-2px);
}

.contact-connect__link svg {
  width: 20px;
  height: 20px;
  stroke: #1c1d1d;
}

@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form-card {
    padding: 24px;
  }
}

/* =============================================
   AI Automation Page Custom Redesign Styles
   ============================================= */
.ai-intro-section {
  padding: 80px 0;
  background: var(--color-cream);
}

.ai-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.ai-intro-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.ai-intro-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-body);
  max-width: 480px;
}

.ai-intro-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-intro-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-intro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ai-intro-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ebe8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-intro-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.ai-intro-card-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: #555555;
}

/* AI Bento Grid Section */
.ai-bento-section {
  padding: 80px 0;
  background: var(--color-cream);
}

.ai-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ai-bento-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}

.ai-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.ai-bento-card--span2 {
  grid-column: span 2;
}

.ai-card-top-icon {
  margin-bottom: 24px;
  color: var(--color-ink);
}

.ai-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.ai-bento-card--span2 .ai-card-title {
  font-size: 27px;
}

.ai-card-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #636262;
}

.ai-card-tags {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ai-tag {
  background: #f1edd8;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ai-bento-watermark {
  position: absolute;
  right: 28px;
  bottom: 20px;
  opacity: 0.12;
  color: var(--color-ink);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .ai-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ai-intro-title {
    font-size: 36px;
  }
  .ai-bento-grid {
    grid-template-columns: 1fr;
  }
  .ai-bento-card--span2 {
    grid-column: span 1;
  }
}



/* =============================================
   LAYOUT OVERHAUL & POLISH
   ============================================= */

/* Active Navbar Link Underscore / Location Marker */
.navbar__link {
  position: relative;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-body);
  padding: 6px 2px;
  border-bottom: 2px solid transparent !important;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.navbar__link:hover {
  color: var(--color-taupe) !important;
  border-bottom-color: rgba(142, 129, 114, 0.4) !important;
}

.navbar__link--active {
  color: var(--color-taupe) !important;
  font-weight: 700 !important;
  border-bottom: 2.5px solid var(--color-taupe) !important;
}

/* Ensure pseudo-element after does not duplicate or conflict */
.navbar__link::after {
  display: none !important;
}

/* Standardized Hero Section Padding */
.sd-hero-section {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.services-hero-section {
  padding-top: 60px !important;
  padding-bottom: 36px !important;
}

/* Standardized Banner Cards */
.sd-banner-card {
  background: var(--color-white);
  border: 1px solid var(--color-tag-bg);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(26,26,26,0.04);
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  width: 100%;
}

/* Responsive Bento Grids */
.sd-bento--4col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1150px) {
  .sd-bento--4col {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .sd-bento,
  .sd-bento--4col {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive Hero Sections */
@media (max-width: 900px) {
  .sd-hero {
    flex-direction: column !important;
    text-align: center;
    gap: 36px;
  }
  .sd-hero__copy {
    align-items: center;
    text-align: center;
  }
  .sd-hero__actions {
    justify-content: center;
  }
  .sd-hero__title {
    font-size: clamp(32px, 5vw, 44px) !important;
  }
  .sd-hero__media {
    width: 100%;
    max-height: 380px;
  }
  .sd-hero__media img {
    max-height: 360px;
  }
}

/* Smooth Fluid Typography */
.sd-hero__title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
}


/* ==========================================================================
   COMPREHENSIVE MULTI-DEVICE RESPONSIVE SYSTEM
   Supports: Phones (320px-640px), Tablets (641px-1024px),
             Laptops (1025px-1440px), Monitors & Ultrawide (1441px+)
   ========================================================================== */

/* Universal Box Sizing & Fluid Overflow Prevention */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   1. MONITOR & ULTRAWIDE DISPLAYS (min-width: 1441px)
   -------------------------------------------------------------------------- */
@media (min-width: 1441px) {
  .container {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero__title {
    font-size: 64px;
    line-height: 1.1;
  }
  .sd-hero__title {
    font-size: 60px;
    line-height: 1.1;
  }
}

/* --------------------------------------------------------------------------
   2. LAPTOP VIEW (1025px to 1440px)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero__title {
    font-size: 52px;
  }
  .sd-hero__title {
    font-size: 48px;
  }
  .navbar__links {
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
   3. TABLET LANDSCAPE & COMPACT LAPTOP (901px to 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 901px) and (max-width: 1024px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }
  .navbar__inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px;
  }
  .navbar__links {
    gap: 18px;
  }
  .navbar__link {
    font-size: 15px;
  }
  .navbar__cta {
    padding: 8px 18px;
    font-size: 14px;
  }
  .hero__grid, .sd-hero {
    gap: 32px;
  }
  .hero__title {
    font-size: 42px;
  }
  .sd-hero__title {
    font-size: 38px;
  }
  .services__grid, .pillars__grid, .capabilities__grid, .sd-bento, .sd-bento--4col {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

/* --------------------------------------------------------------------------
   4. TABLET PORTRAIT & MOBILE BREAKPOINT (max-width: 900px)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  :root {
    --nav-height: 70px;
  }

  /* Sticky Navigation & Mobile Menu */
  .navbar__links, .navbar__cta {
    display: none !important;
  }
  .navbar__toggle {
    display: flex !important;
  }

  .navbar.is-open {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  }

  .navbar.is-open .navbar__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .navbar.is-open .navbar__toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar.is-open .navbar__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navbar.is-open .navbar__links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 20px 24px 28px !important;
    border-bottom: 1px solid var(--color-tag-bg) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  }

  .navbar.is-open .navbar__link {
    font-size: 17px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    display: block !important;
  }

  .navbar.is-open .navbar__link--active {
    border-bottom: 2px solid var(--color-taupe) !important;
    color: var(--color-taupe) !important;
  }

  /* Prevent background scroll when nav is open */
  body.nav-locked {
    overflow: hidden !important;
  }

  /* Hero & Split Sections Column Stack */
  .hero__grid,
  .sd-hero,
  .about__grid,
  .story__grid,
  .why-us__grid,
  .contact__grid {
    flex-direction: column !important;
    text-align: center !important;
    gap: 40px !important;
  }

  .hero__copy,
  .sd-hero__copy,
  .about__copy,
  .story__copy,
  .why-us__copy,
  .contact__left {
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero__actions,
  .sd-hero__actions {
    justify-content: center !important;
    width: 100% !important;
  }

  .hero__media,
  .sd-hero__media,
  .about__media,
  .story__media,
  .why-us__media,
  .contact__right {
    width: 100% !important;
    max-width: 580px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero__media img,
  .sd-hero__media img,
  .about__media img,
  .story__media img {
    max-height: 380px !important;
    margin: 0 auto !important;
  }

  /* Grids */
  .services__grid,
  .pillars__grid,
  .capabilities__grid,
  .sd-bento,
  .sd-bento--4col {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  /* Split Banner Cards */
  .sd-banner-card,
  .sd-bento-card--dark {
    flex-direction: column !important;
    padding: 44px 36px !important;
    text-align: center !important;
    gap: 32px !important;
  }

  .sd-banner-card > div,
  .sd-bento-card--dark > div {
    max-width: 100% !important;
  }

  .sd-banner-card ul,
  .sd-bento-card--dark ul {
    text-align: left !important;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px !important;
  }
}

/* --------------------------------------------------------------------------
   5. SMARTPHONES & SMALL VIEWPORTS (max-width: 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  /* Container side padding */
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Navbar Brand Text scaling */
  .navbar__brand-text {
    font-size: 18px !important;
    letter-spacing: 0px !important;
  }
  .navbar__logo {
    width: 32px !important;
    height: 32px !important;
  }

  /* Hero Section Typography */
  .hero {
    padding-top: 36px !important;
    padding-bottom: 56px !important;
  }
  .hero__title {
    font-size: clamp(28px, 8.5vw, 38px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.8px !important;
  }
  .sd-hero__title,
  .about-hero__title {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.6px !important;
  }
  .section-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.2 !important;
  }
  .hero__desc,
  .sd-hero__desc,
  .section-desc {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  /* Full-width Touch-Friendly Buttons on Mobile */
  .hero__actions,
  .sd-hero__actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .btn {
    width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
  }

  /* Media Scaling */
  .hero__media img,
  .sd-hero__media img,
  .about__media img,
  .story__media img {
    max-height: 260px !important;
  }

  /* All Grids collapse to 1 column on phones */
  .services__grid,
  .pillars__grid,
  .capabilities__grid,
  .sd-bento,
  .sd-bento--4col {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .sd-bento-card--span2,
  .cap-card--wide {
    grid-column: span 1 !important;
  }

  /* Card paddings scaled for mobile screens */
  .service-card,
  .sd-bento-card,
  .cap-card,
  .pillar-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }
  .sd-bento-card--dark,
  .sd-banner-card {
    padding: 28px 18px !important;
    border-radius: 24px !important;
    gap: 24px !important;
  }

  /* Contained feature media inside boxes */
  .sd-bento-card--dark > div:nth-child(2),
  .sd-banner-card .sd-split__media {
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    border-radius: 18px !important;
  }

  /* Tag lists wrap cleanly */
  .tag-list {
    justify-content: center !important;
    gap: 8px !important;
  }
  .tag {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }

  /* Steps process cards */
  .sd-steps {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* FAQs */
  .sd-faq-item {
    padding: 18px 16px !important;
  }
  .sd-faq-item summary {
    font-size: 16px !important;
  }

  /* CTA Sections */
  .sd-cta, .cta-banner {
    padding: 44px 20px !important;
    border-radius: 24px !important;
  }
  .sd-cta__title {
    font-size: clamp(24px, 7vw, 32px) !important;
  }

  /* Footer on Mobile */
  .footer {
    padding: 48px 0 28px !important;
  }
  .footer__grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 32px !important;
  }
  .footer__social {
    justify-content: center !important;
  }
}
