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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --accent: #06d6a0;
  --navy: #0a1628;
  --navy-light: #1e293b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 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: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.2s ease;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

.section {
  padding: 80px 0;
}

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

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section--dark .section-label {
  color: var(--primary-light);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section--dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.6;
}

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

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
}

.btn--secondary:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.header__nav a:hover {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

.header__phone:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  position: relative;
  transition: all var(--transition);
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  transition: all var(--transition);
}

.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }

.mobile-toggle.active span { background: transparent; }
.mobile-toggle.active span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,214,160,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.hero__stat-label {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: linear-gradient(90deg, #0a1628 0%, #1e3a5f 100%);
  padding: 16px 0;
  border-bottom: 2px solid var(--primary);
}

.offer-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}

.offer-banner__text {
  font-size: 14px;
  color: var(--gray-200);
  line-height: 1.5;
}

.offer-banner__cta {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition);
}

.offer-banner__cta:hover {
  background: var(--primary-dark);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(37,99,235,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  text-align: center;
  padding: 24px;
}

.why-item__icon {
  width: 56px;
  height: 56px;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.why-item__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.why-item__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.industry-card {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.industry-card__icon {
  margin-bottom: 12px;
  color: var(--primary-light);
}

.industry-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step__number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.testimonial-card__stars {
  color: var(--warning);
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== OUTCOME CARDS ===== */
.outcome-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.outcome-card__problem,
.outcome-card__solution,
.outcome-card__result {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}

.outcome-card__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.outcome-card__problem .outcome-card__label { color: var(--error); }
.outcome-card__solution .outcome-card__label { color: var(--primary); }
.outcome-card__result .outcome-card__label { color: var(--success); }

.outcome-card__result {
  font-weight: 600;
  color: var(--gray-900);
}

/* ===== DEPLOYMENTS STRIP ===== */
.deployments-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}

.deployments-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.deployments-strip__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}

.deployments-strip__items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.deploy-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* ===== RESPONSE COMMITMENT ===== */
.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy .section-label {
  color: var(--accent);
}

.section--navy .section-title {
  color: var(--white);
}

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

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.promise-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.promise-card__time {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.promise-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.promise-card__desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

.promise-footer {
  margin-top: 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-300);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  font-style: italic;
}

/* ===== INCIDENT RESPONSE ===== */
.incident-header {
  margin-bottom: 48px;
}

.incident-flow {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.incident-flow::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--gray-200);
}

.incident-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}

.incident-step:last-child {
  margin-bottom: 0;
}

.incident-step__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.incident-step__content {
  padding-top: 8px;
}

.incident-step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.incident-step__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.incident-closing {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  letter-spacing: -0.2px;
}

/* ===== INFRASTRUCTURE GRID ===== */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.infra-category {
  padding: 32px 28px;
  border-right: 1px solid var(--gray-200);
  background: var(--white);
}

.infra-category:last-child {
  border-right: none;
}

.infra-category__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--primary);
  margin-bottom: 20px;
}

.infra-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.infra-list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}

.infra-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray-300);
  font-weight: 400;
}

/* ===== COST OF DOWNTIME ===== */
.downtime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.downtime-item {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--warning);
  transition: background var(--transition);
}

.downtime-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.downtime-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.downtime-item__desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.65;
}

.downtime-anchor {
  margin-top: 20px;
  font-size: 15px;
  color: var(--gray-300);
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.downtime-closing {
  margin-top: 48px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--warning);
  font-style: italic;
  letter-spacing: -0.2px;
}

/* ===== MANAGED INFRASTRUCTURE ===== */
.managed-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.managed-copy__desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.managed-copy .btn {
  display: inline-block;
  margin-top: 8px;
}

.managed-copy__note {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 10px;
}

.managed-includes {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.managed-includes__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.managed-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.managed-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
}

.managed-list li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ===== BUSINESS OUTCOMES ===== */
.outcome-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.outcome-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.5;
}

.outcome-pill svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== OPERATIONAL ENVIRONMENTS ===== */
.environments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.environment-card {
  background: var(--white);
  padding: 28px 26px;
  transition: background var(--transition);
}

.environment-card:hover {
  background: var(--gray-50);
}

.environment-card__type {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.environment-card__scope {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== OPERATING DOCTRINE ===== */
.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 56px;
}

.doctrine-principle__number {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.doctrine-principle__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.3;
}

.doctrine-principle__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.85;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead tr {
  background: var(--navy);
}

.comparison-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.comparison-table__category {
  color: transparent;
  width: 22%;
}

.comparison-table__vendor {
  color: var(--gray-400);
  width: 39%;
}

.comparison-table__us {
  color: var(--primary-light);
  width: 39%;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

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

.comparison-table tbody tr:hover {
  background: var(--gray-50);
}

.comparison-table td {
  padding: 16px 24px;
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
}

.comparison-table__vendor-cell {
  color: var(--gray-500);
}

.comparison-table__us-cell {
  color: var(--gray-900);
  font-weight: 500;
}

/* ===== PROOF METRICS STRIP ===== */
.proof-strip {
  background: var(--navy);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
  text-align: center;
}

.proof-stat__number {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.proof-stat__label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
  max-width: 120px;
  text-align: center;
}

.proof-strip__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== CTA ENGAGEMENT FLOW ===== */
.cta-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 40px 0 24px;
  flex-wrap: wrap;
}

.cta-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 0 16px;
}

.cta-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.cta-step__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-step__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.cta-flow__arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  padding-top: 8px;
  flex-shrink: 0;
  align-self: center;
}

.cta-section__outcome {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 8px;
}

/* ===== HERO CTA GROUP ===== */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* ===== CTA NOTE ===== */
.cta-section__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 64px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer__contact-item a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 13px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.6); }
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--navy);
  text-align: center;
}

.page-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content__text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.about-content__text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image {
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: var(--radius-xl);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.value-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
}

.contact-info__value a {
  color: var(--primary);
}

.contact-form {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 24px;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-detail__content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
}

.service-detail__feature svg {
  color: var(--success);
  flex-shrink: 0;
}

.service-detail__visual {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.mobile-nav__actions {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .header__nav,
  .header__actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .offer-banner__inner {
    flex-direction: column;
    gap: 12px;
  }

  .deployments-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .deployments-strip__items {
    gap: 8px;
  }

  .outcome-pills {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-table__label {
    display: none;
  }

  .comparison-table__category,
  .comparison-table__vendor,
  .comparison-table__us {
    width: 50%;
  }

  .proof-strip__inner {
    gap: 8px;
  }

  .proof-stat {
    padding: 12px 20px;
  }

  .proof-strip__divider {
    display: none;
  }

  .cta-flow {
    flex-direction: column;
    align-items: center;
  }

  .cta-flow__arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .promise-card__time {
    font-size: 32px;
  }

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

  .infra-category {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .infra-category:last-child {
    border-bottom: none;
  }

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

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

  .managed-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

  .hero__title {
    font-size: 32px;
  }

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

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

  .outcome-pills {
    grid-template-columns: 1fr;
  }

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

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