/* ============================================================
   HOME PAGE STYLES
   Apple-inspired, generous whitespace, modern motion
   ============================================================ */

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__title {
  margin: var(--space-md) 0;
  max-width: 600px;
}

.hero__subtitle {
  color: var(--grey-600);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero__reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--grey-600);
}

.hero__stars {
  color: #f5a623;
  letter-spacing: 2px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* --- Glassmorphic Scene --- */
.glass-scene {
  position: relative;
  width: 100%;
  min-height: 480px;
  perspective: 1200px;
  overflow: visible;
}

/* Ambient orbs */
.glass-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.glass-orb--1 {
  width: 350px;
  height: 350px;
  top: -60px;
  right: -80px;
  background: radial-gradient(circle, rgba(68,115,239,0.18) 0%, transparent 70%);
  animation: float-slow 18s ease-in-out infinite;
}

.glass-orb--2 {
  width: 250px;
  height: 250px;
  bottom: -40px;
  left: -60px;
  background: radial-gradient(circle, rgba(76,234,137,0.14) 0%, transparent 70%);
  animation: float-slow 22s ease-in-out infinite reverse;
}

.glass-orb--3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(110,87,255,0.1) 0%, transparent 70%);
  animation: float-slow 25s ease-in-out infinite;
}

/* Glass Panel Base */
.glass-panel {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.5s var(--ease-out);
}

.glass-panel:hover {
  transform: translateY(-4px) !important;
}

/* Panel header */
.gp-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.4);
}

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

.gp-dot--red { background: #ef4444; }
.gp-dot--yellow { background: #f5a623; }
.gp-dot--green { background: #4cea89; }

.gp-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-600);
  margin-left: 6px;
}

.gp-badge {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-cta);
  background: rgba(76, 234, 137, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
}

.gp-body {
  padding: 14px 16px;
}

/* --- Back Panel: Activity Feed --- */
.glass-panel--back {
  width: 340px;
  top: 0;
  right: 0;
  z-index: 1;
  transform: rotate(2deg) translateZ(-40px);
}

.gp-feed-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.75rem;
  color: var(--grey-600);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.gp-feed-row:last-child { border-bottom: none; }

.gp-feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gp-feed-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-feed-time {
  color: var(--grey-400);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* --- Middle Panel: Metrics --- */
.glass-panel--mid {
  width: 360px;
  top: 40px;
  left: 20px;
  z-index: 2;
  transform: rotate(-1deg) translateZ(-20px);
}

.gp-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gp-metric__num {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
}

.gp-metric__label {
  font-size: 0.75rem;
  color: var(--grey-600);
  margin-bottom: 4px;
}

.gp-metric__bar {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.gp-metric__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-sky));
  border-radius: 4px;
  transition: width 1.5s var(--ease-out);
}

.gp-metric__fill--teal {
  background: linear-gradient(90deg, var(--teal), #6dd5db);
}

.gp-metric__fill--green {
  background: linear-gradient(90deg, #2a9d5c, var(--green-cta));
}

/* --- Front Panel: Workflows --- */
.glass-panel--front {
  width: 380px;
  bottom: 0;
  left: 40px;
  z-index: 3;
  transform: rotate(0.5deg);
  background: rgba(255, 255, 255, 0.75);
}

.gp-workflow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gp-workflow:last-child { border-bottom: none; }

.gp-wf-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gp-wf-status--active {
  background: var(--green-cta);
  box-shadow: 0 0 8px rgba(76, 234, 137, 0.4);
  animation: dot-ping 2s ease-in-out infinite;
}

.gp-wf-info { flex: 1; }

.gp-wf-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}

.gp-wf-detail {
  font-size: 0.75rem;
  color: var(--grey-600);
}

.gp-wf-tag {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.gp-wf-tag--running {
  background: rgba(76, 234, 137, 0.1);
  color: #2a9d5c;
}

/* --- OVERFLOW FLOAT CARDS (break the frame) --- */
.float-card {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--dark);
  animation: float-gentle 4s ease-in-out infinite;
}

.float-card__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-cta);
  margin-right: 4px;
  animation: dot-ping 2s ease-in-out infinite;
}

@keyframes dot-ping {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.float-card__sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--grey-600);
  margin-top: 1px;
}

.float-card__amount {
  display: block;
  font-size: var(--text-lg);
  font-weight: 700;
  color: #2a9d5c;
}

.float-card--notification {
  top: -20px;
  right: -50px;
  animation-delay: 0s;
}

.float-card--revenue {
  bottom: 30px;
  left: -60px;
  animation-delay: 1.5s;
}

@media (max-width: 768px) {
  .glass-scene {
    min-height: 340px;
    perspective: 800px;
    overflow: hidden;
    margin: 0 -8px;
    padding: 0 8px;
  }

  .glass-panel--back {
    display: none;
  }

  .glass-panel--mid {
    width: 92%;
    top: 0;
    left: 0;
    position: relative;
    transform: none;
    margin-bottom: 12px;
  }

  .glass-panel--front {
    width: 92%;
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
  }

  .float-card--notification {
    display: none;
  }

  .float-card--revenue {
    display: none;
  }

  .glass-orb--1,
  .glass-orb--2,
  .glass-orb--3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-xl));
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }
}


/* --- Reviews Strip --- */
.reviews-strip {
  padding: var(--space-xl) 0;
}

.reviews-strip__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.reviews-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews-strip__stars {
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 3px;
}

.reviews-strip__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
}

.reviews-strip__more {
  text-align: center;
  margin-top: var(--space-lg);
}

.reviews-strip .testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.reviews-strip .testimonial-card__text {
  color: var(--grey-400);
}

.reviews-strip .testimonial-card__author {
  color: var(--white);
}


/* --- Clients Marquee --- */
.clients {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--grey-100);
}

.client-logo {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--grey-400);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity var(--duration-base);
  letter-spacing: -0.01em;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo-img {
  height: 100px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--duration-base), transform var(--duration-base);
}

.client-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .client-logo-img {
    height: 80px;
    max-width: 160px;
  }
}


/* --- Stats --- */
.stats {
  padding: var(--space-3xl) 0;
}


/* --- Video Introduction --- */
.video-intro {
  padding: var(--space-2xl) 0;
}

.video-intro__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.video-intro__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.video-intro__text {
  color: var(--grey-600);
  font-size: var(--text-md);
  line-height: 1.6;
}

.video-intro__player {
  position: relative;
}

.video-intro__placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--dark) 0%, #1e2a3a 50%, #0a1628 100%);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-intro__placeholder:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Subtle animated gradient overlay */
.video-intro__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(68, 115, 239, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(78, 246, 129, 0.08) 0%, transparent 50%);
  z-index: 1;
}

/* Grid pattern overlay */
.video-intro__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.video-intro__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(68, 115, 239, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 0 0 rgba(68, 115, 239, 0.4);
  animation: video-pulse 2.5s ease-in-out infinite;
}

.video-intro__placeholder:hover .video-intro__play-btn {
  transform: scale(1.1);
  background: rgba(68, 115, 239, 1);
}

.video-intro__play-btn svg {
  margin-left: 4px; /* Visual centering for play triangle */
}

@keyframes video-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(68, 115, 239, 0.4); }
  50% { box-shadow: 0 0 0 16px rgba(68, 115, 239, 0); }
}

.video-intro__overlay {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 2;
}

.video-intro__duration {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

/* Iframe fills placeholder when video is added */
.video-intro__placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  z-index: 3;
}

@media (max-width: 768px) {
  .video-intro__wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .video-intro__heading {
    font-size: var(--text-xl);
  }

  .video-intro__play-btn {
    width: 64px;
    height: 64px;
  }

  .video-intro__play-btn svg {
    width: 36px;
    height: 36px;
  }
}


/* --- Law Firms Focus --- */
.law-focus {
  padding: var(--space-section) 0;
  position: relative;
}

.law-focus__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 768px) {
  .law-focus__layout {
    grid-template-columns: 1fr;
  }
}


/* --- Amplifier Method --- */
.amplifier {
  padding: var(--space-section) 0;
}

.amplifier__triangle {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.triangle-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  position: relative;
}

/* Connecting lines between nodes */
.triangle-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(68, 115, 239, 0.15), rgba(72, 175, 181, 0.15));
  z-index: 0;
}

.triangle-node {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(68, 115, 239, 0.1);
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 1;
  transition: all var(--duration-base) var(--ease-out);
}

.triangle-node:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(68, 115, 239, 0.25);
  box-shadow:
    0 8px 32px rgba(68, 115, 239, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.triangle-node--systems {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(68, 115, 239, 0.04);
  border-color: rgba(68, 115, 239, 0.15);
}

.triangle-node--systems:hover {
  background: rgba(68, 115, 239, 0.08);
  border-color: rgba(68, 115, 239, 0.3);
}

.triangle-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(68, 115, 239, 0.1), rgba(72, 175, 181, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  transition: all var(--duration-base) var(--ease-out);
}

.triangle-node:hover .triangle-icon {
  background: linear-gradient(135deg, rgba(68, 115, 239, 0.2), rgba(72, 175, 181, 0.15));
  transform: scale(1.1);
}

.triangle-node h4 {
  margin-bottom: 0.25rem;
  font-size: var(--text-lg);
}

.triangle-node p {
  font-size: var(--text-sm);
  color: var(--grey-600);
  max-width: 250px;
  margin: 0 auto;
}

.amplifier__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.amplifier__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue-primary);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;
  border-radius: 60px;
  border: 1px solid rgba(68, 115, 239, 0.2);
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(68, 115, 239, 0.1);
}

.method-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-sky));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

@media (max-width: 768px) {
  .triangle-visual {
    grid-template-columns: 1fr;
  }

  .triangle-visual::before {
    display: none;
  }

  .triangle-node--systems {
    grid-column: auto;
    max-width: 100%;
  }

  .amplifier__center {
    position: static;
    transform: none;
    margin: var(--space-lg) auto;
  }
}


/* --- Services --- */
.services .grid--3 {
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
}

.services .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services .card h4 {
  min-height: 1.5em;
}

.services .card p {
  font-size: var(--text-sm);
}

.services .card__tagline {
  min-height: 2.5em;
}

.services .card-visual {
  max-height: 140px;
  overflow: hidden;
  margin-top: auto;
}

.services .card .btn {
  margin-top: var(--space-md);
}

.services .card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: rgba(68, 115, 239, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.services .card__list {
  list-style: none;
  margin: var(--space-md) 0;
  flex-grow: 1;
}

.services .card__list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: var(--text-sm);
  color: var(--grey-600);
}

.services .card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
}

.services .btn--ghost {
  margin-top: auto;
  align-self: flex-start;
}


/* --- Why Us --- */
.why-us {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.why-us__grid {
  max-width: 960px;
  margin: 0 auto;
  gap: var(--space-lg);
}

/* Glassmorphic cards */
.why-us__card {
  position: relative;
  display: flex;
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.why-us__card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(68, 115, 239, 0.12);
}

.why-us__card-border {
  width: 4px;
  min-height: 100%;
  flex-shrink: 0;
  border-radius: 4px 0 0 4px;
}

.why-us__card-content {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  align-items: flex-start;
}

.why-us__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 15/15 Badge */
.why-us__badge-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-xl) var(--space-2xl);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 60px rgba(68, 115, 239, 0.15),
    0 0 120px rgba(72, 175, 181, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-us__badge-number {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal), var(--green-cta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us__badge-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

.why-us__subtitle {
  color: var(--grey-400);
  font-size: var(--text-lg);
  font-style: italic;
  margin-top: var(--space-lg);
  text-align: center;
}

.why-us__score-inline {
  color: var(--teal);
}

/* Legacy item styles (kept for other pages) */
.why-us__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

.why-us__item h5 {
  margin-bottom: 0.25rem;
}

.why-us__item p {
  font-size: var(--text-sm);
  color: var(--grey-600);
}

.judge-quote {
  max-width: 700px;
  margin: var(--space-3xl) auto 0;
  text-align: center;
  padding: var(--space-xl);
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--blue-primary);
}

.judge-quote p {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--dark);
  font-style: italic;
  max-width: none;
  margin-bottom: var(--space-sm);
}

.judge-quote cite {
  font-size: var(--text-sm);
  color: var(--grey-600);
  font-style: normal;
}


/* --- Case Studies --- */
.case-studies {
  padding: var(--space-section) 0;
}

.case-study__tag {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--space-md);
}

.case-study__number {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.case-study__period {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--grey-400);
}

.case-study__headline {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--grey-400);
  margin-bottom: var(--space-md);
}

.case-studies .card--dark {
  display: flex;
  flex-direction: column;
}

.case-studies .btn--ghost {
  margin-top: auto;
}


/* --- Testimonials --- */
.testimonials {
  padding: var(--space-section) 0;
}


/* --- Tech Stack --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-item {
  text-align: center;
  padding: var(--space-lg);
  border: 1px solid var(--grey-100);
  border-radius: var(--border-radius);
  background: var(--white);
  transition: all var(--duration-base) var(--ease-out);
}

.tech-item:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tech-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.tech-desc {
  font-size: var(--text-xs);
  color: var(--grey-600);
}


/* --- FAQ --- */
.faq {
  padding: var(--space-section) 0;
}


/* --- Final CTA --- */
.final-cta {
  padding: var(--space-2xl) 0;
}


/* --- Award Banner --- */
.award-banner {
  padding: var(--space-section) 0;
  background: var(--off-white);
}

.award-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.award-banner__photo {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

.award-banner__content h3 {
  margin: var(--space-sm) 0 var(--space-md);
}

.award-banner__content p {
  font-style: italic;
  color: var(--grey-600);
  font-size: var(--text-lg);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .award-banner__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}
