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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hanken Grotesk", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

:root {
  --green: #005d65;
  --green-light: #8dcc9d;
  --orange: #ff470a;
  --orange-light: #ff914d;
  --orange-dark: #e03d07;
  --dark: #19191A;
  --dark-card: #1A1C23;
  --dark-card2: #FFF;
  --gray-bg: #F7F7F7;
  --gray-bg2: #FAFAFA;
  --text: #333;
  --body: #f5ffff;
  --white: #FFF;
  --bg-color: #F5F5F6;
}

.font-heading {
  font-family: "Hanken Grotesk", sans-serif;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 132px;
}

/* ── NAV ── */
#nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: padding 0.3s;
}

#nav-wrapper.scrolled {
  padding: 12px 16px 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  padding: 10px 132px;
  transition: all 0.3s;
}

nav.scrolled {
  border-radius: 50px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 4px 16px;
  max-width: 1024px;
  margin: 0 auto;
  backdrop-filter: blur(5px);
  background: hsl(0deg 0% 100% / 40%) !important;
}

nav.scrolled .nav-items {
  border: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 1.5rem);
  color: var(--green);
  transition: color 0.3s;
}

.nav-logo-text i {
  font-weight: 800;
  color: var(--orange);
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #cecece;
  border-radius: 50px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px 12px 16px;
  border-radius: 999px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  color: #000;
  transition: all 0.2s;
  position: relative;
  background: #fff;
}

.nav-btn:hover,
.nav-btn.highlight {
  color: var(--white);
  background: var(--orange);
}

nav.scrolled .nav-btn {
  color: #374151;
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
}

nav.scrolled .nav-btn.highlight {
  color: var(--white);
}

nav.scrolled .nav-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

nav.scrolled .nav-btn.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

nav.scrolled .nav-contact {


  .nav-contact-icon {
    width: 30px;
    height: 30px;
  }
}

.nav-btn:not(.scrolled-btn).active {
  background: var(--orange);
  color: #FFF;
}

.nav-chevron {
  display: inline-block;
  transition: transform 0.2s;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  margin-left: 2px;
}

.nav-btn.active .nav-chevron {
  transform: rotate(180deg);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 5px 5px 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 400;
  border-radius: 999px;
  font-size: clamp(0.75rem, 1vw, 1rem);
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-contact:hover {
  background: var(--orange-dark);
}

.nav-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}

.nav-mobile-toggle {
  display: none;
  padding: 8px;
  color: #fff;
  border-radius: 999px;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

nav.scrolled .nav-mobile-toggle {
  color: #1f2937;
  background: rgba(0, 0, 0, 0.05);
}

/* ── Dropdowns (Desktop) ── */
.dropdown-wrap {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
  border: 1px solid #f3f4f6;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}

.dropdown-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-panel.services {
  left: 0;
  right: 0;
  padding: 32px;
}

.dropdown-panel.industries {
  left: 0;
  width: 400px;
  padding: 24px;
}

.dropdown-panel.technologies {
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 520px;
  padding: 20px;
}

.dropdown-panel.technologies.open {
  transform: translateX(-50%) translateY(0);
}

.dropdown-panel.insights {
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 680px;
  padding: 24px;
}

.dropdown-panel.insights.open {
  transform: translateX(-50%) translateY(0);
}

.dropdown-panel.company {
  right: 0;
  width: 580px;
  padding: 24px;
}

.dd-label {
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.dd-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
}

.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s;
}

.dd-icon-inner {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 71, 10, 0.8);
}

.dd-item:hover .dd-icon {
  background: #ffe8e0;
}

.dd-item-title {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: #111827;
  transition: color 0.2s;
}

.dd-item:hover .dd-item-title {
  color: var(--orange);
}

.dd-item-desc {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  color: #6b7280;
  margin-top: 2px;
  line-height: 1.5;
}

.dd-sep {
  border-top: 1px solid #f3f4f6;
  margin: 24px 0;
  padding-top: 24px;
}

.ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.ind-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  color: #374151;
  transition: all 0.2s;
}

.ind-item:hover {
  background: #f9fafb;
  color: var(--green);
}

.ind-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
  flex-shrink: 0;
}

.ind-item:hover .ind-dot {
  opacity: 1;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.tech-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 8px;
  background: var(--bg-color);
}

.tech-icon-item:hover {
  border: 1px solid var(--orange);
}

.tech-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
}

.tech-icon-label {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 500;
  color: #374151;
}

.tech-chips-wrap {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 500;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.tech-chip iconify-icon {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}

.tech-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}

.tech-stats {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 16px;
}

.tech-stat-num {
  font-size: clamp(1.25rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.tech-stat-label {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  color: #6b7280;
  margin-top: 2px;
}

.ins-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

.ins-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ins-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s;
}

.ins-link:hover {
  background: #f9fafb;
}

.ins-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--orange);
  flex-shrink: 0;
}

.ins-link-label {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  color: #1f2937;
}

.ins-link:hover .ins-link-label {
  color: var(--orange);
}

.ins-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ins-article-img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #e5e7eb;
}

.ins-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.ins-article:hover .ins-article-img img {
  transform: scale(1.05);
}

.ins-article-title {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  transition: color 0.2s;
}

.ins-article:hover .ins-article-title {
  color: var(--green);
}

.co-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
}

.co-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.co-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s;
}

.co-link:hover {
  background: #f9fafb;
}

.co-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--orange);
  flex-shrink: 0;
}

.co-link-label {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  color: #1f2937;
}

.co-link:hover .co-link-label {
  color: var(--orange);
}

.co-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  transition: background 0.2s;
  align-items: flex-start;
}

.co-card:hover {
  background: #fff7f5;
}

.co-card-text {
  flex: 1;
}

.co-card-title {
  font-weight: 700;
  color: #111827;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.co-card:hover .co-card-title {
  color: var(--green);
}

.co-card-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 500;
  color: #4b5563;
}

.co-card:hover .co-card-link {
  color: var(--green);
}

.co-card-img {
  width: 112px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.co-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MOBILE MENU ── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(11, 12, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 20px;
}

.mobile-link {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-link:hover {
  color: var(--green);
  transform: translateX(8px);
}

.mobile-arrow {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  transition: transform 0.3s;
}

.mobile-link.active .mobile-arrow {
  transform: rotate(90deg);
}

.mobile-cta {
  margin-top: 20px;
  padding: 14px 36px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}

.mobile-cta:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
}

.mobile-cta span {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  transition: transform 0.2s;
}

.mobile-cta:hover span {
  transform: translateX(4px);
}

/* ── MOBILE DROPDOWN PANEL ── */
.mobile-dropdown-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 120px 24px 40px;
}

.mobile-dropdown-panel.open {
  transform: translateX(0);
}

.mobile-dropdown-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1001;
}

.mobile-back-btn {
  background: none;
  border: none;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  cursor: pointer;
  color: #111827;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-back-btn:hover {
  background: #f3f4f6;
}

.mobile-dropdown-title {
  font-size: clamp(1.25rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.mobile-dd-section {
  margin-bottom: 32px;
}

.mobile-dd-label {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.mobile-dd-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-dd-item {
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.mobile-dd-item:active {
  background: #f9fafb;
  border-radius: 12px;
}

.mobile-dd-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-dd-icon-inner {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--green);
}

.mobile-dd-content {
  flex: 1;
}

.mobile-dd-title {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.mobile-dd-desc {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #6b7280;
  line-height: 1.4;
}

.mobile-ind-item {
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #374151;
}

.mobile-ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.mobile-tech-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.mobile-tech-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-tech-badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.mobile-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.mobile-tech-chip {
  padding: 8px 16px;
  background: #f9fafb;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 500;
  color: #374151;
}

.mobile-tech-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
}

.mobile-tech-stats div {
  text-align: center;
}

.mobile-tech-stats strong {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: #111827;
}

.mobile-ins-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.mobile-ins-link {
  flex: 1;
  padding: 16px;
  background: #f9fafb;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
}

.mobile-ins-article {
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
}

.mobile-ins-article-img {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #e5e7eb;
}

.mobile-ins-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-ins-article-title {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  color: #1f2937;
}

.mobile-co-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.mobile-co-link {
  flex: 1;
  padding: 16px;
  background: #f9fafb;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
}

.mobile-co-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  display: block;
}

.mobile-co-card-title {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.mobile-co-card-img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

.mobile-co-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── HERO ── */
#hero {
  position: relative;
  overflow: hidden;
}

#hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

/* ── HERO TEXT BAND ── */
#hero-band {
  background: var(--gray-bg2);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-band-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-band-left {
  flex: 1;
}

.hero-band-left p {
  color: var(--dark);
}

.hero-clients {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  opacity: 0.35;
  filter: grayscale(1);
}

.hero-client {
  font-size: clamp(0.625rem, 0.8vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.hero-headline {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 4.5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 28px;


  @media (min-width: 1750px) {
    max-width: 80%;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  color: var(--text);
}

.hero-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.hero-book-btn {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s;
  padding: 15px 20px;
  gap: 15px;
  border-radius: 50px;
}

.hero-book-btn:hover {
  transform: scale(1.05);
}

.hero-book-label {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
}

.hero-book-arrow {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s;
}

.hero-book-btn:hover .hero-book-arrow {
  transform: rotate(0deg);
}

/* ── SERVICES ── */
#services {
  padding: 96px 0;
  background: #fff;
  color: #111827;
  border-top: 1px solid #f3f4f6;
}

.services-heading {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: 64px;
  line-height: 1.2;
}

.services-layout {
  display: flex;
  gap: 96px;
  align-items: flex-start;
}

.services-quote {
  background: #f3f4f6;
  border-radius: 24px;
  padding: 40px;
  flex: 0 0 35%;
}

.services-quote-mark {
  font-size: clamp(3rem, 4vw, 4rem);
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.services-quote-text {
  font-size: clamp(1.25rem, 2vw, 2.125rem);
  font-weight: 300;
  line-height: 1.5;
  color: #1f2937;
  margin-bottom: 32px;
}

.services-quote-text span {
  color: var(--orange);
}

.services-quote-author {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-right {
  flex: 1;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: #6b7280;
  transition: all 0.2s;
}

.tab-btn:hover {
  color: #111827;
  background: #f3f4f6;
}

.tab-btn.active {
  background: var(--green);
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.service-item {
  border-bottom: 1px solid #f3f4f6;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.service-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-item-title {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: #111827;
  transition: color 0.2s;
}

.service-item:hover .service-item-title {
  color: var(--green);
}

.service-item-arrow {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #d1d5db;
  transition: all 0.2s;
}

.service-item:hover .service-item-arrow {
  color: var(--green);
  transform: translate(2px, -2px);
}

.service-item-desc {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #6b7280;
}

.tech-tags {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  color: #4b5563;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* ── MISSION ── */
#mission {
  padding: 112px 48px;
  background: var(--gray-bg);
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-text {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #d1d5db;
  display: flex;
  flex-wrap: wrap;
}

.mission-word {
  display: inline;
  color: #c8c8c8;
  transition: color 0.25s ease;
}

.mission-word.revealed {
  color: #0b0c10;
}

.mission-word.orange.revealed {
  color: var(--orange);
}

.mission-cta {
  margin-top: 40px;
}

.mission-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(1rem, 0.9vw, 0.875rem);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  transition: background 0.2s;
}

.mission-btn:hover {
  background: var(--orange-dark);
}

.mission-btn-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

/* ── PORTFOLIO ── */
#work {
  padding: 96px 0;
  background: var(--gray-bg2);
  color: #111827;
  border-top: 1px solid #f3f4f6;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.portfolio-heading {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 600;
}

.portfolio-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
}

.portfolio-more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 56px 32px;
}

.portfolio-item {
  cursor: pointer;
}

.portfolio-item.span-4 {
  grid-column: span 4;
}

.portfolio-item.span-5 {
  grid-column: span 5;
}

.portfolio-item.span-7 {
  grid-column: span 7;
}

.portfolio-item.span-6 {
  grid-column: span 6;
}

.portfolio-thumb {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #e5e7eb;
  margin-bottom: 20px;
}

.portfolio-item.span-4 .portfolio-thumb {
  aspect-ratio: 16/10;
}

.portfolio-item.span-5 .portfolio-thumb {
  aspect-ratio: 4/5;
}

.portfolio-item.span-7 .portfolio-thumb {
  aspect-ratio: 16/10;
}

.portfolio-item.span-6 .portfolio-thumb {
  aspect-ratio: 16/10;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transform: translateY(12px);
  transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay span {
  transform: translateY(0);
}

.portfolio-item-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 4px;
}

.portfolio-item-cat {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 400;
  color: #6b7280;
  margin-top: 5px;
}

/* ── HOW WE WORK (PROCESS) ── */
#process {
  padding: 96px 0;
  background: #fff;
  color: #111827;
  border-top: 1px solid #f3f4f6;
}

.process-header {
  margin-bottom: 64px;
}

.process-eyebrow {
  display: inline-block;
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.process-heading {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.process-sub {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.process-step {
  position: relative;
  background: #fafafa;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s, box-shadow 0.25s;
}

.process-step:hover {
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.process-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: #f3f4f6;
  line-height: 1;
  transition: color 0.25s;
}

.process-step:hover .process-num {
  color: #ffe0d5;
}

.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff7f5;
  border: 1px solid #ffe0d5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: background 0.25s;
}

.process-step:hover .process-icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.process-step-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.125rem, 1.3vw, 1.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.process-step-desc {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
}

.process-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.process-tags li {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 600;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-tags li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.process-step:hover .process-tags li::before {
  opacity: 1;
}

.process-cta {
  text-align: center;
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: #fff;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.process-cta-btn:hover {
  background: var(--green);
  transform: scale(1.03);
}

.process-cta-arrow {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  display: inline-block;
  transition: transform 0.2s;
}

.process-cta-btn:hover .process-cta-arrow {
  transform: translateX(4px);
}

/* ── BLOG ── */
#blog {
  padding: 96px 0;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--dark);
}

.blog-heading {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 600;
  max-width: 440px;
}

.blog-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
}

.blog-more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--dark-card2);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.blog-card-body {
  padding: 24px 32px;
}

.blog-card-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  transition: color 0.2s;
  color: var(--dark-card);
}

.blog-card:hover .blog-card-title {
  color: var(--green);
}

.blog-card-meta {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  color: var(--text);
}

/* ── TESTIMONIALS SLIDER ── */
#testimonials {
  padding: 80px 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.testi-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.testi-question {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  font-weight: 600;
  max-width: 520px;
  line-height: 1.25;
}

.testi-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  margin-top: 8px;
}

.testi-nav-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.testi-nav-btn.prev {
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.7);
}

.testi-nav-btn.prev:hover {
  background: #333;
  color: #fff;
}

.testi-nav-btn.next {
  background: #fff;
  color: #111;
}

.testi-nav-btn.next:hover {
  background: #e5e5e5;
}

.testi-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.testi-slider-wrap {
  position: relative;
}

.testi-track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.testi-track.grabbing {
  cursor: grabbing;
}

.testi-track-inner {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ts-card {
  border-radius: 20px;
  background: #1e1e1e;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 400px;
}

.ts-card.rating {
  width: 240px;
  padding: 36px 32px;
  justify-content: space-between;
}

.ts-rating-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(4rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}

.ts-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.ts-star {
  color: var(--green);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.ts-rating-sub {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.ts-platform {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ts-platform-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E31B23;
  flex-shrink: 0;
}

.ts-platform-name {
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #fff;
}

.ts-card.img-quote {
  width: 320px;
}

.ts-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.ts-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ts-quote-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ts-quote-author {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
}

.ts-card.text-lg {
  width: 380px;
  padding: 40px 36px;
  justify-content: space-between;
}

.ts-text-body {
  font-size: clamp(0.9rem, 1.5vw, 1.375rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 32px;
}

.ts-text-body .hl {
  color: var(--orange);
}

.ts-author-name {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ts-author-role {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.4);
}

/* ── CONTACT CTA ── */
#contact {
  position: relative;
  overflow: hidden;
  background: #19191A;
  color: #fff;
  text-align: center;
  padding: 96px 48px 80px;
}

.bubbles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bubbles-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-heading {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 48px;
  overflow: hidden;
}

.cf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cf-item:nth-child(4n) {
  border-right: none;
}

.cf-item:nth-child(5),
.cf-item:nth-child(6),
.cf-item:nth-child(7),
.cf-item:nth-child(8) {
  border-bottom: none;
}

.cf-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.65;
}

.cf-label {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  line-height: 1.3;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #fff;
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  font-weight: 500;
  padding: 10px 7px 10px 24px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.contact-cta-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.03);
}

.contact-cta-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.contact-info {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 300;
  margin: 0rem 0 3rem;
  line-height: 1.7;
}

.tag_line {
  font-size: clamp(1.75rem, 3.5vw, 3.125rem);
  font-weight: 200;
  margin-top: 3rem;
}

/* ── LOGOS STRIP ── */
#logos-strip {
  background: #1a1a1a;
  padding: 28px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 0.75;
}

.logo-item-text {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.logo-item-icon {
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 900;
  color: #fff;
}

/* ── FOOTER ── */
footer {
  background: #f5f5f5;
  color: #1f2937;
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 20% repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-logo svg {
  flex-shrink: 0;
}

.footer-brand-visit {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-brand-addr {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #4b5563;
  line-height: 1.6;
}

.footer-brand-email {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #4b5563;
  margin-top: 8px;
  transition: color 0.2s;
}

.footer-brand-email:hover {
  color: var(--green);
}

.footer-col-title {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #111827;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col span {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  transition: color 0.2s;
  display: block;
  cursor: pointer;
}

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

.footer-col .fc-sub-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #111827;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  margin-bottom: 8px;
  margin-top: 4px;
  cursor: default;
}

.footer-col .fc-sub-toggle svg {
  width: 12px;
  height: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #6b7280;
}

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

.footer-legal a {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #6b7280;
  transition: color 0.2s;
}

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

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 {
  transition-delay: 0.1s;
}

.fade-up-d2 {
  transition-delay: 0.2s;
}

/* ── RESPONSIVE DESIGN ── */

/* Large Tablets */
@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }

  nav {
    padding: 20px 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 4;
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  .footer-brand-logo {
    margin-bottom: 0;
  }

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

  .process-step {
    padding: 24px 20px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  }

  .services-quote-text {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
  }

  .portfolio-grid {
    gap: 40px 24px;
  }

  .system_feature .feature_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-wrap {
    padding: 0 40px;
  }

  .cs-hero {
    padding: 140px 40px 0;
  }

  .cs-section {
    padding: 80px 0;
  }
}

/* Tablets and Mobile Navigation Breakpoint */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-items,
  .nav-contact {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .container {
    padding: 0 24px;
  }

  .hero-band-inner {
    padding: 0 24px;
  }

  #hero-band {
    padding: 40px 0;
  }

  .hero-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

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

  .services-quote {
    flex: unset;
  }

  .tab-content.active {
    grid-template-columns: 1fr;
  }

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

  .portfolio-item.span-4,
  .portfolio-item.span-5,
  .portfolio-item.span-7,
  .portfolio-item.span-6 {
    grid-column: span 1;
  }

  .portfolio-item.span-7 .portfolio-thumb {
    height: auto;
    aspect-ratio: 16/10;
  }

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

  .contact-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-item:nth-child(2n) {
    border-right: none;
  }

  .cf-item:nth-child(5),
  .cf-item:nth-child(6),
  .cf-item:nth-child(7),
  .cf-item:nth-child(8) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cf-item:nth-child(7),
  .cf-item:nth-child(8) {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 3;
    flex-direction: column;
    gap: 0;
  }

  .logos-row {
    gap: 32px;
  }

  #services,
  #work,
  #blog,
  #testimonials,
  #contact,
  #mission,
  #process {
    padding: 64px 0;
  }

  #logos-strip {
    padding: 24px;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .testi-header {
    padding: 0 0;
    flex-direction: column;
  }

  .testi-track {
    padding: 0 0;
  }

  .mission-text {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  #mission {
    padding: 64px 24px;
  }

  .friction_point .friction_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .cs-cta-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .cs-cta-right {
    padding-top: 0;
  }

  .cs-hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
  }

  .dropdown-panel.services,
  .dropdown-panel.industries,
  .dropdown-panel.technologies,
  .dropdown-panel.insights,
  .dropdown-panel.company {
    width: 90vw;
    left: 5%;
    right: auto;
    transform: translateX(0);
  }

  .dropdown-panel.technologies,
  .dropdown-panel.insights {
    left: 5%;
    transform: translateX(0);
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .services-layout {
    gap: 50px;
  }


  .hero-headline {
    font-size: clamp(1.75rem, 4.5vw, 2.625rem);
  }

  .services-heading,
  .portfolio-heading,
  .blog-heading,
  .process-heading {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

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

  .ts-card.rating,
  .ts-card.img-quote,
  .ts-card.text-lg {
    width: 280px;
  }

  .hero-clients {
    gap: 16px;
  }

  .hero-client {
    font-size: clamp(0.5rem, 0.6vw, 0.625rem);
  }

  .hero-stats {
    font-size: clamp(0.625rem, 0.7vw, 0.75rem);
    flex-wrap: wrap;
  }

  .hero-book-btn {
    width: auto;
    padding: 12px 18px;
  }

  .services-quote {
    padding: 24px;
  }

  .system_feature .feature_grid {
    grid-template-columns: 1fr;
  }

  .friction_point .friction_grid {
    grid-template-columns: 1fr;
  }

  .blockquote_card {
    padding: 32px 20px;
    min-height: auto;
  }

  .blockquote_card p {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
  }

  .blockquote_card cite {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }

  .mh-480 {
    min-height: auto;
    height: auto;
  }

  .cs-stats-bar {
    flex-direction: column;
  }

  .cs-stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
  }

  .cs-stat:last-child {
    border-bottom: none;
  }

  .cs-table thead th,
  .cs-table tbody td {
    padding: 12px 16px;
  }

  .cs-outcome-card {
    padding: 24px 20px;
  }

  .cs-outcome-stat {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

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

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

  .co-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tech-icons {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dd-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Small Mobile Phones */
@media (max-width: 600px) {
  .contact-features {
    grid-template-columns: 1fr;
  }

  .cf-item {
    border-right: none;
  }

  .cf-item:nth-child(5),
  .cf-item:nth-child(6),
  .cf-item:nth-child(7),
  .cf-item:nth-child(8) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cf-item:last-child {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .hero-book-label {
    font-size: clamp(0.5rem, 0.6vw, 0.625rem);
  }

  .mobile-link {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  }

  .tech-icons {
    grid-template-columns: 1fr 1fr;
  }

  .ins-articles {
    grid-template-columns: 1fr;
  }

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

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

  .co-links {
    flex-direction: column;
  }

  .process-step {
    padding: 20px 16px;
  }

  .process-num {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  }

  .blog-card-body {
    padding: 20px;
  }

  .testi-nav-btn {
    padding: 6px 16px;
  }

  .contact-heading {
    font-size: clamp(1.5rem, 6vw, 2.75rem);
  }

  .tag_line {
    font-size: clamp(1.25rem, 5vw, 2.5rem);
  }

  .cs-hero {
    padding: 100px 16px 0;
  }

  .cs-wrap {
    padding: 0 16px;
  }

  .cs-section {
    padding: 60px 0;
  }

  .cs-client-row {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .cs-client-divider {
    display: none;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  .nav-logo-text {
    font-size: clamp(18px, 1.2vw, 1rem);
  }

  .hero-clients {
    gap: 12px;
  }

  .hero-client {
    font-size: clamp(0.5rem, 0.6vw, 0.625rem);
  }

  .hero-stats {
    font-size: clamp(0.625rem, 0.7vw, 0.75rem);
    gap: 10px;
  }

  .services-quote {
    padding: 24px;
  }

  .services-quote-text {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
  }

  .process-step {
    padding: 24px 20px;
  }

  .process-num {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }

  .blog-card-body {
    padding: 20px;
  }

  .blog-card-title {
    font-size: clamp(0.875rem, 1vw, 1.125rem);
  }

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

  .footer-legal {
    justify-content: center;
  }

  .mobile-link {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .mobile-cta {
    padding: 12px 28px;
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .dropdown-panel {
    top: 70px !important;
    max-height: calc(100vh - 70px);
    padding: 20px 16px 32px !important;
  }

  .dd-item-title {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
  }

  .dd-item-desc {
    font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  }

  .tech-icon-badge {
    width: 56px;
    height: 56px;
  }

  .testi-question {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
  }

  .ts-card.rating,
  .ts-card.img-quote,
  .ts-card.text-lg {
    width: 260px;
  }
}

/* Landscape mode for mobile */
@media (max-width: 900px) and (orientation: landscape) {
  #mobile-menu {
    padding: 40px 20px;
  }

  .mobile-menu-inner {
    gap: 20px;
  }

  .mobile-link {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
  }

  .dropdown-panel {
    top: 70px !important;
    max-height: calc(100vh - 70px);
  }

  #hero {
    height: auto;
    min-height: 100dvh;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .nav-btn:hover,
  .dd-item:hover,
  .ind-item:hover,
  .blog-card:hover {
    transform: none;
  }

  button,
  a,
  .dd-item,
  .ind-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

.cases-archive {
  display: flex;
  padding: 168px 0px 80px;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  align-self: stretch;
  background: #F5F5F6;
}

.cases-archive__title {
  max-width: 1197px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.2;
  font-style: normal;
  color: #000;
}

.cases-archive-item__title a {
  color: #000;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
}

.color-logo {
  font-weight: 500;
  color: var(--green);
}

.color-logo i {
  font-weight: 800;
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════════
    CASE STUDY — SAGE ALERT
    All classes prefixed cs- to avoid any conflicts with existing
    site styles. Add to your project style.css.
  ═══════════════════════════════════════════════════════════════ */

/* ── Page base ── */
.cs-body {
  background: #fff;
  color: #111827;
}

/* ── Eyebrow ── */
.cs-eyebrow {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 20px;
}

.cs-eyebrow--green {
  color: var(--green);
}

.cs-eyebrow--light {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Section wrapper ── */
.cs-wrap {
  margin: 0 auto;
  padding: 0 132px;
}

.cs-section {
  padding: 100px 0;
}

.cs-section--light {
  background: #F7F7F7;
  color: #111827;
}

.cs-section--white {
  background: #ffffff;
  color: #111827;
}

.cs-section--dark {
  background: var(--dark);
  color: #fff;
}

/* ── Section headings ── */
.cs-section-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 24px;
}

.cs-section-title--light {
  color: #fff;
}

.cs-section-lead {
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: #4b5563;
  max-width: 780px;
  margin-bottom: 48px;
}

.cs-section-lead--muted {
  color: rgba(255, 255, 255, 0.6);
}

/* ── HERO ── */
.cs-hero {
  background: var(--bg-color);
  padding: 160px 132px 0;
  overflow: hidden;
}

.cs-hero-inner {
  margin: 0 auto;
  text-align: center;
}

.cs-hero-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green);
  margin-bottom: 24px;
}

.cs-hero-sub {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Client row */
.cs-client-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.cs-client-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-client-label {
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.cs-client-val {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  color: var(--orange);
}

.cs-client-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.12);
}

/* Stats bar */
.cs-stats-bar {
  display: flex;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto 80px;
  justify-content: center;
}

.cs-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.cs-stat:last-child {
  border-right: none;
}

.cs-stat-val {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.cs-stat-label {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

/* Hero image area */
.cs-hero-img-wrap {
  margin: 0 auto;
}

/* ── IMAGE PLACEHOLDERS ── */
.cs-img-placeholder {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.cs-img-placeholder--hero {
  border-radius: 20px;
  border-bottom: none;
}

.cs-img-placeholder--wide {
  min-height: 440px;
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
}

.cs-img-placeholder--dark-bg {
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed rgba(255, 255, 255, 0.12);
}

.cs-section--white .cs-img-placeholder--wide,
.cs-section--light .cs-img-placeholder--wide {
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
}

.cs-img-placeholder__inner {
  text-align: center;
}

.cs-img-placeholder__icon {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  margin-bottom: 16px;
  opacity: 0.4;
}

.cs-img-placeholder__label {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
}

.cs-section--light .cs-img-placeholder__label,
.cs-section--white .cs-img-placeholder__label {
  color: #6b7280;
}

.cs-section--dark .cs-img-placeholder__label,
.cs-img-placeholder--hero .cs-img-placeholder__label {
  color: rgba(255, 255, 255, 0.45);
}

.cs-img-placeholder__hint {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  color: #9ca3af;
}

.cs-section--dark .cs-img-placeholder__hint,
.cs-img-placeholder--hero .cs-img-placeholder__hint {
  color: rgba(255, 255, 255, 0.25);
}

/* ── TWO-COLUMN LAYOUT ── */
.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}

.cs-two-col__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-two-col__text p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  color: #374151;
}

.cs-two-col__media .cs-img-placeholder {
  background: #e9eaec;
  border: 2px dashed #d1d5db;
  min-height: 320px;
}

.cs-two-col__media .cs-img-placeholder .cs-img-placeholder__label,
.cs-two-col__media .cs-img-placeholder .cs-img-placeholder__hint {
  color: #6b7280;
}

/* ── TABLES ── */
.cs-table-wrap {
  margin-bottom: 48px;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow-y: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .cs-table-wrap {
    margin-bottom: 0;
  }
}

.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
}

.cs-table thead tr {
  background: var(--green);
}

.cs-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.cs-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}

.cs-table tbody tr:last-child {
  border-bottom: none;
}

.cs-table tbody tr:hover {
  background: #f9fafb;
}

.cs-table tbody td {
  padding: 20px 24px;
  color: #374151;
  line-height: 1.65;
  vertical-align: top;
}

.cs-table__key {
  font-weight: 700;
  color: #111827 !important;
  white-space: nowrap;
  min-width: 180px;
}

/* Dark table variant (Engineering section) */
.cs-table--dark {
  background: transparent;
}

.cs-table--dark thead tr {
  background: rgba(255, 255, 255, 0.06);
}

.cs-table--dark thead th {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-table--dark tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-table--dark tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.cs-table--dark tbody td {
  color: rgba(255, 255, 255, 0.65);
}

.cs-table--dark .cs-table__key {
  color: #fff !important;
}

.cs-table--dark .cs-table__tech {
  color: var(--green-light) !important;
  font-weight: 600;
}

.cs-section--dark .cs-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── BLOCKQUOTE ── */
.cs-blockquote {
  background: #fff;
  border-left: 4px solid var(--green);
  border-radius: 0 16px 16px 0;
  padding: 32px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cs-blockquote p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.65;
  color: #111827;
  font-style: italic;
  margin-bottom: 16px;
}

.cs-blockquote cite {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #6b7280;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── OUTCOMES GRID ── */
.cs-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

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

.cs-outcome-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 36px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cs-outcome-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.cs-outcome-stat {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cs-outcome-title {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cs-outcome-body {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  line-height: 1.75;
}

/* ── CTA SECTION ── */
.cs-cta-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.cs-cta-left {
  flex: 1;
  min-width: 280px;
}

.cs-cta-email {
  display: inline-block;
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: var(--green-light);
  margin-top: 24px;
  transition: opacity 0.2s;
}

.cs-cta-email:hover {
  opacity: 0.75;
}

.cs-cta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-top: 60px;
}

.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.cs-cta-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.03);
}

.cs-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cs-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cs-footer-tagline {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 48px;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 900px) {
  .cs-hero {
    padding: 120px 24px 0;
  }

  .cs-wrap {
    padding: 0 24px;
  }

  .cs-section {
    padding: 72px 0;
  }

  .cs-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .cs-stats-bar {
    max-width: 100%;
  }

  .cs-cta-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .cs-cta-right {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .cs-hero-title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .cs-stats-bar {
    flex-direction: column;
    border-radius: 16px;
  }

  .cs-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cs-stat:last-child {
    border-bottom: none;
  }

  .cs-table thead th,
  .cs-table tbody td {
    padding: 14px 16px;
  }

  .cs-outcome-card {
    padding: 28px 24px;
  }
}

.text-center {
  text-align: center;
}

.ms-auto {
  margin: 0 auto;
}

.mt-5 {
  margin-top: 5rem;
}

@media (max-width: 768px) {
  .mt-5 {
    margin-top: 2rem;
  }
}

.friction_point h2 {
  color: var(--green);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  margin-top: 3rem;
}

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

.friction_point .friction_grid .item__title {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.18px;
}

.friction_point .friction_grid p {
  color: #464554;
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.18px;
}

.system_feature {
  margin: 3rem 0;
}

.system_feature h2 {
  color: var(--green);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.system_feature .feature_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.system_feature .feature_grid .item__title {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.18px;
}

.system_feature .feature_grid p {
  color: #464554;
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.18px;
}

.blockquote_card {
  width: 100%;
  max-width: 864px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  padding: 48px 30px;
  border-radius: 20px;
  background: #FFF;
  overflow: hidden;
  min-height: 480px;
  justify-content: end;
}

.blockquote_card .icon {
  width: 50px;
  height: 50px;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--orange);
  font-size: clamp(1.75rem, 2.2vw, 2.1875rem);
}

.blockquote_card p {
  color: var(--dark);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}

.blockquote_card cite {
  margin-bottom: 4px;
  color: var(--green);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.33;
}

.mh-480 {
  min-height: 480px;
  height: 480px;
}

/* ── RESPONSIVE BREAKPOINTS ── */
/* All desktop styles remain unchanged - these only apply below specific widths */

/* Large screens (up to 1440px) */
@media (max-width: 1440px) {
  .container {
    padding: 0 60px;
  }

  nav {
    padding: 20px 60px;
  }

  .cs-wrap {
    padding: 0 60px;
  }

  .cs-hero {
    padding: 160px 60px 0;
  }
}

/* Desktop to tablet transition (1200px) */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  nav {
    padding: 16px 40px;
  }

  .cs-wrap {
    padding: 0 40px;
  }

  .cs-hero {
    padding: 140px 40px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 3;
  }
}

/* Large tablets (992px) */
@media (max-width: 992px) {
  .container {
    padding: 0 32px;
  }

  nav {
    padding: 16px 32px;
  }

  .cs-wrap {
    padding: 0 32px;
  }

  .cs-hero {
    padding: 130px 32px 0;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  }

  .services-layout {
    gap: 48px;
  }

  .services-quote {
    flex: 0 0 45%;
  }

  .services-quote-text {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-step {
    padding: 28px 24px;
  }

  .portfolio-grid {
    gap: 32px 20px;
  }

  .portfolio-item.span-4,
  .portfolio-item.span-5,
  .portfolio-item.span-7,
  .portfolio-item.span-6 {
    grid-column: span 6;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ts-card.rating {
    width: 200px;
  }

  .ts-card.img-quote {
    width: 280px;
  }

  .ts-card.text-lg {
    width: 320px;
  }

  .friction_point .friction_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .system_feature .feature_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .cs-two-col {
    gap: 32px;
  }

  .cs-stats-bar {
    max-width: 100%;
  }
}

/* Tablets & small laptops (768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  nav {
    padding: 12px 20px;
  }

  .cs-wrap {
    padding: 0 20px;
  }

  .cs-hero {
    padding: 110px 20px 0;
  }

  .nav-items,
  .nav-contact {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  nav.scrolled .nav-logo-text {
    display: block;
  }

  .hero-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-headline {
    font-size: clamp(2rem, 4.5vw, 2.625rem);
  }

  .hero-stats {
    font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  }

  .hero-book-btn {
    padding: 12px 16px;
  }

  .services-layout {
    flex-direction: column;
    gap: 40px;
  }

  .services-quote {
    flex: unset;
    padding: 32px 24px;
  }

  .services-quote-text {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
  }

  .tab-content.active {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-item {
    padding: 20px 0;
  }

  .services-heading {
    margin-bottom: 40px;
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

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

  .portfolio-item.span-4,
  .portfolio-item.span-5,
  .portfolio-item.span-7,
  .portfolio-item.span-6 {
    grid-column: span 1;
  }

  .portfolio-item.span-4 .portfolio-thumb,
  .portfolio-item.span-5 .portfolio-thumb,
  .portfolio-item.span-7 .portfolio-thumb,
  .portfolio-item.span-6 .portfolio-thumb {
    aspect-ratio: 16/10;
  }

  .portfolio-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .portfolio-header {
    margin-bottom: 40px;
  }

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

  .process-step {
    padding: 24px 20px;
  }

  .process-num {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

  .process-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .blog-header {
    margin-bottom: 40px;
  }

  .testi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .testi-question {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .ts-card.rating {
    width: 180px;
    padding: 24px 20px;
    min-height: 300px;
  }

  .ts-rating-num {
    font-size: clamp(3rem, 4vw, 4rem);
  }

  .ts-card.img-quote {
    width: 260px;
  }

  .ts-card.text-lg {
    width: 300px;
    padding: 32px 24px;
  }

  .contact-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-item:nth-child(2n) {
    border-right: none;
  }

  .cf-item:nth-child(5),
  .cf-item:nth-child(6),
  .cf-item:nth-child(7),
  .cf-item:nth-child(8) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cf-item:nth-child(7),
  .cf-item:nth-child(8) {
    border-bottom: none;
  }

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

  .tag_line {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

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

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .logos-row {
    gap: 24px;
  }

  .logo-item {
    opacity: 0.6;
  }

  #services,
  #work,
  #blog,
  #testimonials,
  #contact,
  #mission,
  #process {
    padding: 56px 0;
  }

  #logos-strip {
    padding: 20px 24px;
  }

  footer {
    padding: 40px 20px 24px;
  }

  #mission {
    padding: 56px 20px;
  }

  .mission-text {
    font-size: clamp(1.375rem, 3.5vw, 2rem);
  }

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

  .cs-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cs-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .cs-stats-bar {
    flex-direction: column;
    border-radius: 12px;
    max-width: 100%;
  }

  .cs-stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
  }

  .cs-stat:last-child {
    border-bottom: none;
  }

  .cs-cta-wrap {
    flex-direction: column;
    gap: 32px;
  }

  .cs-cta-right {
    padding-top: 0;
  }

  .cs-section {
    padding: 56px 0;
  }

  .cs-table thead th,
  .cs-table tbody td {
    padding: 12px 16px;
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
    white-space: nowrap;
  }

  .cs-table__key {
    min-width: 120px;
  }

  .cs-outcome-card {
    padding: 24px 20px;
  }

  .cs-outcome-stat {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

  .cs-img-placeholder--hero {
    border-radius: 16px;
  }

  .cs-img-placeholder__icon {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 12px;
  }

  .cs-img-placeholder__label {
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  }

  .cs-img-placeholder__hint {
    font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  }

  .blockquote_card {
    padding: 32px 20px;
    min-height: auto;
  }

  .blockquote_card p {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  }

  .blockquote_card cite {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }

  .mh-480 {
    min-height: auto;
    height: auto;
  }

  .friction_point .friction_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .system_feature .feature_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .system_feature h2 {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
  }

  .friction_point h2 {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
  }

  .cases-archive {
    padding: 80px 0 60px;
  }

  .cases-archive__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.2;
  }

  .dropdown-panel.services,
  .dropdown-panel.industries,
  .dropdown-panel.technologies,
  .dropdown-panel.insights,
  .dropdown-panel.company {
    width: 90vw;
    left: 5%;
    right: auto;
    transform: translateX(0);
    padding: 24px !important;
    top: calc(100% + 8px);
  }

  .dropdown-panel.technologies,
  .dropdown-panel.insights {
    left: 5%;
    transform: translateX(0);
  }

  .dropdown-panel.technologies.open {
    transform: translateX(0);
  }

  .dropdown-panel.insights.open {
    transform: translateX(0);
  }

  .dd-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .tech-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ins-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ins-articles {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .co-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .co-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Mobile phones (576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  nav {
    padding: 10px 16px;
  }

  .cs-wrap {
    padding: 0 16px;
  }

  .cs-hero {
    padding: 80px 16px 0;
  }

  .nav-logo-text {
    font-size: clamp(18px, 1vw, 1.125rem);
  }

  .nav-mobile-toggle {
    width: 38px;
    height: 38px;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }

  .hero-headline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
  }

  .hero-stats {
    font-size: clamp(0.625rem, 0.7vw, 0.75rem);
    gap: 8px;
    flex-wrap: wrap;
  }

  .hero-dot {
    display: none;
  }

  .hero-clients {
    gap: 12px;
  }

  .hero-client {
    font-size: clamp(0.5rem, 0.6vw, 0.625rem);
  }

  .hero-band-inner {
    gap: 20px;
  }

  .services-quote {
    padding: 24px 16px;
  }

  .services-quote-text {
    font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  }

  .services-quote-mark {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }

  .service-item-title {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .services-heading {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }

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

  .process-step {
    padding: 20px 16px;
  }

  .process-num {
    font-size: clamp(1.5rem, 2vw, 2rem);
  }

  .process-step-title {
    font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  }

  .process-heading {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }

  .contact-features {
    grid-template-columns: 1fr;
  }

  .cf-item {
    border-right: none;
  }

  .cf-item:nth-child(5),
  .cf-item:nth-child(6),
  .cf-item:nth-child(7),
  .cf-item:nth-child(8) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cf-item:last-child {
    border-bottom: none;
  }

  .contact-heading {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    margin-bottom: 32px;
  }

  .contact-cta-btn {
    font-size: clamp(0.875rem, 1vw, 1rem);
    padding: 8px 6px 8px 18px;
  }

  .contact-cta-arrow {
    width: 34px;
    height: 34px;
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .contact-info {
    font-size: clamp(0.875rem, 1vw, 1rem);
    margin: 1rem 0 2rem;
  }

  .tag_line {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-col-title {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
  }

  .footer-col a,
  .footer-col span {
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  }

  .ts-card.rating {
    width: 160px;
    padding: 20px 16px;
    min-height: 240px;
  }

  .ts-rating-num {
    font-size: clamp(2.5rem, 3vw, 3rem);
  }

  .ts-stars {
    gap: 2px;
  }

  .ts-star {
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  }

  .ts-card.img-quote {
    width: 220px;
  }

  .ts-card.text-lg {
    width: 260px;
    padding: 24px 20px;
  }

  .ts-text-body {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .ts-card-body {
    padding: 20px;
  }

  .ts-quote-text {
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  }

  .testi-nav-btn {
    padding: 6px 14px;
    font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  }

  .blog-card-title {
    font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  }

  .blog-card-body {
    padding: 16px 20px;
  }

  .blog-tag {
    font-size: clamp(0.5rem, 0.6vw, 0.625rem);
    padding: 3px 10px;
  }

  .portfolio-item-title {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }

  .portfolio-item-cat {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
  }

  .portfolio-more {
    font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  }

  .cs-hero-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .cs-hero-sub {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .cs-client-row {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .cs-client-divider {
    display: none;
  }

  .cs-stat-val {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
  }

  .cs-table thead th,
  .cs-table tbody td {
    padding: 10px 12px;
    font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  }

  .cs-table__key {
    min-width: 80px;
    font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  }

  .cs-blockquote {
    padding: 24px 20px;
  }

  .cs-blockquote p {
    font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  }

  .cs-outcome-stat {
    font-size: clamp(1.75rem, 2vw, 2rem);
  }

  .cs-outcome-title {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .cs-section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .cs-section-lead {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
  }

  .cs-cta-btn {
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    padding: 12px 24px;
  }

  .cs-cta-email {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .cs-img-placeholder {
    border-radius: 12px;
  }

  .cs-img-placeholder--hero {
    border-radius: 12px;
  }

  .cs-img-placeholder--wide {
    min-height: 200px;
  }

  .cs-img-placeholder--dark-bg {
    min-height: 200px;
  }

  .cs-img-placeholder__icon {
    font-size: clamp(1.5rem, 1.8vw, 1.75rem);
    margin-bottom: 8px;
  }

  .cs-img-placeholder__label {
    font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  }

  .cs-img-placeholder__hint {
    font-size: clamp(0.5rem, 0.6vw, 0.625rem);
  }

  .logos-row {
    gap: 16px;
  }

  .logo-item-text {
    font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  }

  .cases-archive__title {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
  }

  .cases-archive-item__title a {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }

  .friction_point .friction_grid .item__title,
  .system_feature .feature_grid .item__title {
    font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  }

  .friction_point .friction_grid p,
  .system_feature .feature_grid p {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
  }

  .system_feature h2 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  }

  .friction_point h2 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  }

  .blockquote_card p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }

  .blockquote_card cite {
    font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  }

  .dropdown-panel {
    top: 70px !important;
    max-height: calc(100vh - 70px);
    padding: 20px 16px 32px !important;
    border-radius: 12px;
  }

  .dd-item-title {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
  }

  .dd-item-desc {
    font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  }

  .tech-icon-badge {
    width: 56px;
    height: 56px;
  }

  .tech-icons {
    grid-template-columns: 1fr 1fr;
  }

  .dd-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

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

  .co-links {
    flex-direction: column;
  }

  .ins-articles {
    grid-template-columns: 1fr;
  }
}

/* Extra small devices (400px) */
@media (max-width: 400px) {
  .container {
    padding: 0 12px;
  }

  nav {
    padding: 8px 12px;
  }

  .cs-wrap {
    padding: 0 12px;
  }

  .cs-hero {
    padding: 80px 12px 0;
  }

  .hero-headline {
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
  }

  .nav-logo-text {
    font-size: clamp(18px, 0.8vw, 1rem);
  }

  .mobile-link {
    font-size: clamp(0.875rem, 1vw, 1.25rem);
  }

  .mobile-cta {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    padding: 10px 24px;
  }

  .ts-card.rating {
    width: 140px;
    padding: 16px 12px;
    min-height: 200px;
  }

  .ts-rating-num {
    font-size: clamp(1.75rem, 2vw, 2.25rem);
  }

  .ts-card.img-quote {
    width: 200px;
  }

  .ts-card.text-lg {
    width: 240px;
    padding: 20px 16px;
  }

  .ts-text-body {
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  }

  .contact-heading {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }

  .contact-cta-btn {
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
    padding: 6px 4px 6px 14px;
  }

  .contact-cta-arrow {
    width: 30px;
    height: 30px;
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  }

  .cs-hero-title {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  }

  .cs-stat-val {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  }
}

/* Landscape mode for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
  #mobile-menu {
    padding: 20px;
    justify-content: flex-start;
    padding-top: 60px;
  }

  .mobile-menu-inner {
    gap: 16px;
  }

  .mobile-link {
    font-size: clamp(0.875rem, 1vw, 1.125rem);
  }

  .mobile-cta {
    margin-top: 12px;
    padding: 10px 24px;
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  }

  #hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .cs-img-placeholder {
    min-height: 150px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .nav-btn:hover,
  .dd-item:hover,
  .ind-item:hover,
  .blog-card:hover,
  .portfolio-item:hover,
  .process-step:hover,
  .cs-outcome-card:hover {
    transform: none !important;
  }

  button,
  a,
  .dd-item,
  .ind-item,
  .service-item,
  .blog-card,
  .portfolio-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .portfolio-overlay {
    opacity: 1;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  }

  .portfolio-overlay span {
    transform: translateY(0);
  }

  .cs-outcome-card {
    transform: none !important;
  }
}

/* Print styles */
@media print {

  #nav-wrapper,
  #mobile-menu,
  .nav-mobile-toggle,
  .dropdown-panel,
  .hero-book-btn,
  .contact-cta-btn,
  .process-cta-btn,
  .mission-btn,
  .portfolio-overlay,
  .cs-cta-btn,
  .cs-cta-secondary,
  .testi-nav,
  .blog-more,
  .portfolio-more {
    display: none !important;
  }

  body {
    color: #000 !important;
    background: #fff !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  #hero-overlay {
    background: none !important;
  }

  .cs-hero {
    padding: 60px 0 !important;
    background: #fff !important;
  }

  .cs-hero-title {
    color: #000 !important;
  }

  .cs-section {
    padding: 40px 0 !important;
  }

  .cs-section--dark {
    background: #fff !important;
    color: #000 !important;
  }

  .cs-section--dark .cs-section-title--light {
    color: #000 !important;
  }

  .cs-section--dark .cs-section-lead--muted {
    color: #333 !important;
  }

  .cs-img-placeholder {
    border: 1px solid #ddd !important;
    background: #f5f5f5 !important;
  }

  .cs-img-placeholder--hero {
    border: 1px solid #ddd !important;
    background: #f5f5f5 !important;
  }

  .cs-img-placeholder--wide {
    border: 1px solid #ddd !important;
    background: #f5f5f5 !important;
  }

  .cs-img-placeholder--dark-bg {
    border: 1px solid #ddd !important;
    background: #f5f5f5 !important;
  }
}

.toggle_dark {
  color: var(--dark);
}

.mb-0 {
  margin-bottom: 0px;
}

.progress_bar {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.progress_bar .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.progress_bar .circle {
  position: relative;
  width: 140px;
  height: 140px;
}

.progress_bar .circle svg {
  transform: rotate(-90deg);
  width: 140px;
  height: 140px;
}

.progress_bar .circle-bg {
  fill: none;
  stroke: #d7dde6;
  stroke-width: 4;
}

.progress_bar .circle-progress {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 314.159;
  stroke-dashoffset: 314.159;
  transition: stroke-dashoffset 0.1s linear;
}

.progress_bar .circle-progress.blue {
  stroke: var(--orange);
}

.progress_bar .circle-progress.green {
  stroke: var(--orange);
}

.progress_bar .circle-progress.purple {
  stroke: var(--orange);
}

.progress_bar .circle-progress.orange {
  stroke: var(--orange);
}

.progress_bar .value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 2rem);
  color: #0b1a33;
}

.progress_bar .value small {
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  font-weight: 400;
  color: #6b7d9c;
}

.progress_bar .label {
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #1e2a44;
  text-align: center;
  line-height: 1.3;
}

.progress_bar .label span {
  display: block;
  font-weight: 400;
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  color: #6b7d9c;
}

/* ═══════════════════════════════════════════════════
   ABOUT PAGE — additional styles (links style.css)
═══════════════════════════════════════════════════ */

/* ── HERO ── */
.ab-hero {
  padding-top: 80px;
  background: #fff;
  color: #111827;
}

.ab-hero-content {
  padding-bottom: 40px;
}

.ab-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #fff7f5;
  border: 1px solid #ffe0d4;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ab-hero-heading {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #111827;
  max-width: 760px;
}

.ab-hero-highlight {
  color: var(--green);
}

.ab-hero-photo-wrap {
  padding-bottom: 0;
}

.ab-hero-photo {
  position: relative;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  max-height: 540px;
}

.ab-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.ab-badge-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.ab-badge-label {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TICKER ── */
.ab-ticker-wrap {
  background: var(--green);
  overflow: hidden;
  padding: 16px 0;
}

.ab-ticker {
  white-space: nowrap;
}

.ab-ticker-track {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ab-ticker-item {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 24px;
}

.ab-ticker-item strong {
  font-weight: 800;
  color: #fff;
}

.ab-ticker-sep {
  display: inline-block;
  color: rgba(255, 255, 255, 0.35);
  font-size: clamp(0.375rem, 0.5vw, 0.5rem);
  vertical-align: middle;
}

/* ── INTRO ── */
.ab-intro {
  padding: 50px 0;
  background: #fff;
}

.ab-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ab-intro-eyebrow {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.ab-intro-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.875rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111827;
}

.ab-intro-heading span {
  color: var(--orange);
}

.ab-intro-body {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 20px;
}

.ab-intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.ab-intro-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ── SHARED SECTION HEADING ── */
.ab-section-heading {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 16px;
}

/* ── CULTURE ── */
.ab-culture {
  padding: 96px 0;
  background: var(--gray-bg2);
  border-top: 1px solid #f3f4f6;
}

.ab-culture-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.ab-culture-sub {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  max-width: 560px;
  line-height: 1.65;
}

.ab-culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 64px;
}

.ab-culture-img {
  border-radius: 20px;
  overflow: hidden;
  background: #e5e7eb;
}

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

.ab-culture-img:hover img {
  transform: scale(1.04);
}

.ab-ci-tall {
  grid-row: span 2;
  min-height: 420px;
}

.ab-ci-sm {
  min-height: 200px;
}

.ab-ci-wide {
  grid-column: span 2;
  min-height: 200px;
}

/* Values row */
.ab-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ab-value-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ab-value-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.ab-value-icon {
  width: 48px;
  height: 48px;
  background: #fff7f5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.ab-value-title {
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.ab-value-desc {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  line-height: 1.6;
}

/* ── WHAT WE BUILD ── */
.ab-build {
  padding: 96px 0;
  background: var(--dark, #19191A);
}

.ab-build-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.ab-build-sub {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  max-width: 380px;
  line-height: 1.6;
  flex: 1;
  padding-left: 40px;
}

.ab-build-more {
  color: var(--orange);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.ab-build-more:hover {
  opacity: 0.8;
}

.ab-build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ab-build-card {
  border-radius: 20px;
  overflow: hidden;
  background: #25262b;
  transition: transform 0.3s;
}

.ab-build-card:hover {
  transform: translateY(-6px);
}

.ab-build-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.ab-build-card:hover .ab-build-card-img img {
  transform: scale(1.05);
}

.ab-build-card-body {
  padding: 24px;
}

.ab-build-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.ab-build-tag--orange {
  background: rgba(255, 71, 10, 0.15);
  color: var(--orange);
}

.ab-build-tag--green {
  background: rgba(0, 93, 101, 0.2);
  color: var(--green-light);
}

.ab-build-card-title {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ab-build-card-desc {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── AWARDS ── */
.ab-awards {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}

.ab-awards-sub {
  text-align: center;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  margin-bottom: 64px;
}

.ab-awards-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.ab-award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  background: #fafafa;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ab-award-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.ab-award-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.ab-award-platform {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.ab-award-detail {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  color: #6b7280;
  margin-bottom: 6px;
}

.ab-award-stars {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #f59e0b;
  font-weight: 600;
}

.ab-award-stars span {
  color: #111827;
  margin-left: 4px;
}

.ab-awards-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  background: #fafafa;
}

.ab-astat {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
}

.ab-astat-num {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.ab-astat-label {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  font-weight: 500;
}

.ab-astat-sep {
  width: 1px;
  height: 80px;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* ── TEAM ── */
.ab-team {
  padding: 96px 0;
  background: var(--gray-bg2);
  border-top: 1px solid #f3f4f6;
}

.ab-team-header {
  text-align: center;
  margin-bottom: 56px;
}

.ab-team-sub {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  margin-top: 8px;
}

.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 20px;
}

.ab-team-card {
  text-align: center;
}

.ab-team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #e5e7eb;
  transition: transform 0.3s;
}

.ab-team-card:hover .ab-team-photo {
  transform: scale(1.03);
}

.ab-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.ab-team-card:hover .ab-team-photo img {
  transform: scale(1.06);
}

.ab-team-name {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.ab-team-role {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #6b7280;
}

.ab-team-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

.ab-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.ab-team-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .ab-culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-ci-tall {
    grid-row: span 1;
    min-height: 280px;
  }

  .ab-ci-wide {
    grid-column: span 2;
  }

  .ab-values-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .ab-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-build-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-awards-logos {
    grid-template-columns: 1fr 1fr;
  }

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

  .ab-awards-stats {
    flex-wrap: wrap;
  }

  .ab-astat-sep {
    display: none;
  }

  .ab-astat {
    min-width: 50%;
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 640px) {
  .ab-hero-heading {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }

  .ab-build-grid {
    grid-template-columns: 1fr;
  }

  .ab-awards-logos {
    grid-template-columns: 1fr;
  }

  .ab-culture-grid {
    grid-template-columns: 1fr;
  }

  .ab-ci-wide {
    grid-column: span 1;
  }

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

  .ab-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-build-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ab-build-sub {
    padding-left: 0;
  }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — styles (supplements style.css)
═══════════════════════════════════════════════════ */

/* ── MAIN SECTION ── */
.ct-main {
  padding-top: 100px;
  padding-bottom: 80px;
  background: #fff;
  color: #111827;

  @media (min-width: 1350px) {
    padding-top: 148px;
  }
}

.ct-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  align-items: start;
}

/* ── LEFT: FORM ── */
.ct-heading {
  font-size: clamp(1.625rem, 3vw, 2rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ct-sub {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-label {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 600;
  color: #374151;
}

.ct-input {
  padding: 13px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-family: "Hanken Grotesk", sans-serif;
  color: #111827;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  width: 100%;
}

.ct-input::placeholder {
  color: #c4c8d0;
}

.ct-input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
}

/* Select */
.ct-select-wrap {
  position: relative;
}

.ct-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  color: #c4c8d0;
}

.ct-select.has-value {
  color: #111827;
}

.ct-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #9ca3af;
  pointer-events: none;
}

/* Textarea */
.ct-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Form actions row */
.ct-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.ct-attach-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-attach-btn:hover {
  border-color: #111827;
  background: #f9fafb;
}

.ct-send-btn {
  padding: 12px 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  font-family: "Hanken Grotesk", sans-serif;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}

.ct-send-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Success */
.ct-success {
  display: none;
  padding: 32px 0;
}

.ct-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.ct-success-title {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  font-family: "Hanken Grotesk", sans-serif;
}

.ct-success-body {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #6b7280;
  line-height: 1.65;
  max-width: 320px;
}

/* ── RIGHT: INFO ── */
.ct-right {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ct-info-block {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 40px;
}

.ct-info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ct-info-heading {
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

/* Email row */
.ct-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ct-email-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.18s;
}

.ct-email-link:hover {
  opacity: 0.75;
}

.ct-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}

.ct-copy-btn:hover,
.ct-copy-btn.copied {
  color: var(--green);
  background: #f0fdf9;
}

/* Phones */
.ct-phones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ct-phone-country {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  margin-bottom: 4px;
}

.ct-phone-num {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: color 0.18s;
}

.ct-phone-num:hover {
  color: var(--orange);
}

/* Address */
.ct-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ct-address-col {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #374151;
  line-height: 1.75;
}

/* Social */
.ct-social-row {
  display: flex;
  gap: 12px;
}

.ct-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: #374151;
  text-decoration: none;
  transition: all 0.18s;
}

.ct-social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff7f5;
  transform: translateY(-2px);
}

/* ── MAP ── */
.ct-map {
  width: 100%;
  height: 480px;
  background: #e5e7eb;
}

.ct-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .ct-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ct-phones-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ct-phones-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ct-address-grid {
    grid-template-columns: 1fr;
  }

  .ct-form-actions {
    flex-wrap: wrap;
  }

  .ct-map {
    height: 300px;
  }
}

/* ═══════════════════════════════════════════════════
   BLOG PAGE — styles (supplements style.css)
═══════════════════════════════════════════════════ */

/* ── PAGE HEADER ── */
.bl-header {
  padding-top: 140px;
  padding-bottom: 40px;
  background: #F5F5F6;
}

.bl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #9ca3af;
  margin-bottom: 20px;
}

.bl-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.18s;
}

.bl-breadcrumb a:hover {
  color: var(--orange);
}

.bl-title {
  font-size: clamp(2rem, 5vw, 4.75rem);
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bl-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  color: #6b7280;
  line-height: 1.7;
  max-width: 840px;
  margin-bottom: 36px;
}

/* Search */
.bl-search-wrap {
  margin-bottom: 28px;
}

.bl-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 320px;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fafafa;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.bl-search:focus-within {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
  background: #fff;
}

.bl-search-icon {
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  color: #9ca3af;
  flex-shrink: 0;
}

.bl-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-family: "Hanken Grotesk", sans-serif;
  color: #111827;
  flex: 1;
}

.bl-search-input::placeholder {
  color: #c4c8d0;
}

.bl-search-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #9ca3af;
  padding: 0;
  line-height: 1;
}

/* Category tabs */
.bl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bl-tab {
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  transition: all 0.18s;
}

.bl-tab:hover {
  border-color: #111827;
  color: #111827;
}

.bl-tab.active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

/* ── SHARED ── */
.bl-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  font-family: "Hanken Grotesk", sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bl-count {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: var(--orange);
}

.bl-see-all {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  transition: all 0.18s;
}

.bl-see-all:hover {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* Article tag chips */
.bl-article-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fff7f5;
  color: var(--orange);
  border: 1px solid #ffe0d4;
  margin-bottom: 10px;
}

.bl-tag--green {
  background: #f0fdf9;
  color: var(--green);
  border-color: #c6f0e4;
}

.bl-tag--purple {
  background: #f5f3ff;
  color: #7c3aed;
  border-color: #ddd6fe;
}

/* Author */
.bl-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.bl-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bl-author-name {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.bl-author-role {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #9ca3af;
}

/* ── FEATURED POST ── */
.bl-featured-section {
  padding: 56px 0;
  background: #fff;
}

.bl-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
}

.bl-featured-card:hover {
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.bl-featured-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.bl-featured-meta {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #9ca3af;
  margin-bottom: 14px;
}

.bl-featured-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.18s;
}

.bl-featured-card:hover .bl-featured-heading {
  color: var(--green);
}

.bl-featured-excerpt {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 4px;
}

.bl-find-out {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 10px 20px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 600;
  color: #374151;
  align-self: flex-start;
  transition: background 0.18s, color 0.18s;
}

.bl-featured-card:hover .bl-find-out {
  background: var(--orange);
  color: #fff;
}

.bl-featured-img {
  overflow: hidden;
  background: #e5e7eb;
  min-height: 360px;
}

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

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

/* ── ROWS ── */
.bl-row-section {
  padding: 64px 0;
  background: #F5F5F6;
}

.bl-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.bl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* ── ARTICLE CARD ── */
.bl-card {
  text-decoration: none;
  display: flex;
  align-items: start;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
}

.bl-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 12px;
  margin-bottom: 18px;
}

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

.bl-card:hover .bl-card-img img {
  transform: scale(1.06);
}

.bl-card-title {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.18s;
}

.bl-card:hover .bl-card-title {
  color: var(--green);
}

.bl-card-excerpt {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
}

/* ── CTA BANNER ── */
.bl-cta-banner {
  position: relative;
  background: #111827;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.bl-cta-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bl-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.bl-b1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
}

.bl-b2 {
  width: 200px;
  height: 200px;
  top: 20px;
  left: 200px;
  background: rgba(255, 255, 255, 0.03);
}

.bl-b3 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
}

.bl-b4 {
  width: 150px;
  height: 150px;
  bottom: -40px;
  left: 30%;
}

.bl-b5 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  right: 15%;
  background: rgba(255, 255, 255, 0.03);
}

.bl-b6 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bl-cta-inner {
  position: relative;
  z-index: 1;
}

.bl-cta-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.bl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Hanken Grotesk", sans-serif;
  transition: background 0.18s, transform 0.18s;
}

.bl-cta-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.04);
}

/* ── NEWSLETTER ── */
.bl-newsletter {
  padding: 72px 0;
  background: var(--gray-bg);
  border-top: 1px solid #f3f4f6;
}

.bl-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.bl-newsletter-heading {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.bl-newsletter-sub {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  max-width: 380px;
  line-height: 1.65;
}

.bl-newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bl-nl-input {
  padding: 12px 20px;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-family: "Hanken Grotesk", sans-serif;
  color: #111827;
  background: #fff;
  outline: none;
  width: 280px;
  transition: border-color 0.18s;
}

.bl-nl-input::placeholder {
  color: #c4c8d0;
}

.bl-nl-input:focus {
  border-color: #111827;
}

.bl-nl-btn {
  padding: 12px 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  font-family: "Hanken Grotesk", sans-serif;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}

.bl-nl-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .bl-featured-card {
    grid-template-columns: 1fr;
  }

  .bl-featured-img {
    min-height: 260px;
    order: -1;
  }

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

@media (max-width: 640px) {
  .bl-cards-grid {
    grid-template-columns: 1fr;
  }

  .bl-search {
    width: 100%;
  }

  .bl-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bl-nl-input {
    width: 100%;
  }

  .bl-newsletter-form {
    width: 100%;
  }
}

.bl_content {
  padding: 10px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

/* ═══════════════════════════════════════════════════
   BLOG DETAIL PAGE — supplements style.css + blog.css tag styles
═══════════════════════════════════════════════════ */

/* Re-use tag styles from blog page */
.bd-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #f0fdf9;
  color: var(--green);
  border: 1px solid #c6f0e4;
}

.bd-tag--orange {
  background: #fff7f5;
  color: var(--orange);
  border-color: #ffe0d4;
}

.bd-tag--purple {
  background: #f5f3ff;
  color: #7c3aed;
  border-color: #ddd6fe;
}

/* ── HEADER ── */
.bd-header-wrap {
  padding-top: 140px;
  padding-bottom: 40px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.bd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #9ca3af;
  margin-bottom: 24px;
  padding: 0;
  justify-content: start;
}

.bd-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.18s;
}

.bd-breadcrumb a:hover {
  color: var(--orange);
}

.bd-breadcrumb iconify-icon {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.bd-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.bd-header-content {
  flex: 1;
  min-width: 0;
}

.bd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.bd-title {
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}

.bd-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.bd-author-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-author-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.bd-author-name {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.bd-author-role {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  color: #9ca3af;
}

.bd-meta-divider {
  width: 1px;
  height: 24px;
  background: #e5e7eb;
}

.bd-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #6b7280;
}

.bd-meta-item iconify-icon {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #9ca3af;
}

/* Share col */
.bd-share-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.bd-share-label {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bd-share-btns {
  display: flex;
  gap: 8px;
}

.bd-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #374151;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s;
}

.bd-share-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff7f5;
}

/* ── HERO IMAGE ── */
.bd-hero {
  background: #fff;
  padding: 32px 0 0;
}

.bd-hero-img {
  border-radius: 20px;
  overflow: hidden;
  max-height: 480px;
  background: #e5e7eb;
}

.bd-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 480px;
}

/* ── BODY LAYOUT ── */
.bd-body-wrap {
  background: #fff;
  padding: 56px 0 80px;


  p,
  table {
    a {
      text-decoration: underline;
      color: var(--green);
    }
  }

  b {
    color: var(--orange);
  }

  .mission-btn {
    color: var(--body);
    text-decoration: none;
  }
}

.bd-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: start;
}

/* ── ARTICLE TYPOGRAPHY ── */
.bd-article {
  min-width: 0;
}

.bd-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  color: #374151;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f3f4f6;
}

.bd-h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 52px 0 16px;
  padding-top: 8px;
  font-family: "Hanken Grotesk", sans-serif;
}

.bd-h2:first-of-type {
  margin-top: 0;
}

.bd-h3 {
  font-size: clamp(1.0625rem, 1.8vw, 1.375rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 36px 0 12px;
  font-family: "Hanken Grotesk", sans-serif;
}

.bd-article p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 18px;
}

.bd-list {
  margin: 8px 0 20px 0;
  padding-left: 24px;
  list-style: none;
}

.bd-list li {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 10px;
  position: relative;
  padding-left: 4px;
}

.bd-list li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Blockquote */
.bd-blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  background: #fff7f5;
  border-radius: 0 12px 12px 0;
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  margin: 32px 0;
}

/* Inline code */
code {
  background: #f3f4f6;
  color: #dc2626;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-family: "SF Mono", "Fira Code", monospace;
}

/* Tools block */
.bd-tools-block {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.bd-tools-label {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px !important;
}

.bd-tools-list {
  padding-left: 20px;
  list-style: disc;
  margin: 0;
}

.bd-tools-list li {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Callout boxes */
.bd-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  margin: 28px 0;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.65;
  color: #374151;
}

.bd-callout--tip {
  background: #fefce8;
  border: 1px solid #fde68a;
}

.bd-callout-icon {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  color: #d97706;
  flex-shrink: 0;
  margin-top: 1px;
}

.bd-callout--cta {
  background: #f0fdf9;
  border: 1px solid #c6f0e4;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bd-callout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.18s;
}

.bd-callout-btn:hover {
  background: #004d55;
}

/* Image block */
.bd-image-block {
  margin: 32px 0;
  border-radius: 16px;
  overflow: hidden;
}

.bd-image-block img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.bd-image-caption {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem) !important;
  color: #9ca3af !important;
  text-align: center;
  margin-top: 10px !important;
  font-style: italic;
}

/* Case card */
.bd-case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  margin: 28px 0;
  text-decoration: none;
}

.bd-case-card-img {
  overflow: hidden;
  background: #e5e7eb;
}

.bd-case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
}

.bd-case-card-body {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fafafa;
  align-items: start;
}

.bd-case-title {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: #111827;
  font-family: "Hanken Grotesk", sans-serif;
  margin: 4px 0;
}

.bd-case-desc {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  line-height: 1.65;
}

.bd-case-link {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.18s;
}

.bd-case-link:hover {
  opacity: 0.75;
}

/* Author card */
.bd-author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  margin-top: 56px;
}

.bd-author-card-ava {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bd-author-card-name {
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.bd-author-card-role {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #9ca3af;
  margin-bottom: 10px;
}

.bd-author-card-bio {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 14px;
}

.bd-author-card-socials {
  display: flex;
  gap: 10px;
}

.bd-author-card-socials a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #374151;
  text-decoration: none;
  transition: all 0.18s;
}

.bd-author-card-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── SIDEBAR ── */
.bd-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bd-toc {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
}

.bd-toc-label {
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.bd-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: start;
  justify-content: start;
  padding: 0;
}

.bd-toc-link {
  display: block;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 1.4;
  transition: all 0.15s;
  border-left: 2px solid transparent;
}

.bd-toc-link:hover {
  color: #111827;
  background: #fff;
}

.bd-toc-link.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: #fff;
}

.bd-toc-sub {
  padding-left: 12px;
  margin: 0;
}

.bd-toc-sub-link {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.8vw, 0.78125rem);
  padding: 4px 8px;
}

/* Sidebar CTA */
.bd-sidebar-cta {
  background: var(--dark);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}

.bd-sidebar-cta-title {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.bd-sidebar-cta-body {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}

.bd-sidebar-cta-btn {
  display: block;
  text-align: center;
  padding: 11px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
}

.bd-sidebar-cta-btn:hover {
  background: var(--orange-dark);
}

/* ── RELATED ARTICLES ── */
.bd-related {
  background: #f9fafb;
  padding: 72px 0;
  border-top: 1px solid #f3f4f6;
}

.bd-related-title {
  font-size: clamp(1.375rem, 2.5vw, 2.125rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.bd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bd-rel-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}

.bd-rel-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.bd-rel-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e5e7eb;
}

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

.bd-rel-card:hover .bd-rel-card-img img {
  transform: scale(1.06);
}

.bd-rel-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}

.bd-rel-card-title {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: #111827;
  line-height: 1.35;
  transition: color 0.18s;
}

.bd-rel-card:hover .bd-rel-card-title {
  color: var(--green);
}

.bd-rel-card-meta {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #9ca3af;
}

/* ── CTA BANNER (re-use from blog.css naming) ── */
.bl-cta-banner {
  position: relative;
  background: #111827;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.bl-cta-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bl-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.bl-b1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
}

.bl-b2 {
  width: 200px;
  height: 200px;
  top: 20px;
  left: 200px;
  background: rgba(255, 255, 255, 0.03);
}

.bl-b3 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
}

.bl-b4 {
  width: 150px;
  height: 150px;
  bottom: -40px;
  left: 30%;
}

.bl-cta-inner {
  position: relative;
  z-index: 1;
}

.bl-cta-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.bl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Hanken Grotesk", sans-serif;
  transition: background 0.18s, transform 0.18s;
}

.bl-cta-btn:hover {
  background: var(--orange-dark);
  transform: scale(1.04);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .bd-layout {
    grid-template-columns: 1fr 260px;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .bd-layout {
    grid-template-columns: 1fr;
  }

  .bd-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bd-toc {
    flex: 1;
    min-width: 260px;
  }

  .bd-sidebar-cta {
    flex: 1;
    min-width: 260px;
  }

  .bd-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bd-case-card {
    grid-template-columns: 1fr;
  }

  .bd-share-col {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 580px) {
  .bd-related-grid {
    grid-template-columns: 1fr;
  }

  .bd-author-card {
    flex-direction: column;
  }

  .bd-meta-row {
    gap: 12px;
  }

  .bd-meta-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   WEB DEVELOPMENT SERVICES PAGE — supplements style.css
═══════════════════════════════════════════════════ */

/* ── SHARED ── */
.wd-section-eyebrow {
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.wd-section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.625rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0;
}

.wd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  text-decoration: none;
  font-family: "Hanken Grotesk", sans-serif;
  transition: background 0.18s, transform 0.18s;
}

.wd-btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.wd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  font-family: "Hanken Grotesk", sans-serif;
  transition: all 0.18s;
}

.wd-btn-ghost:hover {
  border-color: #111827;
  color: #111827;
}

/* ── HERO ── */
.wd-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.wd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #9ca3af;
  margin-bottom: 32px;
}

.wd-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.18s;
}

.wd-breadcrumb a:hover {
  color: var(--orange);
}

.wd-breadcrumb iconify-icon {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.wd-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: #fff7f5;
  border: 1px solid #ffe0d4;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

.wd-hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.wd-hero-sub {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.wd-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.wd-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid #f3f4f6;
  flex-wrap: wrap;
}

.wd-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
}

.wd-stat-num {
  display: block;
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  font-family: "Hanken Grotesk", sans-serif;
}

.wd-stat-label {
  display: block;
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  color: #9ca3af;
  font-weight: 500;
}

.wd-hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.wd-hero-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.wd-hero-media-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #111827;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ── WHY ── */
.wd-why {
  padding: 96px 0;
  background: #fff;
}

.wd-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wd-why-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.1);
}

.wd-why-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.wd-why-intro {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  line-height: 1.75;
  margin: 16px 0 32px;
}

.wd-why-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wd-why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #fafafa;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.wd-why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 71, 10, 0.07);
}

.wd-why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff7f5;
  border: 1px solid #ffe0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  color: var(--orange);
  flex-shrink: 0;
}

.wd-why-card-title {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.wd-why-card-desc {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: #6b7280;
  line-height: 1.65;
}

/* ── CAPABILITIES ── */
.wd-capabilities {
  padding: 96px 0;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
}

.wd-cap-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.wd-cap-sub {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #6b7280;
  max-width: 400px;
  line-height: 1.65;
  text-align: right;
}

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

.wd-cap-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.18s;
}

.wd-cap-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #e5e7eb;
}

.wd-cap-icon {
  width: 52px;
  height: 52px;
  background: #fff7f5;
  border: 1px solid #ffe0d4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  color: var(--orange);
  margin-bottom: 20px;
}

.wd-cap-title {
  font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

.wd-cap-desc {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #6b7280;
  line-height: 1.7;
}

/* ── CASE STUDIES ── */
.wd-cases {
  padding: 96px 0;
  background: #fff;
}

.wd-cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.wd-cases-sub {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #6b7280;
  margin-top: 10px;
  max-width: 420px;
  line-height: 1.65;
}

.wd-see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.18s;
}

.wd-see-all-btn:hover {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.wd-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
}

.wd-case-card {
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #f3f4f6;
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}

.wd-case-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.wd-case-large {
  grid-row: span 2;
}

.wd-case-img {
  overflow: hidden;
  background: #e5e7eb;
}

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

.wd-case-large .wd-case-img {
  flex: 1;
  min-height: 300px;
}

.wd-case-card:not(.wd-case-large) .wd-case-img {
  height: 200px;
}

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

.wd-case-purple .wd-case-img {
  background: #1e1b4b;
}

.wd-case-body {
  padding: 24px 28px 28px;
}

.wd-case-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.wd-case-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wd-case-title {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.18s;
}

.wd-case-card:hover .wd-case-title {
  color: var(--green);
}

.wd-case-desc {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px;
}

.wd-case-link {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: var(--orange);
}

/* ── TESTIMONIAL ── */
.wd-testimonial {
  padding: 96px 0;
  background: #111827;
}

.wd-testimonial-inner {
  max-width: 800px;
  text-align: center;
  margin: auto;
}

.wd-testimonial-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.wd-t-logo {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: #fff;
}

.wd-t-logo-text {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 700;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: -0.01em;
  padding: 10px;
}

.wd-t-logo-sep {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.3);
}

.wd-testimonial-quote {
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.wd-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wd-t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.wd-t-name {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.wd-t-role {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.5);
}

.wd-t-stars {
  display: flex;
  gap: 2px;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

/* ── PROCESS ── */
.wd-process {
  padding: 96px 0;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
}

.wd-process-header {
  margin-bottom: 52px;
}

.wd-process-sub {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  max-width: 560px;
  line-height: 1.7;
  margin: 14px 0 0;
}

/* 3-column card grid */
.wd-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .wd-process-grid {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .wd-process-grid {
    gap: 14px;
  }
}

.wd-pcard {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.22s, border-color 0.18s;
}

.wd-pcard:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
  border-color: #e5e7eb;
}

/* Dark accent card (step 6) */
.wd-pcard--accent {
  background: var(--dark);
  border-color: var(--dark);
}

.wd-pcard--accent:hover {
  background: var(--green);
  border-color: var(--green);
}

.wd-pcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.wd-pcard-num {
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 800;
  color: #d1d5db;
  letter-spacing: 0.05em;
  font-family: "Hanken Grotesk", sans-serif;
}

.wd-pcard--accent .wd-pcard-num {
  color: rgba(255, 255, 255, 0.25);
}

.wd-pcard-dur {
  padding: 3px 10px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 700;
  color: #9ca3af;
}

.wd-pcard-dur--light {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

.wd-pcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff7f5;
  border: 1px solid #ffe0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--orange);
  margin-bottom: 4px;
}

.wd-pcard-icon--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.wd-pcard-title {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.wd-pcard-title--light {
  color: #fff;
}

.wd-pcard-desc {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
}

.wd-pcard-desc--light {
  color: rgba(255, 255, 255, 0.55);
}

.wd-pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.wd-pcard-tags span {
  padding: 3px 10px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 999px;
  font-size: clamp(0.625rem, 0.7vw, 0.6875rem);
  font-weight: 600;
  color: #6b7280;
}

.wd-pcard-tags--light span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}

/* ── TECHNOLOGIES ── */
.wd-tech {
  padding: 0;
  background: transparent;
}

.wd-tech-inner {
  background: var(--dark);
  padding: 96px 0;
}

.wd-eyebrow-light {
  color: var(--orange) !important;
}

.wd-title-light {
  color: #fff !important;
}

.wd-tech-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.wd-tech-sub {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: 400px;
}

/* Tab buttons */
.wd-tech-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-self: flex-end;
}

.wd-tech-tab {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  font-size: clamp(0.75rem, 0.8vw, 0.8125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  transition: all 0.18s;
}

.wd-tech-tab:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.wd-tech-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Icon grid */
.wd-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.wd-ti {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #FFF;
  cursor: default;
  transition: all 0.22s;
}

.wd-ti:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--green);
  transform: translateY(-3px);
}

.wd-ti:hover span {
  color: var(--body);
}

.wd-ti-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.wd-ti-icon iconify-icon {
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
}

.wd-ti span {
  font-size: clamp(0.625rem, 0.7vw, 0.75rem);
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

/* ── FAQ ── */
.wd-faq {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}

/* Centered heading block */
.wd-faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.wd-faq-sub {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #6b7280;
  margin-top: 12px;
}

.wd-faq-sub a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.wd-faq-sub a:hover {
  text-decoration: underline;
}

/* Two-column FAQ grid */
.wd-faq-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 56px;
  align-items: start;
}

@media (max-width: 768px) {
  .wd-faq-cols {
    gap: 0;
  }

  .wd-faq-col:first-child {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 8px;
  }
}

.wd-faq-col {
  display: flex;
  flex-direction: column;
}

.wd-faq-item {
  border-bottom: 1px solid #f3f4f6;
}

.wd-faq-item:first-child {
  border-top: 1px solid #f3f4f6;
}

.wd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  transition: color 0.18s;
}

.wd-faq-q:hover {
  color: var(--orange);
}

.wd-faq-item.open .wd-faq-q {
  color: var(--orange);
}

/* CSS + / × indicator — no Iconify, no click-block issue */
.wd-faq-plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.18s, background 0.18s, transform 0.3s;
}

.wd-faq-plus::before,
.wd-faq-plus::after {
  content: "";
  position: absolute;
  background: #9ca3af;
  border-radius: 2px;
  transition: opacity 0.2s, background 0.18s, transform 0.3s;
}

/* Horizontal bar */
.wd-faq-plus::before {
  width: 10px;
  height: 1.5px;
}

/* Vertical bar */
.wd-faq-plus::after {
  width: 1.5px;
  height: 10px;
}

.wd-faq-item.open .wd-faq-plus {
  border-color: var(--orange);
  background: #fff7f5;
  transform: rotate(45deg);
}

.wd-faq-item.open .wd-faq-plus::before,
.wd-faq-item.open .wd-faq-plus::after {
  background: var(--orange);
}

.wd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

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

.wd-faq-a p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ── FINAL CTA ── */
.wd-final-cta {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

.wd-final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wd-final-cta-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wd-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.wd-b1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
}

.wd-b2 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 5%;
}

.wd-b3 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 40%;
}

.wd-final-cta-title {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.wd-final-cta-sub {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.wd-final-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.wd-btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  font-family: "Hanken Grotesk", sans-serif;
}

.wd-btn-primary-light:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.wd-btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.18s;
  font-family: "Hanken Grotesk", sans-serif;
}

.wd-btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {

  .wd-hero-layout,
  .wd-why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wd-hero-media {
    order: -1;
  }

  .wd-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wd-cases-grid {
    grid-template-columns: 1fr;
  }

  .wd-case-large {
    grid-row: span 1;
  }

  .wd-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .wd-cap-grid {
    grid-template-columns: 1fr;
  }

  .wd-step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .wd-step-num {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
  }

  .wd-tech-icon {
    min-width: 68px;
    padding: 14px 14px 12px;
  }
}

@media (max-width: 560px) {
  .wd-cap-header {
    flex-direction: column;
  }

  .wd-cap-sub {
    text-align: left;
  }

  .wd-hero-stats {
    gap: 16px;
  }

  .wd-hero-stat-divider {
    display: none;
  }
}

.table-bordered {
  width: 100%;
  border: 1px solid #000;
  color: #000;
  border-spacing: 0px;
  text-align: center;
  margin-bottom: 10px;

  th {
    padding: 10px;
    border-right: 1px solid #000;

    &:last-child {
      border-right: 0px;
    }
  }

  td {
    padding: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;

    &:last-child {
      border-right: 0px;
    }
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.blog_points {
  padding: 0 0 0 18px;

  li {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #374151;
    line-height: 1.8;
    margin-bottom: 18px;
  }
}

.blog_img {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    padding: 14px;
    border: 2px solid #ededed;
    border-radius: 4px;
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .bd-header-inner {
    flex-direction: column;
  }

  .bd-header-wrap,
  .wd-hero {
    padding-top: 80px;
  }
}