:root {
  --navy: #0B1A33;
  --navy-2: #071A2F;
  --blue: #1D4ED8;
  --blue-2: #2563EB;
  --cyan: #00B2FF;
  --slate: #334155;
  --gray: #64748B;
  --line: #E4EAF2;
  --soft: #F2F4F7;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(11, 26, 51, 0.16);
  --shadow-soft: 0 18px 45px rgba(11, 26, 51, 0.11);
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate);
  background: var(--white);
  font-family: Inter, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--cyan);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader img {
  width: 86px;
  animation: pulse 1.2s ease-in-out infinite;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.1); opacity: 1; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
}

.topbar a:hover {
  color: var(--cyan);
}

.topbar__tag {
  margin-left: auto;
  color: var(--cyan);
  font-weight: 800;
}

.navwrap {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(228, 234, 242, 0.9);
  backdrop-filter: blur(16px);
}

.header.is-scrolled .navwrap {
  box-shadow: 0 12px 34px rgba(11, 26, 51, 0.09);
}

.navwrap__inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  position: relative;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.25);
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  padding: 13px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 13%, rgba(0, 178, 255, 0.18), transparent 24%),
    radial-gradient(circle at 15% 86%, rgba(29, 78, 216, 0.18), transparent 28%),
    linear-gradient(135deg, #071A2F 0%, #0B1A33 45%, #0F2C5C 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 76%);
}

.hero__shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}

.hero__shape--one {
  right: -110px;
  top: 130px;
  width: 360px;
  height: 360px;
  border: 52px solid var(--cyan);
  border-radius: 50%;
}

.hero__shape--two {
  left: -130px;
  bottom: 80px;
  width: 260px;
  height: 260px;
  border: 46px solid var(--blue);
  transform: rotate(18deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 98px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.appointment h2,
.newsletter h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 730px;
  color: var(--white);
  font-size: clamp(42px, 6.2vw, 82px);
}

.hero__text {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn::after {
  content: "→";
  font-size: 18px;
}

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

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 38px rgba(0, 178, 255, 0.22);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.btn--secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn--light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.1);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__highlights span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  width: 100%;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.32));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.floating-card span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 950;
}

.floating-card--top {
  top: 56px;
  left: -10px;
}

.floating-card--bottom {
  right: -10px;
  bottom: 78px;
}

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -76px;
  padding-bottom: 42px;
}

.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-strip__grid > div {
  position: relative;
  padding: 34px 30px 32px;
  border-right: 1px solid var(--line);
}

.feature-strip__grid > div:last-child {
  border-right: 0;
}

.feature-strip__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
}

.feature-strip strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.feature-strip p {
  margin: 8px 0 0;
  color: var(--gray);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.section-heading h2,
.section-copy h2,
.appointment h2,
.newsletter h2 {
  font-size: clamp(34px, 4.3vw, 56px);
}

.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.appointment p {
  margin: 18px 0 0;
  font-size: 17px;
  color: var(--gray);
}

.about {
  background: linear-gradient(180deg, var(--white), #F8FAFC);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__visual img {
  width: 100%;
}

.experience-card {
  position: absolute;
  right: 10px;
  bottom: 42px;
  width: 230px;
  padding: 22px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: var(--shadow);
}

.experience-card strong,
.experience-card span {
  display: block;
}

.experience-card strong {
  font-size: 26px;
  line-height: 1.05;
}

.experience-card span {
  color: rgba(255, 255, 255, 0.82);
}

.section-copy {
  max-width: 640px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.mission-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mission-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  font-weight: 950;
}

.mission-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.mission-grid p {
  margin: 8px 0 0 !important;
  font-size: 15px !important;
}

.services {
  background: var(--white);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,178,255,0.18), rgba(29,78,216,0.08));
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 178, 255, 0.35);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scale(1.2);
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 950;
}

.service-card h3,
.project-card h3,
.plan-card h3,
.insight-card h3,
.steps h3 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-card p,
.project-card p,
.plan-card p,
.insight-card p,
.steps p {
  margin: 14px 0 0;
  color: var(--gray);
}

.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 950;
}

.service-card a::after {
  content: "→";
}

.project-section {
  background: var(--soft);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.project-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11,26,51,0.1), rgba(11,26,51,0.92)),
    radial-gradient(circle at 76% 20%, rgba(0,178,255,0.45), transparent 32%),
    linear-gradient(135deg, var(--navy), #0E2A55);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.project-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -46px;
  top: -42px;
  border: 34px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.project-card--featured {
  grid-row: span 2;
  min-height: 624px;
  background:
    linear-gradient(180deg, rgba(11,26,51,0.0), rgba(11,26,51,0.92)),
    radial-gradient(circle at 72% 18%, rgba(0,178,255,0.48), transparent 28%),
    linear-gradient(135deg, #071A2F, #0B1A33 60%, #1D4ED8);
}

.project-card span,
.plan-card > span,
.insight-card > span,
.steps span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-card h3,
.project-card p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.project-card p {
  color: rgba(255, 255, 255, 0.76);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 178, 255, 0.19), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(29, 78, 216, 0.22), transparent 30%);
}

.process__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.section-copy--light h2,
.section-copy--light p {
  color: var(--white) !important;
}

.section-copy--light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72) !important;
}

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

.steps article {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
}

.steps article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  background: var(--cyan);
  opacity: 0.1;
  border-radius: 50%;
}

.steps h3 {
  color: var(--white);
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.plans {
  background: linear-gradient(180deg, #F8FAFC, var(--white));
}

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

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

.plan-card--popular {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), #0E2A55 55%, var(--blue));
}

.plan-card--popular::before {
  content: "popular";
  position: absolute;
  top: 28px;
  right: -38px;
  width: 150px;
  padding: 5px 0;
  text-align: center;
  color: var(--navy);
  background: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  transform: rotate(35deg);
}

.plan-card--popular h3,
.plan-card--popular p,
.plan-card--popular li {
  color: var(--white);
}

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

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  color: var(--gray);
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 950;
}

.stats {
  padding: 58px 0;
  background: var(--navy);
  color: var(--white);
}

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

.stats__grid div {
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.stats strong {
  display: block;
  color: var(--cyan);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.insights {
  background: var(--white);
}

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

.insight-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,1)),
    radial-gradient(circle at 82% 18%, rgba(0,178,255,0.22), transparent 30%);
  box-shadow: var(--shadow-soft);
}

.insight-card > span {
  color: var(--blue);
  background: #EAF6FF;
}

.appointment {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11,26,51,0.96), rgba(11,26,51,0.9)),
    radial-gradient(circle at 80% 15%, rgba(0,178,255,0.2), transparent 30%);
}

.appointment::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 90px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 64px solid rgba(0, 178, 255, 0.13);
}

.appointment__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.appointment h2 {
  color: var(--white);
}

.appointment p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.contact-list a:hover {
  color: var(--cyan);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.contact-form label:has(textarea),
.contact-form button,
.contact-form p {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(7, 26, 47, 0.72);
  outline: 0;
  padding: 15px 16px;
}

.contact-form select option {
  color: var(--navy);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 178, 255, 0.12);
}

.contact-form p {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.newsletter {
  margin-top: -1px;
  padding: 0 0 92px;
  background: var(--navy);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 178, 255, 0.18);
}

.newsletter .eyebrow,
.newsletter h2 {
  color: var(--white);
}

.newsletter .eyebrow::before {
  background: var(--white);
}

.footer {
  padding: 80px 0 28px;
  background: #071A2F;
  color: rgba(255, 255, 255, 0.72);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 42px;
}

.footer__brand img {
  width: 210px;
}

.footer__brand p {
  max-width: 360px;
  margin: 22px 0 0;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
}

.footer a,
.footer span {
  display: block;
  margin-top: 10px;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

@media (max-width: 1080px) {
  .quote-btn {
    display: none;
  }

  .hero__grid,
  .about__grid,
  .process__grid,
  .appointment__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .project-grid,
  .services__grid,
  .plans__grid,
  .insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--featured {
    grid-row: auto;
    min-height: 340px;
    grid-column: 1 / -1;
  }

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

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .navwrap__inner {
    min-height: 76px;
  }

  .brand img {
    width: 178px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    align-content: start;
    gap: 0;
    min-height: calc(100vh - 76px);
    padding: 26px 20px;
    background: var(--white);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav a::after {
    display: none;
  }

  .hero__grid {
    padding: 72px 0 120px;
  }

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

  .feature-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .section-heading--split,
  .newsletter__inner,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps,
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .hero__text {
    font-size: 16px;
  }

  .hero__actions,
  .btn {
    width: 100%;
  }

  .feature-strip__grid,
  .services__grid,
  .project-grid,
  .plans__grid,
  .stats__grid,
  .insights__grid,
  .contact-form,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .feature-strip__grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .section-copy h2,
  .appointment h2,
  .newsletter h2 {
    font-size: 34px;
  }

  .service-card,
  .plan-card,
  .insight-card,
  .steps article,
  .contact-form,
  .newsletter__inner {
    padding: 26px;
  }

  .floating-card {
    display: none;
  }

  .experience-card {
    position: static;
    width: auto;
    margin-top: -22px;
  }
}
