:root {
  --coral: #ff604c;
  --coral-dark: #db3f30;
  --ink: #231f20;
  --ink-soft: #403a3c;
  --paper: #ffffff;
  --mist: #f6f8fb;
  --line: #e6e9ef;
  --blue: #476fba;
  --cyan: #70c8df;
  --green: #57bb95;
  --shadow: 0 24px 70px rgba(35, 31, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 233, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 176px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav,
.header-actions,
.hero-actions,
.hero-stats,
.section-heading {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 14px 34px rgba(255, 96, 76, 0.32);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 36%, rgba(112, 200, 223, 0.22), transparent 26%),
    radial-gradient(circle at 22% 18%, rgba(255, 96, 76, 0.28), transparent 24%),
    linear-gradient(135deg, #1f1b1d 0%, #2f323e 46%, #203d66 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(112, 200, 223, 0.35);
  border-radius: 999px;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: 92px;
  right: 10%;
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: 7%;
  border-color: rgba(255, 96, 76, 0.3);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  gap: 60px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 54px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.support-band h2,
.contact h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.service-area {
  margin: 16px 0 0;
  color: var(--coral);
  font-weight: 900;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 54px;
}

.hero-stats div {
  min-width: 112px;
}

.hero-stats strong {
  display: block;
  color: var(--coral);
  font-size: 2rem;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.mobile-service-strip {
  display: none;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.hero-visual::before {
  position: absolute;
  inset: 26% 0 auto 8%;
  height: 190px;
  content: "";
  background: rgba(255, 255, 255, 0.1);
  filter: blur(34px);
  transform: rotate(-8deg);
}

.screen {
  position: relative;
  margin-left: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.screen-top span,
.command-pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--coral);
}

.screen-top span:nth-child(2) {
  background: var(--cyan);
}

.screen-top span:nth-child(3) {
  background: var(--green);
}

.command-header,
.command-tile,
.command-footer {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 132px;
  padding: 26px;
}

.command-header p,
.command-tile span,
.command-footer span {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.command-header strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

.command-pulse {
  width: 54px;
  height: 54px;
  box-shadow: 0 0 0 12px rgba(255, 96, 76, 0.18);
}

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

.command-tile {
  min-height: 106px;
  padding: 18px;
}

.command-tile strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.12;
}

.command-tile.is-secure {
  background: linear-gradient(145deg, rgba(255, 96, 76, 0.22), rgba(255, 255, 255, 0.08));
}

.command-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.command-bars {
  display: grid;
  flex: 1;
  max-width: 340px;
  gap: 8px;
}

.command-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), rgba(255, 255, 255, 0.14));
}

.command-bars i:nth-child(2) {
  width: 82%;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.14));
}

.command-bars i:nth-child(3) {
  width: 66%;
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.14));
}

.intro,
.services,
.plans,
.process,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 94px 0;
}

.intro {
  text-align: center;
}

.intro h2,
.section-heading h2,
.support-band h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro p {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.section-heading {
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 36px;
}

.text-link {
  color: var(--coral-dark);
  font-weight: 900;
}

.service-grid,
.plan-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.plan-card,
.process-grid div,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(35, 31, 32, 0.06);
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card:nth-child(even) .icon {
  background: var(--coral);
}

.service-card h3,
.plan-card h3,
.process-grid h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.service-card p,
.plan-card p,
.process-grid p,
.contact-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 70px clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(35, 31, 32, 0.94), rgba(35, 31, 32, 0.74)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px);
}

.support-band .section-kicker {
  color: var(--coral);
}

.support-band h2 {
  max-width: 820px;
}

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

.plan-card {
  padding: 30px;
}

.plan-card.featured {
  color: #fff;
  background: linear-gradient(145deg, var(--ink), #343144);
  border-color: transparent;
  transform: translateY(-10px);
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.plan-card li {
  color: var(--ink-soft);
}

.plan-card li::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-right: 10px;
  content: "";
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(45deg);
}

.process {
  border-top: 1px solid var(--line);
}

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

.process-grid div {
  padding: 28px;
}

.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
  padding-top: 30px;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: var(--ink);
  font-weight: 800;
}

.contact-details a {
  width: fit-content;
}

.contact-details a:hover,
.footer-contact a:hover {
  color: var(--coral-dark);
}

.contact-details address {
  font-style: normal;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 96, 76, 0.18);
  border-color: var(--coral);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 54px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.site-footer img {
  width: 150px;
  height: 54px;
  object-fit: contain;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--ink);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--coral-dark);
}

.legal-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 96px;
}

.legal-page h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
}

.legal-page h2 {
  margin: 42px 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
}

.legal-page p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.legal-page a {
  color: var(--coral-dark);
  font-weight: 800;
}

.legal-updated {
  margin-top: 14px;
  font-weight: 800;
}

.site-footer span {
  color: #6f686b;
  font-size: 0.9rem;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-items: start;
  }

  .site-header.nav-open .site-nav {
    gap: 10px;
    padding-top: 12px;
  }

  .site-header.nav-open .header-actions {
    gap: 10px;
  }

  .hero-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .screen {
    max-width: 560px;
    margin: 0;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    padding: 10px 16px;
  }

  .brand img {
    width: 124px;
    height: 44px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    width: 100%;
  }

  .site-header.nav-open .site-nav a,
  .site-header.nav-open .header-actions .button {
    width: 100%;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    gap: 0;
    padding: 34px 0 42px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.2vw, 3rem);
    line-height: 1.02;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .service-area {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    min-height: 48px;
    padding: 0 14px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
  }

  .hero-stats strong {
    font-size: 1.32rem;
  }

  .hero-stats span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-visual {
    display: none;
  }

  .mobile-service-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
  }

  .mobile-service-strip span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .support-band,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

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

  .screen {
    width: 100%;
    padding: 14px;
  }

  .screen-top {
    margin-bottom: 14px;
  }

  .command-header {
    min-height: 104px;
    padding: 18px;
  }

  .command-header strong {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .command-pulse {
    width: 38px;
    height: 38px;
    box-shadow: 0 0 0 8px rgba(255, 96, 76, 0.18);
  }

  .command-tile {
    min-height: 82px;
    padding: 14px;
  }

  .command-tile span,
  .command-footer span {
    font-size: 0.76rem;
  }

  .command-tile strong {
    font-size: 1rem;
  }

  .command-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .intro,
  .services,
  .plans,
  .process,
  .contact {
    width: min(100% - 28px, 1180px);
    padding: 56px 0;
  }

  .intro h2,
  .section-heading h2,
  .support-band h2,
  .contact h2 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .intro {
    text-align: left;
  }

  .intro p {
    margin-left: 0;
    margin-right: 0;
  }

  .intro p,
  .contact-copy p {
    font-size: 1rem;
  }

  .service-grid,
  .plan-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .icon {
    margin-bottom: 26px;
  }

  .plan-card.featured {
    transform: none;
  }

  .contact {
    gap: 30px;
    padding-top: 20px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .hero-inner,
  .intro,
  .services,
  .plans,
  .process,
  .contact {
    width: min(100% - 24px, 1180px);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.85rem);
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stats strong {
    font-size: 1.16rem;
  }

  .hero-stats span {
    font-size: 0.72rem;
  }

  .command-header {
    align-items: flex-start;
    gap: 16px;
  }

  .command-pulse {
    flex: 0 0 auto;
  }

  .command-tile {
    padding: 12px;
  }

  .command-tile strong {
    font-size: 0.92rem;
  }
}
