:root {
  --ink: #0b1b3f;
  --navy: #071735;
  --blue: #0a3b92;
  --aqua: #00afcb;
  --orange: #f45113;
  --gold: #e5b84d;
  --mist: #f7fafc;
  --ice: #eef8fb;
  --line: #dde6f0;
  --text: #334155;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 23, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fbfdff;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 236, 0.75);
  backdrop-filter: blur(14px);
}

.brand img {
  width: auto;
  height: 48px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--orange);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: #475569;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.active {
  color: var(--white);
  background: var(--navy);
}

.header-cta,
.primary-button,
.secondary-button,
.price-card a,
.checkout-card button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.primary-button,
.checkout-card button {
  background: linear-gradient(135deg, var(--orange), #ff6d2d);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(244, 81, 19, 0.25);
}

.header-cta {
  padding: 0 18px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100vh - 78px);
  padding: clamp(36px, 6vw, 70px) clamp(20px, 5vw, 72px) 34px;
  background:
    linear-gradient(90deg, rgba(0, 175, 203, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 23, 53, 0.05) 1px, transparent 1px),
    linear-gradient(120deg, rgba(247, 250, 252, 0.98), rgba(238, 248, 251, 0.9) 48%, rgba(255, 247, 243, 0.92));
  background-size: 56px 56px, 56px 56px, auto;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(620px, 52vw);
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--aqua), var(--orange));
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  max-width: min(100%, 540px);
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(7, 23, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(7, 23, 53, 0.07);
}

.hero-mark img {
  width: auto;
  height: 46px;
  flex: 0 0 auto;
}

.hero-mark span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-left: 16px;
  border-left: 2px solid var(--aqua);
  color: #475569;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.platform h2,
.partners h2,
.provision h2,
.final-band h2 {
  margin: 12px 0 0;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.4vw, 58px);
}

.hero p {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.secondary-button {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-row {
  color: #475569;
  font-size: 13px;
}

.trust-row span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-row strong {
  color: var(--navy);
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(7, 23, 53, 0.98), rgba(9, 31, 72, 0.97)),
    var(--navy);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  position: relative;
  color: #9ff6c7;
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #43d17f;
}

.infra-map {
  position: relative;
  height: 230px;
  margin: 24px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0, 175, 203, 0.16), rgba(244, 81, 19, 0.1));
  background-size: 42px 42px, 42px 42px, auto;
}

.infra-map::before,
.infra-map::after {
  content: "";
  position: absolute;
  inset: 50% 16% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 175, 203, 0.8), transparent);
}

.infra-map::after {
  inset: 18% auto 18% 50%;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(244, 81, 19, 0.74), transparent);
}

.node {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 9px rgba(0, 175, 203, 0.12), 0 0 34px rgba(0, 175, 203, 0.65);
}

.node-core {
  top: calc(50% - 14px);
  left: calc(50% - 14px);
  width: 28px;
  height: 28px;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(244, 81, 19, 0.15), 0 0 40px rgba(244, 81, 19, 0.72);
}

.node-vm {
  top: 18%;
  left: 48%;
}

.node-storage {
  top: 48%;
  right: 16%;
}

.node-backup {
  bottom: 18%;
  left: 48%;
}

.node-edge {
  top: 48%;
  left: 16%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.metric-grid div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.metric-grid small,
.metric-grid span {
  display: block;
  color: #b7c5d8;
}

.metric-grid strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 21px;
  line-height: 1.15;
}

.logo-strip {
  display: flex;
  justify-content: center;
  padding: 26px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand-slogan-image {
  display: block;
  width: min(720px, 88vw);
  height: auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
}

.proof-strip article {
  min-height: 138px;
  padding: 26px;
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy);
  font-size: 18px;
}

.proof-strip span {
  max-width: 420px;
  margin-top: 10px;
  color: var(--text);
}

.brand-slogan {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.brand-slogan span,
.brand-slogan strong {
  display: inline-block;
}

.brand-slogan strong {
  color: var(--orange);
  font-weight: 900;
}

.section,
.platform,
.partners,
.provision {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 42px;
  align-items: start;
}

.section h2,
.platform h2,
.provision h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 56px);
}

.intro p,
.platform p,
.provision p,
.final-band p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 17px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.pricing-note {
  max-width: 820px;
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(244, 81, 19, 0.28);
  border-radius: 8px;
  color: var(--navy);
  background: #fff7f3;
  font-weight: 800;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.price-card,
.checkout-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(7, 23, 53, 0.07);
}

.service-card,
.price-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 175, 203, 0.42);
  box-shadow: 0 22px 64px rgba(7, 23, 53, 0.12);
}

.service-card {
  min-height: 380px;
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.service-card h3,
.price-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p,
.price-card p {
  color: var(--text);
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line);
  color: #475569;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.platform {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  background:
    linear-gradient(90deg, rgba(238, 248, 251, 0.92), rgba(247, 250, 252, 1)),
    var(--mist);
}

.partners {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 23, 53, 0.96), rgba(11, 27, 63, 0.92)),
    var(--navy);
}

.partners p {
  color: var(--white);
}

.partners p {
  max-width: 780px;
  margin: 22px 0 0;
  color: #d6e0ec;
}

.partners .primary-button {
  margin-top: 24px;
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partner-benefits div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.partner-benefits strong,
.partner-benefits span {
  display: block;
}

.partner-benefits strong {
  color: var(--white);
}

.partner-benefits span {
  margin-top: 10px;
  color: #cbd5e1;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.capability-list div {
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(7, 23, 53, 0.08);
  border-left: 4px solid var(--orange);
  box-shadow: 0 12px 34px rgba(7, 23, 53, 0.06);
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list span {
  margin-top: 12px;
  color: var(--text);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  position: relative;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(244, 81, 19, 0.38);
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
  box-shadow: 0 22px 60px rgba(244, 81, 19, 0.13);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange);
  background: #fff0ea;
  font-size: 12px;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin: 22px 0;
  color: var(--navy);
  font-size: 44px;
}

.price-card strong span {
  color: #64748b;
  font-size: 16px;
}

.price-card a {
  width: 100%;
  color: var(--navy);
  background: var(--mist);
}

.price-card.featured a {
  color: var(--white);
  background: var(--orange);
}

.price-promise {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--orange);
  background: #fff0ea;
  font-size: 13px;
  font-weight: 900;
}

.price-features {
  display: grid;
  gap: 10px;
  min-height: 128px;
  margin: 18px 0 0;
  padding: 0;
  color: #475569;
  font-size: 14px;
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 20px;
}

.price-features li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.storage-pricing {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.storage-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.storage-price-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 23, 53, 0.05);
}

.storage-price-grid strong,
.storage-price-grid span {
  display: block;
}

.storage-price-grid strong {
  color: var(--navy);
  font-size: 24px;
}

.storage-price-grid span {
  margin-top: 6px;
  color: var(--orange);
  font-weight: 900;
}

.provision {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(11, 27, 63, 0.95), rgba(7, 23, 53, 0.98)),
    var(--navy);
}

.provision h2,
.provision p {
  color: var(--white);
}

.provision p {
  color: #cbd5e1;
}

.secure-box {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.secure-box span {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
}

.checkout-card {
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.form-row,
.resource-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.form-row + .form-row,
.resource-grid,
.summary {
  margin-top: 18px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.resource-grid input[readonly] {
  background: #f5f7fb;
  color: #475569;
  cursor: default;
}

.retention-hint {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.hidden-field {
  display: none !important;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 175, 203, 0.16);
  border-color: var(--blue);
}

.summary.consulting-summary strong {
  font-size: 26px;
  line-height: 1.1;
}

.summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--mist);
}

.summary span,
.summary small {
  display: block;
  color: #64748b;
}

.summary strong {
  color: var(--orange);
  font-size: 34px;
}

.checkout-card button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.fine-print {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 12px;
  text-align: center;
}

.final-band {
  text-align: center;
  background: var(--white);
}

.final-band h2,
.final-band p {
  margin-left: auto;
  margin-right: auto;
}

.final-band .primary-button {
  margin-top: 24px;
}

.terms-band {
  background: var(--mist);
}

.terms-band .section-heading {
  max-width: 980px;
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 34px;
  max-width: 980px;
}

.terms-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.terms-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.terms-grid p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.terms-grid p + p {
  margin-top: 10px;
}

.terms-meta {
  margin: 8px 0 14px;
  color: var(--orange);
  font-weight: 800;
}

.legal-page {
  background: var(--mist);
}

.terms-page {
  padding-top: 72px;
}

.terms-page h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 48px;
  padding: 56px clamp(24px, 6vw, 88px);
  color: #e5edf8;
  background: var(--navy);
}

.footer-brand {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.footer-brand img {
  width: auto;
  height: 74px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand span {
  color: #e5edf8;
  font-size: 17px;
  line-height: 1.5;
}

.site-footer a {
  color: #e5edf8;
  font-weight: 500;
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
  font-size: 16px;
}

.footer-contact strong {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.footer-contact a {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  line-height: 1.45;
}

.footer-contact a:hover {
  color: var(--aqua);
}

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

  .hero,
  .intro,
  .platform,
  .partners,
  .provision {
    grid-template-columns: 1fr;
  }

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

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

  .storage-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    height: 46px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-panel {
    padding: 18px;
  }

  .metric-grid,
  .service-grid,
  .pricing-grid,
  .capability-list,
  .partner-benefits,
  .resource-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .summary {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    width: 100%;
    justify-items: start;
    text-align: left;
  }
}
