/* GortechInn modern multi-file website */
/* Designed as a static IIS-ready site: index.html + assets/css + assets/js + assets/img */

:root {
  --ink: #07111f;
  --ink-soft: #253248;
  --muted: #65728a;
  --paper: #f6f8fc;
  --paper-2: #eef3fb;
  --white: #ffffff;
  --line: rgba(16, 28, 46, 0.11);
  --line-strong: rgba(16, 28, 46, 0.18);
  --blue: #1463ff;
  --blue-dark: #0b3ca8;
  --cyan: #00c8ff;
  --violet: #7c4dff;
  --green: #0fbf83;
  --orange: #ff8a34;
  --shadow: 0 28px 80px rgba(13, 32, 61, 0.13);
  --shadow-strong: 0 36px 100px rgba(13, 32, 61, 0.2);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    "Segoe UI", Roboto, Arial, Helvetica, ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 8%, rgba(0, 200, 255, 0.18), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(124, 77, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, var(--paper) 48%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 70%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.page-glow {
  position: fixed;
  z-index: -4;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.9;
  pointer-events: none;
}

.page-glow-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 120px;
  background: rgba(0, 200, 255, 0.14);
}

.page-glow-two {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 40px;
  background: rgba(124, 77, 255, 0.13);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 253, 255, 0.76);
  border-bottom: 1px solid rgba(16, 28, 46, 0.08);
  backdrop-filter: blur(24px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(251, 253, 255, 0.92);
  box-shadow: 0 14px 40px rgba(13, 32, 61, 0.08);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 48px;
  height: 48px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 750;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: var(--ink-soft);
  font-weight: 850;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 18px 44px rgba(20, 99, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 24px 58px rgba(20, 99, 255, 0.32);
}

.btn-light {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--ink);
}

.btn-light:hover {
  background: #fff;
  border-color: var(--line-strong);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 35px rgba(7, 17, 31, 0.16);
}

.btn-small {
  min-height: 43px;
  padding: 12px 17px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle.open span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.open span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 14px 13px;
  border-radius: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.mobile-nav a:hover {
  background: var(--paper-2);
}

/* Hero */

.section-pad {
  padding: 92px 0;
}

.hero {
  padding-top: 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(20, 99, 255, 0.08);
  border: 1px solid rgba(20, 99, 255, 0.13);
  font-weight: 900;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(15, 191, 131, 0.13);
}

h1 {
  margin: 0 0 24px;
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(3rem, 7.2vw, 6.65rem);
  line-height: 0.9;
  letter-spacing: -0.052em;
}

.hero-lead {
  margin: 0 0 32px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.55vw, 1.25rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 780;
}

/* Hero visual */

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

.orbit-card {
  position: relative;
  min-height: 548px;
  padding: 24px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.66)),
    radial-gradient(circle at 20% 15%, rgba(0, 200, 255, 0.25), transparent 35%),
    radial-gradient(circle at 86% 20%, rgba(124, 77, 255, 0.24), transparent 38%);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: var(--shadow-strong);
}

.orbit-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 32px;
  border: 1px solid rgba(16, 28, 46, 0.08);
  pointer-events: none;
}

.orbit-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20,99,255,0.16), rgba(124,77,255,0.17));
  filter: blur(4px);
}

.orbit-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #06754f;
  background: rgba(15, 191, 131, 0.12);
  border: 1px solid rgba(15, 191, 131, 0.2);
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-code {
  color: var(--muted);
  font-weight: 950;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.network-map {
  position: relative;
  z-index: 2;
  height: 360px;
  margin: 28px 0 20px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 99, 255, 0.12), transparent 36%),
    rgba(246, 248, 252, 0.48);
  border: 1px solid rgba(16,28,46,0.08);
  overflow: hidden;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(20, 99, 255, 0.22);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 7 9;
  animation: dashMove 18s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -220;
  }
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.02em;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 22px 58px rgba(13, 32, 61, 0.14);
}

.node-core {
  left: 50%;
  top: 50%;
  width: 122px;
  height: 122px;
  transform: translate(-50%, -50%);
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 26px 74px rgba(20, 99, 255, 0.25);
  font-size: 1.4rem;
}

.node-core span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
}

.node-a {
  left: 32px;
  top: 54px;
  width: 90px;
  height: 90px;
}

.node-b {
  right: 30px;
  top: 72px;
  width: 98px;
  height: 98px;
}

.node-c {
  left: 26px;
  bottom: 56px;
  width: 98px;
  height: 98px;
}

.node-d {
  right: 32px;
  bottom: 62px;
  width: 96px;
  height: 96px;
}

.dashboard-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dashboard-row div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(16,28,46,0.08);
}

.dashboard-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.16rem;
  letter-spacing: -0.04em;
}

.dashboard-row small {
  color: var(--muted);
  font-weight: 750;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 17px 18px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.88);
  color: #fff;
  box-shadow: 0 24px 70px rgba(7,17,31,0.28);
  border: 1px solid rgba(255,255,255,0.1);
}

.floating-card strong {
  display: block;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.floating-card span {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.floating-card-one {
  left: -24px;
  top: 110px;
  animation: floatUp 7s ease-in-out infinite;
}

.floating-card-two {
  right: -22px;
  bottom: 84px;
  animation: floatDown 8s ease-in-out infinite;
}

@keyframes floatUp {
  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatDown {
  50% {
    transform: translateY(14px);
  }
}

/* Logo cloud */

.logo-cloud {
  padding: 24px 0;
}

.logo-cloud .container {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 16px 42px rgba(13,32,61,0.07);
}

.logo-cloud p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 850;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.client-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-track span {
  flex: 1 1 160px;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: center;
  font-weight: 900;
}

/* Sections */

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.section-heading h2,
.industry-copy h2,
.hosting-card h2,
.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4.25vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section-heading p,
.industry-copy p,
.hosting-card p,
.contact-copy p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.service-card {
  grid-column: span 4;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 18px 50px rgba(13, 32, 61, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 99, 255, 0.22);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-card-large {
  grid-column: span 8;
  background:
    linear-gradient(135deg, rgba(20, 99, 255, 0.1), rgba(124, 77, 255, 0.08)),
    rgba(255,255,255,0.84);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20,99,255,0.11), rgba(0,200,255,0.1));
  border: 1px solid rgba(20,99,255,0.1);
}

.service-icon img {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  margin: 0 0 11px;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tag-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 820;
}

/* Industry */

.industry-section {
  position: relative;
}

.industry-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

.industry-copy {
  padding: 18px 0;
}

.industry-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.industry-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
}

.industry-points strong {
  display: block;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.industry-points span {
  color: var(--muted);
  line-height: 1.55;
}

.industry-card {
  min-height: 520px;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 200, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(124, 77, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #edf4ff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ship-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.ship-card-header span {
  color: var(--muted);
  font-weight: 850;
}

.ship-card-header strong {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.ship-map {
  position: relative;
  min-height: 395px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(7,17,31,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,31,0.045) 1px, transparent 1px),
    rgba(255,255,255,0.58);
  background-size: 32px 32px;
  border: 1px solid rgba(16, 28, 46, 0.08);
  overflow: hidden;
}

.ship-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, rgba(20,99,255,0.06), var(--blue), var(--violet), rgba(20,99,255,0.06));
}

.ship-line::before,
.ship-line::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(20,99,255,0.1);
}

.ship-line::before {
  left: 18%;
}

.ship-line::after {
  right: 18%;
  background: var(--violet);
}

.ship-dot {
  position: absolute;
  width: min(220px, 46%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(16,28,46,0.09);
  box-shadow: 0 22px 54px rgba(13, 32, 61, 0.1);
}

.ship-dot strong {
  display: block;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.ship-dot span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.dot-one {
  left: 8%;
  top: 18%;
}

.dot-two {
  right: 8%;
  top: 24%;
}

.dot-three {
  left: 34%;
  bottom: 14%;
}

/* Process */

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

.process-step {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 48px rgba(13, 32, 61, 0.07);
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20,99,255,0.1), rgba(124,77,255,0.1));
}

.process-step span {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--blue);
  font-weight: 950;
  font-size: 0.84rem;
  letter-spacing: 0.13em;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

/* Hosting */

.hosting-section {
  padding-top: 60px;
}

.hosting-card {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 30px;
  align-items: center;
  padding: 38px;
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(0,200,255,0.32), transparent 32%),
    linear-gradient(135deg, #06142a, #0a2d6a 52%, #39227c);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hosting-card p {
  color: rgba(255,255,255,0.74);
  margin-bottom: 26px;
}

.hosting-card .section-kicker {
  color: #86efff;
}

.hosting-specs {
  display: grid;
  gap: 12px;
}

.hosting-specs div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.15);
}

.hosting-specs span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.64);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hosting-specs strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

/* Contact */

.contact-section {
  padding-bottom: 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

.contact-copy {
  padding: 18px 0;
}

.contact-panel {
  padding: 20px;
  border-radius: 34px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-line {
  display: grid;
  gap: 6px;
  padding: 19px 20px;
  border-radius: 22px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

a.contact-line:hover {
  transform: translateX(4px);
  background: var(--paper);
  border-color: var(--line);
}

.contact-line + .contact-line {
  margin-top: 10px;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-line strong {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: -0.035em;
  word-break: break-word;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-logo {
  width: 42px;
  height: 42px;
}

.footer-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  text-align: right;
  font-weight: 720;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1050px) {
  .desktop-nav,
  .nav-phone,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero-grid,
  .industry-layout,
  .hosting-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .service-card,
  .service-card-large {
    grid-column: auto;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .container,
  .mobile-nav {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 70px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip span {
    flex: 1 1 100%;
  }

  .orbit-card {
    min-height: 480px;
    padding: 18px;
    border-radius: 30px;
  }

  .orbit-card::before {
    inset: 14px;
    border-radius: 22px;
  }

  .orbit-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .network-map {
    height: 310px;
    border-radius: 24px;
  }

  .node-core {
    width: 100px;
    height: 100px;
  }

  .node-core span {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .node-a,
  .node-b,
  .node-c,
  .node-d {
    width: 78px;
    height: 78px;
    font-size: 0.82rem;
  }

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

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .client-track span {
    flex-basis: 100%;
  }

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

  .industry-card {
    min-height: 510px;
    padding: 20px;
    border-radius: 28px;
  }

  .ship-map {
    min-height: 420px;
  }

  .ship-dot {
    width: calc(100% - 40px);
    left: 20px !important;
    right: auto !important;
  }

  .dot-one {
    top: 28px;
  }

  .dot-two {
    top: 158px;
  }

  .dot-three {
    bottom: 28px;
  }

  .hosting-card,
  .contact-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .footer-inner {
    min-height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Mobile readability tuning */
@media (max-width: 700px) {
  body {
    font-size: 16px;
    line-height: 1.55;
  }

  .brand-text strong {
    font-size: 1.08rem;
    letter-spacing: -0.025em;
  }

  .brand-text small {
    font-size: 0.74rem;
  }

  .mobile-nav a {
    font-size: 1rem;
    line-height: 1.35;
  }

  .eyebrow {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero-lead {
    font-size: 1.05rem;
    line-height: 1.72;
  }

  .section-heading h2,
  .industry-copy h2,
  .hosting-card h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.038em;
  }

  .section-heading p,
  .industry-copy p,
  .hosting-card p,
  .contact-copy p,
  .service-card p,
  .process-step p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .service-card h3,
  .process-step h3 {
    font-size: 1.22rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
  }

  .btn {
    font-size: 0.98rem;
    line-height: 1.2;
    min-height: 50px;
  }

  .trust-strip span,
  .client-track span,
  .tag-row span {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .dashboard-row strong,
  .contact-line strong {
    letter-spacing: -0.02em;
  }
}
