:root {
  --ink: #17211f;
  --muted: #5f6f6b;
  --line: #dce7e2;
  --paper: #fbfdfb;
  --soft: #eef6f3;
  --teal: #0d8f83;
  --teal-dark: #09665f;
  --amber: #f0a83a;
  --green: #2fb06f;
  --charcoal: #1f2b2a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 253, 251, 0.96);
  box-shadow: 0 14px 40px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: clamp(82px, 7vw, 118px);
  max-width: min(34vw, 300px);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: none;
}

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

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.lang-switch button {
  min-width: 34px;
  border: 0;
  border-radius: 6px;
  padding: 6px 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.lang-switch button.is-active {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 22, 20, 0.92) 0%, rgba(11, 22, 20, 0.72) 42%, rgba(11, 22, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 22, 20, 0.52) 0%, rgba(11, 22, 20, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 94vh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 56px;
  flex-direction: column;
  justify-content: center;
}

.commerce-preview {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: min(360px, 34vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(251, 253, 251, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.commerce-toolbar,
.commerce-product,
.commerce-metrics,
.checkout-flow {
  display: grid;
  gap: 10px;
}

.commerce-toolbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 800;
}

.commerce-toolbar strong {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: #dff4ee;
  font-size: 12px;
}

.commerce-product {
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 143, 131, 0.9), rgba(240, 168, 58, 0.82)),
    var(--soft);
}

.commerce-product strong,
.commerce-product span,
.commerce-product em {
  display: block;
}

.commerce-product span,
.commerce-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.commerce-product em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.commerce-metrics {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}

.commerce-metrics div {
  padding: 14px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.commerce-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 21px;
}

.checkout-flow {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.checkout-flow span {
  position: relative;
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.checkout-flow span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  transform: translateX(-50%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
}

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

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: var(--white);
  background: var(--charcoal);
}

.hero-stats {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(11, 22, 20, 0.34);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 88px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  padding: 46px 0;
  background: var(--charcoal);
  color: var(--white);
}

.intro-grid,
.hosting-grid,
.faq-layout,
.contact-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.intro-grid h2,
.section-heading h2,
.hosting-grid h2,
.faq-layout h2,
.contact-box h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.section-copy,
.contact-box p,
.service-card p,
.process-grid p,
.package-card p,
.package-card li,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.service-grid,
.silo-grid,
.advantage-grid,
.process-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.silo-card,
.advantage-grid article,
.process-grid article,
.package-card,
.hosting-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 33, 31, 0.05);
}

.service-card {
  min-height: 278px;
  padding: 26px;
}

.service-card .icon,
.silo-card .icon {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.seo-silo-section {
  background: var(--paper);
}

.silo-card {
  display: flex;
  min-height: 292px;
  padding: 26px;
  flex-direction: column;
}

.silo-card p {
  color: var(--muted);
  line-height: 1.7;
}

.silo-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 800;
}

.silo-card a:hover {
  color: var(--teal);
}

h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.hosting-section,
.package-section,
.advantage-section {
  background: var(--soft);
}

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

.advantage-grid article {
  padding: 28px;
}

.advantage-grid strong {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.advantage-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list span::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  content: "\2713";
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.hosting-panel {
  padding: 24px;
}

.server-row {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.server-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(13, 143, 131, 0.12);
}

.server-dot.amber {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(240, 168, 58, 0.15);
}

.server-dot.green {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47, 176, 111, 0.15);
}

.server-row strong,
.server-row small {
  display: block;
}

.server-row small,
.usage-card span {
  color: var(--muted);
}

.server-row em {
  font-style: normal;
  font-weight: 800;
}

.usage-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.usage-card strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.usage-bar {
  height: 10px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.usage-bar span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--amber);
}

.process-grid article {
  padding: 24px;
}

.process-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--charcoal);
  font-weight: 800;
}

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

.package-card {
  position: relative;
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(13, 143, 131, 0.42);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--teal-dark);
  background: #dff4ee;
  font-size: 12px;
  font-weight: 800;
}

.package-card strong {
  display: block;
  margin: 18px 0;
  font-size: 18px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-section {
  padding-top: 28px;
}

.contact-box {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background: var(--charcoal);
}

.contact-box p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: rgba(11, 22, 20, 0.72);
  }

  .hero-content {
    min-height: 760px;
  }

  .commerce-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 100%);
    margin-top: 24px;
  }

  .hero-stats,
  .intro-grid,
  .hosting-grid,
  .faq-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-actions {
    justify-content: flex-start;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand-logo {
    height: 72px;
    max-width: 170px;
  }

  .hero-content {
    width: calc(100% - 32px);
    min-height: 980px;
    padding-top: 112px;
  }

  .hero h1 {
    width: min(330px, 100%);
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-copy {
    width: min(330px, 100%);
    font-size: 16px;
    line-height: 1.55;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-stats,
  .silo-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .commerce-preview {
    width: min(340px, 100%);
    padding: 14px;
  }

  .commerce-product {
    grid-template-columns: 46px 1fr;
  }

  .commerce-product em {
    grid-column: 2;
  }

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

}
