
:root {
  --navy: #031a33;
  --navy-2: #06284d;
  --navy-3: #0a3768;
  --blue: #1267d8;
  --blue-2: #2d8cff;
  --orange: #ff7a00;
  --orange-2: #ff9a2f;
  --green: #2aa865;
  --text: #071b36;
  --muted: #52667c;
  --line: #dbe6f1;
  --soft: #f4f8fc;
  --soft-blue: #edf6ff;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(3, 26, 51, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
}

p {
  line-height: 1.68;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 26, 51, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.96;
}

.brand-mark {
  width: 42px;
  height: 28px;
  border: 3px solid var(--white);
  border-top-color: transparent;
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  border: 3px solid var(--white);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.brand-mark:before {
  width: 18px;
  height: 16px;
  left: 4px;
  top: -13px;
}

.brand-mark:after {
  width: 22px;
  height: 18px;
  right: 2px;
  top: -16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.92;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: #9ed0ff;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 9px;
  padding: 10px 12px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 900;
  padding: 14px 20px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(3,26,51,0.18);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 26px rgba(255,122,0,0.25);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  color: var(--blue);
  border-color: rgba(18,103,216,0.35);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 14%, rgba(45,140,255,0.26), transparent 24%),
    radial-gradient(circle at 20% 120%, rgba(18,103,216,0.25), transparent 34%),
    linear-gradient(135deg, #02172d 0%, #05294f 54%, #031a33 100%);
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(45,140,255,0.18) 49%, transparent 51%),
    linear-gradient(150deg, transparent 47%, rgba(45,140,255,0.15) 49%, transparent 51%);
  background-size: 82px 82px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
  padding: 78px 0 86px;
}

.eyebrow {
  color: var(--blue-2);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.075em;
  font-size: 13px;
  margin: 0 0 14px;
}

h1, h2, h3, p {
  margin-top: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--blue-2);
}

.hero-copy {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.64;
  max-width: 570px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 32px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.84);
  font-weight: 750;
  font-size: 14px;
}

.aws-mark {
  font-size: 31px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.aws-mark span {
  color: var(--orange);
}

.divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.34);
}

.mockup {
  display: grid;
  grid-template-columns: 172px 1fr;
  min-height: 450px;
  border: 1px solid rgba(45,140,255,0.78);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
  background: var(--white);
}

.mock-sidebar {
  background: linear-gradient(180deg, #031a33 0%, #05294f 100%);
  padding: 20px 15px;
}

.mock-brand {
  color: var(--white);
  font-weight: 950;
  margin-bottom: 20px;
}

.mock-menu {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 850;
}

.mock-menu div {
  color: rgba(255,255,255,0.84);
  padding: 11px 12px;
  border-radius: 8px;
}

.mock-menu .active {
  color: var(--white);
  background: var(--blue);
}

.mock-main {
  background: var(--white);
  color: var(--text);
  padding: 24px;
}

.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.mock-head h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.active-pill {
  color: #247c4c;
  background: #dff6e9;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 950;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-bottom: 18px;
}

.metric {
  border: 1px solid #dfe8f2;
  box-shadow: 0 8px 18px rgba(3,26,51,0.06);
  border-radius: 11px;
  padding: 13px;
}

.metric small {
  display: block;
  color: var(--muted);
  font-weight: 850;
  font-size: 10px;
  margin-bottom: 9px;
}

.metric strong {
  display: block;
  font-size: 31px;
  letter-spacing: -0.055em;
}

.metric span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.progress-panel,
.activity-panel,
.draft-panel {
  border: 1px solid #dfe8f2;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(3,26,51,0.05);
}

.progress-panel {
  padding: 18px 16px;
  margin-bottom: 15px;
}

.panel-title {
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 18px;
}

.mock-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

.mock-line:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 9%;
  right: 9%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue), #d7dde6 90%);
}

.mock-step {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.step-dot {
  width: 31px;
  height: 31px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  margin-bottom: 10px;
  box-shadow: 0 0 0 4px var(--white);
  font-weight: 950;
}

.step-dot.pending {
  color: #7d8b9b;
  background: #d8dde6;
}

.lower-panels {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 15px;
}

.activity-panel,
.draft-panel {
  min-height: 130px;
  padding: 16px;
}

.activity-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  border-bottom: 1px solid #eef2f6;
  padding: 7px 0;
  font-size: 11px;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.donut {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 54%, #e4eaf1 0);
  display: grid;
  place-items: center;
}

.donut div {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  font-weight: 950;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 54px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f5faff 0%, #eef6ff 100%);
  border-top: 1px solid #e5edf5;
  border-bottom: 1px solid #e5edf5;
}

.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 30px;
}

.section h2 {
  color: var(--text);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 18px;
}

.icon-blue { background: linear-gradient(135deg, #1267d8, #2d8cff); }
.icon-orange { background: linear-gradient(135deg, #ff6f00, #ff9a2f); }
.icon-green { background: linear-gradient(135deg, #269956, #47c477); }

.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 34px;
  position: relative;
}

.workflow:before {
  content: "";
  position: absolute;
  top: 38px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18,103,216,0.22), rgba(18,103,216,0.85), rgba(18,103,216,0.22));
}

.workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workflow-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #1267d8, #2d8cff);
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 0 0 10px #eef6ff;
}

.workflow-step small {
  display: block;
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 6px;
}

.workflow-step h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.workflow-step p {
  font-size: 13px;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.service-card {
  min-height: 116px;
  background: var(--white);
  border: 1px solid #e2ebf4;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 13px 8px;
  box-shadow: 0 10px 24px rgba(3,26,51,0.05);
}

.service-symbol {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--blue);
}

.service-card strong {
  font-size: 12px;
  line-height: 1.2;
}

.band {
  color: var(--white);
  background:
    radial-gradient(circle at 13% 50%, rgba(45,140,255,0.28), transparent 18%),
    linear-gradient(135deg, #02172d, #05294f 55%, #031a33);
  padding: 72px 0;
}

.band-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}

.shield-large {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 44px 44px 60px 60px;
  border: 12px solid var(--blue-2);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 62px;
  font-weight: 950;
  box-shadow: 0 0 0 30px rgba(18,103,216,0.08);
}

.band h2 {
  color: var(--white);
  font-size: 38px;
}

.band p {
  color: rgba(255,255,255,0.84);
}

.check-list {
  border-left: 1px solid rgba(255,255,255,0.23);
  padding-left: 40px;
  display: grid;
  gap: 18px;
  font-weight: 850;
}

.check-list div {
  display: flex;
  gap: 13px;
  align-items: center;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--blue-2);
  color: var(--blue-2);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 950;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(45,140,255,0.26), transparent 26%),
    linear-gradient(135deg, #02172d, #05294f 55%, #031a33);
  padding: 74px 0;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
  color: var(--white);
}

.page-hero p {
  color: rgba(255,255,255,0.86);
  max-width: 760px;
  font-size: 19px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 18px;
  border-bottom: 1px solid #edf2f7;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text);
  background: #f7fbff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  color: var(--muted);
  line-height: 1.5;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.price {
  color: var(--blue);
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  color: var(--muted);
  line-height: 1.55;
  position: relative;
  padding-left: 28px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 950;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: var(--white);
  color: var(--text);
  border: 0;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item .answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 850;
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #ccd9e6;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 130px;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(180deg, #02182f 0%, #031a33 100%);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand {
  font-weight: 950;
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  margin: 9px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  padding-top: 18px;
}

.notice {
  background: #fff8e8;
  border: 1px solid #ffe2aa;
  color: #6b4700;
  border-radius: 15px;
  padding: 18px 20px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-nav.open {
    display: flex;
    position: absolute;
    left: 22px;
    right: 22px;
    top: 78px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .section-row,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .mockup {
    max-width: 900px;
  }

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

  .workflow,
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid {
    padding: 56px 0 66px;
  }

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

  .mock-sidebar {
    display: none;
  }

  .metric-grid,
  .lower-panels,
  .card-grid,
  .workflow,
  .service-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .workflow:before {
    display: none;
  }

  .check-list {
    border-left: 0;
    padding-left: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
