@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #08111e;
  --bg-card: #0d1b2e;
  --bg-light: #f4f7fb;
  --bg-light-card: #ffffff;
  --surface: #111f33;
  --surface2: #162033;
  --border: rgba(255,255,255,0.07);
  --border-light: #e2e8f0;
  --aws: #FF9900;
  --aws-dark: #e08800;
  --aws-glow: rgba(255,153,0,0.18);
  --text: #e8eef5;
  --text-muted: #7a91aa;
  --text-dark: #0f172a;
  --text-muted-dark: #64748b;
  --green: #4ade80;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
}

/* ---- TOPBAR ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 17, 30, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.brand-icon {
  display: flex;
  align-items: center;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.topbar-nav a:hover { color: #fff; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  letter-spacing: -0.2px;
}

.btn-primary {
  background: var(--aws);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 var(--aws-glow);
}
.btn-primary:hover {
  background: var(--aws-dark);
  box-shadow: 0 4px 20px var(--aws-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.full { width: 100%; }

/* ---- HERO ---- */
.hero {
  background: var(--bg);
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,153,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,153,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--aws);
  padding: 6px 14px;
  border: 1px solid rgba(255,153,0,0.3);
  border-radius: 999px;
  background: rgba(255,153,0,0.06);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aws);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
}

.accent {
  color: var(--aws);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #b0c4d8;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 72px;
}

/* COVERAGE CARD */
.coverage-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 28px 32px;
  margin-top: 16px;
}

.coverage-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.coverage-label .mono {
  color: var(--aws);
  font-size: 12px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.coverage-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,153,0,0.08);
  border: 1px solid rgba(255,153,0,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.coverage-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.coverage-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- SECTIONS ---- */
.section {
  padding: 88px 0;
}

.section-dark {
  background: var(--bg);
  color: #fff;
}

.section-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.section-header.light .section-title,
.section-header.light .section-eyebrow { color: #fff; }
.section-header.light .section-eyebrow { color: var(--aws); }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--aws);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted-dark);
  font-weight: 300;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: #c8d9ef;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.service-card.featured {
  border-color: var(--aws);
  border-width: 1.5px;
  box-shadow: 0 0 0 4px var(--aws-glow);
}

.service-num {
  font-size: 11px;
  color: var(--aws);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}

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

.service-list li {
  font-size: 13px;
  color: var(--text-muted-dark);
  padding-left: 18px;
  position: relative;
}

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

/* ---- STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.step {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--aws);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 24px;
  color: var(--aws);
  opacity: 0.5;
}

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

.contact-text {
  font-size: 16px;
  color: var(--text-muted-dark);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 300;
}

.accent-text { color: var(--aws); }

.contact-examples {
  background: #f8fafd;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--aws);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px;
  margin-bottom: 36px;
}

.example-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted-dark);
  margin-bottom: 12px;
}

.example-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}

.example-item:last-child { margin-bottom: 0; }

.example-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aws);
  margin-top: 6px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item { text-align: left; }

.trust-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted-dark);
  margin-top: 2px;
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* FORM */
.contact-form {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.1px;
}

input, select, textarea {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: #f9fbfd;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--aws);
  box-shadow: 0 0 0 3px var(--aws-glow);
  background: #fff;
}

input::placeholder, textarea::placeholder {
  color: #b0bec8;
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted-dark);
  margin-top: 14px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

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

.footer-brand {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .topbar-nav a:not(.btn) { display: none; }
  .contact-form { padding: 24px; }
  .hero { padding: 56px 0 0; }
  .section { padding: 56px 0; }
}
