*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --crimson: #99004c;
  --crimson-light: #a62260;
  --dark: #1a1a1a;
  --charcoal: #2d2d2d;
  --cream: #f8f6f4;
  --muted: #9a9590;
  --white: #ffffff;
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  --crimson-gradient: radial-gradient(
    309.43% 309.43% at 50% 19.93%,
    #000000 14.87%,
    #99004c 90.03%
  );
  --ff-lexend: "Lexend", system-ui, sans-serif;
  --ff-space: "Space Grotesk", system-ui, sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1002;
}
.nav-logo img {
  height: 65px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  background: var(--crimson) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--crimson-light) !important;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
nav.menu-open .mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.menu-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}
nav.menu-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
nav.menu-open + .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    309.43% 309.43% at 50% 19.93%,
    #000000 7.02%,
    #99004c 100%
  );
  overflow: hidden;
}
/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(139, 26, 74, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(139, 26, 74, 0.08) 0%,
      transparent 50%
    );
} */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 26, 74, 0.15);
  border: 1px solid rgba(139, 26, 74, 0.3);
  color: var(--crimson);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Logo in hero */
.hero-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.hero-logo img {
  width: clamp(260px, 55vw, 460px);
  height: auto;
  max-width: 100%;
  opacity: 0.95;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  font-style: italic;
  font-family: "Playfair Display", serif;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--crimson);
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--crimson-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(139, 26, 74, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-hint span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(139, 26, 74, 0.6),
    transparent
  );
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
}

/* ── ABOUT / VALUE ── */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-sticky {
  /* position: sticky; */
  /* top: 110px; */
  /* align-self: start; */
}
.about-sticky .section-title {
  margin-top: 0.8rem;
}
.about-text {
  margin-top: 1.5rem;
}
.about-text p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.85;
}
.about-text p strong {
  color: var(--dark);
  font-weight: 700;
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: var(--card-shadow);
  border-left: 3px solid var(--crimson);
}
.about-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.about-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-card p + p {
  margin-top: 0.8rem;
}
.about-card .about-card-lead {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--crimson);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.about-card .about-card-close {
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.about-card .about-card-close .accent {
  color: var(--crimson);
}

/* ── VISION/MISSION ── */
.vision {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(139, 26, 74, 0.12) 0%,
    transparent 60%
  );
}
.vision .container {
  position: relative;
}
.vision .section-title {
  color: var(--white);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: left;
}
.vm-card {
  padding: 2.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.vm-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vm-card h3 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.vm-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ── AI60 ── */
.ai60 {
  background: var(--white);
  padding: 0;
  --ai60-heading: #1a1a1a;
  --ai60-yellow: #fff100;
  --ai60-grey: #58656f;
}
/* Notched card wrapper (clip-path shape + border + shadow) */
.ai-card {
  position: relative;
  height: 100%;
  filter: drop-shadow(0px 4px 15px #6E808E4D);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: filter;
}
.ai-card-border {
  height: 100%;
  padding: 2px;
  background-color: #c8c8c8;
}
.ai-card-inner {
  height: 100%;
  background-color: #f3f3f3;
}
.ai-card--dark .ai-card-border {
  padding: 0;
  background-color: transparent;
}
.ai-card--interactive .ai-card-inner {
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.ai-card--interactive:hover .ai-card-border {
  background-color: #f3f3f3;
}
.ai-card--interactive:hover .ai-card-inner {
  background-color: #f3f3f3;
}
/* Hero band */
.ai60-hero {
  padding: 75px 2rem;
  background: linear-gradient(90.01deg, #e6edf8 25.46%, #58656f 99.15%);
}
.ai60-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ai60-eyebrow {
  display: flex;
  align-items: stretch;
  margin-bottom: 26px;
}
.ai60-entry {
  display: inline-flex;
  align-items: center;
  /* Box is sized to the entry-point shape ratio (222 x 42) scaled to a
     36px height so its angled right edge stays parallel to ai60.svg's
     angled left edge — the two shapes mesh into one rectangle. The shape
     is drawn with the #ai60-entry-clip path (objectBoundingBox units), so
     no background image is needed. */
  height: 36px;
  width: 236px;
  padding: 0 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  white-space: nowrap;
  background: #1a1a1a;
  clip-path: url(#ai60-entry-clip);
}
/* Badge sits on top of the chip's angled tail so they interlock */
.ai60-eyebrow .ai60-badge-svg {
  position: relative;
  z-index: 2;
  margin-left: -16px;
}
.ai60-badge-svg {
  display: block;
  height: 36px;
  width: auto;
}
.ai60-title {
  margin: 0 0 24px;
  max-width: 560px;
  font-size: clamp(2.2rem, 6vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ai60-heading);
}
.ai60-highlight {
  background: linear-gradient(transparent 55%, var(--ai60-yellow) 55%);
  padding: 0 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.ai60-lead {
  margin: 0;
  max-width: 480px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ai60-grey);
}
.ai60-clock {
  display: flex;
  justify-content: center;
}
.ai60-clock-img {
  width: 100%;
  aspect-ratio: 1 / 1;
}
/* Body */
.ai60-body {
  padding: 5rem 2rem;
  font-family: var(--ff-lexend);
}
.ai60-section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 2.5rem;
}
.ai60-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ai60-step-card {
  height: 100%;
  padding: 26px 24px 40px;
}
.ai60-step-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.ai60-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #58656f;
  color: #fff100;
  font-weight: 800;
  font-size: 0.8rem;
}
.ai60-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #5e6f7b;
}
.ai60-step-time {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}
.ai60-step-desc {
  font-size: 0.9rem;
  color: #58656f;
  line-height: 1.7;
}
.ai60-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ai60-catalogue-card {
  height: 100%;
  padding: 2.2rem;
}
.ai60-catalogue-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}
.ai60-catalogue-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #58656f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai60-catalogue-icon img {
  width: 22px;
  height: 22px;
  display: block;
}
.ai60-catalogue-head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  line-height: 1.3;
}
.ai60-badge-svg-sm {
  display: inline-block;
  height: 28px;
  width: auto;
  vertical-align: middle;
}
.ai60-catalogue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ai60-catalogue-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: #58656f;
  line-height: 1.6;
}
.ai60-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #58656f80;
  color: #fff100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.ai60-pricing-card {
  height: 100%;
  background: #58656f;
  padding: 2.2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.ai60-pricing-logo {
  margin-bottom: 1.6rem;
}
.ai60-logo {
  display: block;
  height: 24px;
  width: auto;
}
.ai60-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.ai60-price strong {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.ai60-price span {
  font-size: 0.85rem;
  color: #c7ccd2;
}
.ai60-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  background: #fff100;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: filter 0.2s;
}
.ai60-book-btn:hover {
  filter: brightness(0.92);
}
.ai60-book-btn svg {
  width: 16px;
  height: 16px;
}
.ai60-pricing-support {
  font-size: 0.78rem;
  color: #a7adb4;
  margin-top: 1.3rem;
  line-height: 1.6;
}
.ai60-trust {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3rem;
  line-height: 1.7;
}

/* ── NETWORK ── */
#network {
  background: var(--cream);
  --ai60-yellow: #fff100;
}
#network .section-label {
  display: inline-block;
  background: var(--white);
  padding: 0.4rem 0.9rem;
}

#network .section-subtitle {
  max-width: 780px;
}
.network-logo {
  display: block;
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}
/* Gradient panel that wraps the partner grid */
.network-panel-inner {
  background: linear-gradient(297.45deg, #f7f354 -38.52%, #dbdbdb 58.4%);
  padding: 40px;
  font-family: var(--ff-lexend);
}
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.network-grid-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  gap: 22px;
  padding: 1.5rem;
}
.network-grid-card .title {
  margin-bottom: auto;
  font-size: 16px;
  line-height: 1.4;
  color: #5e6f7b;
  font-weight: 700;
  transition: color 0.3s ease-in-out;
}
.network-delivered {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
  border-top: 1px solid #727272;
  transition: border-color 0.3s ease-in-out;
}
.network-delivered > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #646205;
  font-family: var(--ff-space);
}
.network-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  position: relative;
  text-decoration: none;
  color: #5e6f7b;
  transition: color 0.3s ease-in-out;
}
.network-partner-link strong {
  font-size: 17px;
  font-weight: 700;
  color: inherit;
}
.network-partner-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease-in-out;
}
.network-partner-link:hover::after {
  transform: scaleX(1);
}
.network-partner-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.network-partner-link:hover .network-partner-arrow {
  opacity: 1;
  transform: translate(0, 0);
}
/* Hover = swap the card border from grey to yellow (child combinator so
   hovering one card doesn't recolour the panel's own border) */
#network .ai-card > .ai-card-border {
  transition: background-color 0.3s ease-in-out;
}
#network .network-grid .ai-card:hover > .ai-card-border {
  background-color: var(--ai60-yellow);
}
.network-closing {
  margin: 50px 0 0;
  text-align: center;
  font-style: italic;
  font-size: 15px;
  color: #8b96a0;
}
.footer-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  color: #5e6f7b;
  font-size: 15px;
}
.network-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: #5e6f7b;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.network-visit svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.network-visit:hover {
  color: #646205;
}
.network-visit:hover svg {
  transform: translate(2px, -2px);
}
@media only screen and (max-width: 991px) {
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile: drop the bottom-right notch on the panel, keep it rounded
   (overrides the card's inline clip-path); partner cards keep theirs */
@media only screen and (max-width: 767px) {
  .network-panel > .ai-card-border {
    clip-path: none !important;
    border-radius: 22px;
  }
  .network-panel-inner {
    clip-path: none !important;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
  .network-panel-inner {
    padding: 26px 22px 48px;
  }
}

/* ── SERVICES / USE CASE AREAS ── */
.services {
  background: var(--crimson-gradient);
}

.services .section-title {
  color: #fff;
}

.services .section-subtitle {
  color: #828282;
  max-width: 1000px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: #4f4f4f38;
  border: 1px solid #fffefead;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top-color: var(--crimson);
  transition: all 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 26, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--crimson);
  stroke: var(--crimson);
  fill: none;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.85rem;
  color: #828282;
  line-height: 1.75;
}

/* ── TEAM ── */
.team {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--crimson);
}
.team-card .initials {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--crimson);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.team-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.team-card .role {
  font-size: 0.85rem;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.team-card .credentials {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.team-card .cred {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(139, 26, 74, 0.08);
  color: var(--crimson);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ── CONTACT ── */
.contact {
  background: var(--crimson-gradient);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(139, 26, 74, 0.1) 0%,
    transparent 60%
  );
}
.contact .container {
  position: relative;
}
.contact .section-title {
  color: var(--white);
}
.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 2.5rem;
  max-width: 800px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.contact-item {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--crimson);
  margin-bottom: 0.5rem;
}
.contact-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.contact-item a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: var(--crimson-light);
}

.contact .contact-button {
  background-color: var(--crimson);
  border-radius: 999px;
  padding: 1rem 3rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none !important;
  color: #fff;
}

.contact .contact-button:hover {
  background-color: var(--crimson-light);
  transition: all 0.3s;
}
/* ── FOOTER ── */
footer {
  background: #111;
  padding: 2.5rem 2rem;
  text-align: center;
}
footer .footer-logo {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
footer .footer-logo .ai {
  color: var(--crimson);
}
footer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}
footer .powered {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}
footer .powered a {
  color: var(--white);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 1.25rem;
  }
  /* Stacked hero reads better with a diagonal gradient */
  .ai60-hero {
    background: linear-gradient(
      157.96deg,
      #e6edf8 38.52%,
      #58656f 95.21%
    );
  }
  .mobile-toggle {
    display: block;
  }
  /* Slide-in mobile menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    text-align: center;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 5rem 2rem 2rem;
    background: rgba(20, 20, 20, 1);
    backdrop-filter: blur(14px);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
  }
  nav.menu-open .nav-links {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.05rem;
    width: 100%;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.4rem !important;
  }
  .menu-backdrop {
    display: block;
  }
  .about-grid,
  .vm-grid,
  .ai60-hero-inner,
  .ai60-steps,
  .ai60-bottom,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-sticky {
    position: static;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .hero-stats {
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  nav {
    height: 70px;
  }
  .nav-logo img {
    height: 42px;
  }
  section {
    padding: 4rem 1.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 0 1.2rem;
  }
  .hero-stats {
    gap: 1.5rem 2.5rem;
  }
  .hero-stats .hero-stat .num {
    font-size: 1.8rem;
  }
  .ai60-pricing-card,
  .ai60-catalogue-card,
  .vm-card,
  .team-card {
    padding: 1.8rem;
  }
  .ai60-price strong {
    font-size: 2.4rem;
  }
  .ai60-trust {
    text-align: left;
  }
}

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2000;
  max-width: 420px;
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.35);
}
.cookie-consent-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--dark);
}
.cookie-consent-card a {
  color: var(--crimson);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.cookie-consent-actions button {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-consent-actions button[data-consent="accept"] {
  background: var(--crimson);
  border: 1px solid var(--crimson);
  color: var(--white);
}
.cookie-consent-actions button[data-consent="accept"]:hover {
  background: var(--crimson-light);
  border-color: var(--crimson-light);
}
.cookie-consent-actions button[data-consent="reject"] {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--dark);
}
.cookie-consent-actions button[data-consent="reject"]:hover {
  background: rgba(0, 0, 0, 0.05);
}
