/* ================================================================
   COGNIZANT CLOUD LLC - Corporate Website
   Design: Premium consulting firm aesthetic
   Colors: Deep navy (#0f172a) + teal (#0d9488)
   Fonts: Outfit (headings) + Inter (body)
   ================================================================ */

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent scrollbar from shifting layout */
html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

:root {
  --navy-950: #020617;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --navy-600: #475569;
  --navy-500: #64748b;
  --navy-400: #94a3b8;
  --navy-300: #cbd5e1;
  --navy-200: #e2e8f0;
  --navy-100: #f1f5f9;
  --navy-50: #f8fafc;

  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;

  --white: #ffffff;
  --black: #000000;

  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-700);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
}

.hidden {
  display: none !important;
}

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--navy-50);
}

.section--dark {
  background: var(--navy-900);
  color: var(--navy-300);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark .section-subtitle {
  color: var(--navy-400);
}

.section--dark .section-label {
  color: var(--teal-400);
  border-color: rgba(13, 148, 136, 0.3);
}

/* Cards inside dark sections must always look good on dark bg */
.section--dark .capability-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .capability-card:hover {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.section--dark .capability-title {
  color: #f1f5f9;
}

.section--dark .capability-desc {
  color: #94a3b8;
}

.section--dark .capability-icon {
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal-400);
}

.section--dark .capability-list li {
  color: #94a3b8;
}

.section--dark .product-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ----------------------------------------------------------------
   SECTION HEADER
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-500);
}

/* ----------------------------------------------------------------
   HEADER / NAV
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header--scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

.header-brand:hover {
  color: var(--white);
}

.header-logo {
  width: 32px;
  height: 32px;
  color: var(--teal-400);
}

.header-brand-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-300);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link--cta {
  color: var(--white);
  background: var(--teal-600);
  margin-left: 8px;
}

.nav-link--cta:hover {
  color: var(--white);
  background: var(--teal-700);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--navy-950) 0%,
    var(--navy-900) 40%,
    #0c1e2e 70%,
    #0a2520 100%
  );
}

.hero-grid {
  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: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0 80px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-400);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--navy-400);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--navy-400);
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--navy-700);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 1;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------
   CAPABILITIES
   ---------------------------------------------------------------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.capability-card {
  background: var(--white);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
}

.capability-card:hover {
  border-color: var(--teal-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.capability-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--teal-600);
}

.capability-icon svg {
  width: 28px;
  height: 28px;
}

.capability-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.capability-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-500);
  margin-bottom: 16px;
}

.capability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.capability-list li {
  font-size: 14px;
  color: var(--navy-600);
  padding-left: 20px;
  position: relative;
}

.capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
}

/* ----------------------------------------------------------------
   PRODUCTS
   ---------------------------------------------------------------- */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.product-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  background: rgba(13, 148, 136, 0.15);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.product-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.product-tagline {
  font-size: 16px;
  color: var(--teal-400);
  font-weight: 500;
  margin-bottom: 20px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-400);
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-300);
  line-height: 1.5;
}

.product-features li svg {
  flex-shrink: 0;
  color: var(--teal-400);
  margin-top: 1px;
}

/* Product Mockup */
.product-card-visual {
  display: flex;
  justify-content: center;
}

.product-mockup {
  width: 100%;
  max-width: 480px;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy-600);
}

.mockup-dot:first-child { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-url {
  font-size: 11px;
  color: var(--navy-500);
  margin-left: 8px;
  font-family: var(--font-body);
}

.mockup-body {
  display: flex;
  min-height: 260px;
}

.mockup-sidebar {
  width: 56px;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-nav-item {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.mockup-nav-item--active {
  background: var(--teal-600);
}

.mockup-main {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-header-bar {
  width: 60%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.mockup-cards-row {
  display: flex;
  gap: 8px;
}

.mockup-mini-card {
  flex: 1;
  height: 48px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-mini-card:first-child {
  border-color: rgba(13, 148, 136, 0.3);
  background: rgba(13, 148, 136, 0.08);
}

.mockup-chart {
  flex: 1;
  min-height: 60px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-table-row {
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.mockup-table-row:first-child {
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
}

.mockup-table-row:nth-child(2) { width: 85%; }
.mockup-table-row:nth-child(3) { width: 70%; }

/* Products Coming */
.products-coming {
  margin-top: 32px;
}

.products-coming-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.products-coming-icon {
  width: 24px;
  height: 24px;
  color: var(--navy-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.products-coming-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-300);
  margin-bottom: 4px;
}

.products-coming-text {
  font-size: 14px;
  color: var(--navy-500);
  line-height: 1.6;
}

.products-coming-text a {
  color: var(--teal-400);
}

.products-coming-text a:hover {
  color: var(--teal-300);
}

/* ----------------------------------------------------------------
   ABOUT
   ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.about-card {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: var(--teal-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.about-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.04));
  border-radius: 50%;
  margin: 0 auto 24px;
  color: var(--teal-600);
}

.about-icon svg {
  width: 32px;
  height: 32px;
}

.about-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-500);
}

/* Domains */
.domains {
  text-align: center;
}

.domains-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 24px;
}

.domains-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.domain-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-600);
  background: var(--navy-100);
  border: 1px solid var(--navy-200);
  border-radius: 100px;
  padding: 8px 20px;
  transition: all var(--transition);
}

.domain-tag:hover {
  background: rgba(13, 148, 136, 0.08);
  border-color: var(--teal-600);
  color: var(--teal-700);
}

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  transition: all var(--transition);
}

a.contact-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(13, 148, 136, 0.3);
  color: inherit;
}

.contact-option-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-sm);
  color: var(--teal-400);
  flex-shrink: 0;
}

.contact-option-icon svg {
  width: 22px;
  height: 22px;
}

.contact-option-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-option-detail {
  font-size: 14px;
  color: var(--navy-400);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-300);
  letter-spacing: 0.02em;
}

.form-input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--navy-600);
}

.form-input:focus {
  border-color: var(--teal-500);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: var(--navy-400);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--navy-950);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-400);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}

.footer-logo {
  width: 24px;
  height: 24px;
  color: var(--teal-600);
}

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

.footer-links a {
  font-size: 14px;
  color: var(--navy-500);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-copy {
  font-size: 13px;
  color: var(--navy-600);
}

/* ----------------------------------------------------------------
   HOW WE WORK / PROCESS
   ---------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.process-card:hover {
  border-color: var(--teal-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: rgba(13, 148, 136, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.process-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--teal-600);
}

.process-icon svg {
  width: 26px;
  height: 26px;
}

.process-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.process-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-500);
}

/* ----------------------------------------------------------------
   INDUSTRIES WE SERVE
   ---------------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.industry-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--teal-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.industry-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  color: var(--teal-600);
}

.industry-icon svg {
  width: 28px;
  height: 28px;
}

.industry-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.industry-list li {
  font-size: 14px;
  color: var(--navy-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.industry-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
}

/* ----------------------------------------------------------------
   ABOUT EXPANDED (Leaders + Team Note)
   ---------------------------------------------------------------- */
.about-leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.about-leader-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.about-leader-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.about-leader-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--teal-400);
}

.about-leader-icon svg {
  width: 28px;
  height: 28px;
}

.about-leader-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.about-leader-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-400);
  margin-bottom: 16px;
}

.about-leader-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-400);
}

.about-team-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 48px;
}

.about-team-note svg {
  width: 28px;
  height: 28px;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-team-note p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy-300);
}

/* About section dark-mode overrides for existing cards */
.section--dark .about-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .about-card:hover {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.section--dark .about-desc {
  color: var(--navy-400);
}

.section--dark .about-icon {
  background: rgba(13, 148, 136, 0.15);
  color: var(--teal-400);
}

.section--dark .domains-title {
  color: var(--navy-300);
}

.section--dark .domain-tag {
  color: var(--navy-300);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .domain-tag:hover {
  background: rgba(13, 148, 136, 0.15);
  border-color: rgba(13, 148, 136, 0.4);
  color: var(--teal-400);
}

/* ----------------------------------------------------------------
   BY THE NUMBERS / STATS
   ---------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--teal-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--teal-600);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-500);
  line-height: 1.4;
}

/* Animated counter appearance */
.stat-card.visible .stat-value {
  animation: countPulse 0.6s ease-out;
}

@keyframes countPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Contact CTA card */
.contact-option--cta {
  border-color: rgba(13, 148, 136, 0.3);
  background: rgba(13, 148, 136, 0.08);
}

/* ----------------------------------------------------------------
   SCROLL ANIMATIONS
   ---------------------------------------------------------------- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.capabilities-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.capabilities-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.capabilities-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

.process-grid .animate-in:nth-child(2) { transition-delay: 0.15s; }
.process-grid .animate-in:nth-child(3) { transition-delay: 0.3s; }

.industries-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.industries-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.industries-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

.about-leaders .animate-in:nth-child(2) { transition-delay: 0.15s; }

.stats-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

.about-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.about-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }

.domains-grid .animate-in:nth-child(2) { transition-delay: 0.05s; }
.domains-grid .animate-in:nth-child(3) { transition-delay: 0.1s; }
.domains-grid .animate-in:nth-child(4) { transition-delay: 0.15s; }
.domains-grid .animate-in:nth-child(5) { transition-delay: 0.2s; }
.domains-grid .animate-in:nth-child(6) { transition-delay: 0.25s; }
.domains-grid .animate-in:nth-child(7) { transition-delay: 0.3s; }
.domains-grid .animate-in:nth-child(8) { transition-delay: 0.35s; }
.domains-grid .animate-in:nth-child(9) { transition-delay: 0.4s; }
.domains-grid .animate-in:nth-child(10) { transition-delay: 0.45s; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 34px;
  }

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

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

  .product-card {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .product-card-visual {
    order: -1;
  }

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

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

@media (max-width: 768px) {
  /* Prevent ALL horizontal overflow */
  html, body { overflow-x: hidden; max-width: 100vw; }

  .section {
    padding: 64px 0;
  }

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

  /* Containers must not exceed viewport */
  .container { padding-left: 16px; padding-right: 16px; max-width: 100%; }

  /* Hero titles scale down */
  h1 { font-size: clamp(28px, 7vw, 48px); }
  h2 { font-size: clamp(22px, 5vw, 36px); }

  .hero-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-value {
    font-size: 22px;
  }

  .hero-stat-divider {
    height: 30px;
  }

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

  .section-subtitle {
    font-size: 16px;
  }

  /* All buttons safe on mobile */
  .btn { max-width: 100%; white-space: normal; text-align: center; }

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

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

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

  .process-number {
    font-size: 40px;
  }

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

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

  .about-leader-card {
    padding: 28px 24px;
  }

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

  .stat-value {
    font-size: 36px;
  }

  .stat-card {
    padding: 28px 16px;
  }

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

  .about-card {
    padding: 28px 24px;
  }

  .product-card {
    padding: 28px;
  }

  .product-title {
    font-size: 28px;
  }

  /* Grids go single column */
  [class*="grid"] { grid-template-columns: 1fr !important; }

  /* Tables scroll horizontally */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Inputs full width */
  input, select, textarea { max-width: 100%; width: 100%; box-sizing: border-box; }

  /* Minimum touch targets */
  button, a.btn, .btn { min-height: 44px; }

  /* No tiny text */
  body { font-size: 15px; }

  /* Mobile nav */
  .mobile-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .header-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav .nav-link {
    font-size: 20px;
    padding: 12px 24px;
  }

  .header-nav .nav-link--cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  h1 { font-size: clamp(24px, 8vw, 36px); }

  .hero-title {
    font-size: clamp(24px, 8vw, 30px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .capability-card {
    padding: 24px;
  }

  .product-card {
    padding: 20px;
  }

  /* Stack search input + button */
  .drug-search-group, [class*="search-group"] { flex-direction: column; }
  .drug-search-group .btn, [class*="search-group"] .btn { width: 100%; }

  /* Prevent iOS zoom on input focus */
  input, select, textarea { font-size: 16px !important; }
}

@media (max-width: 375px) {
  .container { padding: 0 8px; }
  h1 { font-size: clamp(20px, 6vw, 28px); }
  h2 { font-size: clamp(18px, 5vw, 22px); }
  .hero-title { font-size: clamp(20px, 6vw, 28px); }
  .section-title { font-size: clamp(18px, 5vw, 22px); }
  .btn { padding: 10px 16px; font-size: 13px; }
  .stat-value { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   PRINT
   ---------------------------------------------------------------- */
@media print {
  .header,
  .hero-bg,
  .hero-grid,
  .hero-fade,
  .mobile-toggle,
  .contact-form,
  .btn {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section {
    padding: 32px 0;
  }

  .section--dark {
    background: white;
    color: var(--navy-700);
  }

  .section--dark h2,
  .section--dark h3 {
    color: var(--navy-900);
  }

  body {
    font-size: 12pt;
  }
}
