:root {
  --primary: #2D7CFF;
  --secondary: #3FFFD7;
  --accent: #A259FF;
  --orange: #FF8A3D;
  --pink: #FF4F9A;
  --bg: #F9FBFF;
  --text: #111322;
  --muted: #5F6473;
  --soft: #EEF2FF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 251, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.logo span {
  color: var(--primary);
}

.nav a {
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary);
}

/* LAYOUT */
.section {
  padding: 80px 20px;
}

.section-soft {
  background: var(--soft);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.hero {
  padding: 120px 20px 80px;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.animated-bg {
  background: linear-gradient(135deg, #2D7CFF, #A259FF, #3FFFD7);
  background-size: 300% 300%;
  animation: gradientMove 14s ease infinite;
}

.animated-bg-cta {
  background: linear-gradient(135deg, #FF8A3D, #FF4F9A, #2D7CFF);
  background-size: 300% 300%;
  animation: gradientMove 16s ease infinite;
  color: #fff;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  margin: 10px 0 16px;
}

.hero-sub {
  font-size: 16px;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  font-size: 14px;
}

.hero-bullets li {
  margin-bottom: 6px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* HERO PANEL */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero-card h3 {
  margin-top: 0;
  font-size: 18px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 14px;
}

.hero-card li {
  margin-bottom: 6px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pill-aws { border-color: #FF9900; }
.pill-azure { border-color: #0078D4; }
.pill-oracle { border-color: #F80000; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 12px 30px rgba(45, 124, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(45, 124, 255, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--primary);
}

/* SECTION TITLES */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  text-align: center;
  margin: 0 0 10px;
}

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 15px;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 255, 0.9);
}

.card h3 {
  margin-top: 0;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 13px;
}

.card li {
  margin-bottom: 4px;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.why-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 255, 0.9);
}

.why-item h3 {
  margin-top: 0;
  font-size: 17px;
}

/* TECH GRID */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.tech-block {
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 255, 0.9);
}

.tech-block h3 {
  margin-top: 0;
  font-size: 17px;
}

.tech-block p {
  font-size: 14px;
  color: var(--muted);
}

/* DATABASE GRID */
.db-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.db-block {
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 255, 0.9);
}

.db-block h3 {
  margin-top: 0;
  font-size: 17px;
}

.db-block ul {
  padding-left: 18px;
  margin: 10px 0 0;
  font-size: 14px;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 255, 0.9);
}

.step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(45, 124, 255, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* Make How We Work match CTA gradient style */
#process {
  color: #fff;
}

#process .process-step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  color: #fff;
}

/* FOOTER */
.site-footer {
  padding: 24px 20px;
  background: #050816;
  color: #cbd5f5;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-meta {
  font-size: 13px;
  color: #9ca3c7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .section {
    padding: 60px 16px;
  }

  .header-inner {
    padding-inline: 16px;
  }
}

/* Fix visibility for How We Work section */
#process,
#process h2,
#process h3,
#process p {
  color: #ffffff !important;
}

#process .process-step {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  color: #ffffff !important;
}

#process .step-number {
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
}