@import "tailwindcss";
@source "../";

:root {
  --navy: #07172f;
  --navy-2: #0b2142;
  --blue: #155eef;
  --blue-2: #2f7df4;
  --cyan: #15b8d4;
  --ink: #10213b;
  --muted: #66758c;
  --line: #e5eaf1;
  --soft: #f5f8fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: white;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.topbar {
  background: var(--navy);
  color: #c7d5e9;
  font-size: 12px;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-inner div {
  display: flex;
  gap: 10px;
}

.topbar a:hover {
  color: white;
}

.separator {
  opacity: .35;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(226,232,240,.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,var(--blue),var(--cyan));
  color: white;
  font-weight: 900;
  font-size: 23px;
  box-shadow: 0 10px 24px rgba(21,94,239,.24);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 21px;
  letter-spacing: .04em;
  color: var(--navy);
}

.brand small {
  font-size: 9px;
  letter-spacing: .29em;
  color: var(--blue);
  margin-top: 5px;
  font-weight: 700;
}

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

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #42526a;
  transition: .2s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 10px;
  background: linear-gradient(135deg,var(--blue),#2674ef);
  color: white;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(21,94,239,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(21,94,239,.3);
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
}

.button-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid #d8e0eb;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 0;
  background:
    radial-gradient(circle at 10% 20%,rgba(21,94,239,.08),transparent 28%),
    radial-gradient(circle at 90% 20%,rgba(21,184,212,.08),transparent 25%),
    linear-gradient(180deg,#fbfdff 0%,#f7faff 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(10,38,79,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(10,38,79,.035) 1px,transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom,black,transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  right: -280px;
  top: -120px;
  border: 70px solid rgba(21,94,239,.035);
}

.hero-orb-two {
  width: 240px;
  height: 240px;
  left: -160px;
  bottom: 30px;
  border: 45px solid rgba(21,184,212,.045);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue);
  border: 1px solid #dce9ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero h1 {
  margin: 22px 0 22px;
  max-width: 670px;
  color: var(--navy);
  font-size: clamp(44px,5.2vw,72px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-text {
  max-width: 650px;
  margin: 0;
  color: #5e6e84;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 31px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 29px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #53647a;
  font-size: 12px;
  font-weight: 600;
}

.trust-row svg {
  color: #16a66a;
}

.hero-visual {
  position: relative;
  padding: 25px 0 35px;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(207,219,235,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 35px 80px rgba(20,52,94,.16);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
  height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf0f5;
  color: #758398;
  font-size: 11px;
}

.window-bar > div {
  display: flex;
  gap: 6px;
}

.window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dce2eb;
}

.dashboard-content {
  min-height: 385px;
  display: grid;
  grid-template-columns: 62px 1fr;
}

.dash-sidebar {
  background: var(--navy);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.mini-logo {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 12px;
  font-weight: 900;
  border-radius: 8px;
  background: var(--blue);
  margin-bottom: 10px;
}

.dash-sidebar span {
  display: block;
  width: 25px;
  height: 7px;
  border-radius: 20px;
  background: rgba(255,255,255,.13);
}

.dash-sidebar .active-line {
  background: var(--blue-2);
}

.dash-main {
  padding: 25px;
  background: #f8fafd;
}

.dash-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-heading > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dash-heading small {
  color: #8592a5;
  font-size: 10px;
}

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

.status-dot {
  padding: 6px 10px;
  border-radius: 20px;
  background: #e7f8ef;
  color: #15945c;
  font-size: 10px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin: 22px 0 13px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  border-radius: 11px;
  background: white;
  border: 1px solid #edf1f6;
}

.metric svg {
  color: var(--blue);
  margin-bottom: 4px;
}

.metric small {
  color: #8491a3;
  font-size: 9px;
}

.metric strong {
  color: #243752;
  font-size: 11px;
}

.chart-card {
  padding: 16px;
  border-radius: 12px;
  background: white;
  border: 1px solid #edf1f6;
}

.chart-top {
  display: flex;
  justify-content: space-between;
  color: #53647b;
  font-size: 10px;
  font-weight: 700;
}

.chart-top span:last-child {
  color: #15945c;
}

.bars {
  height: 105px;
  margin-top: 17px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.bars i {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(to top,var(--blue),#79b7ff);
}

.activity-card {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  margin-top: 12px;
  background: #edf4ff;
  border-radius: 10px;
  color: var(--blue);
}

.activity-card > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: white;
  border-radius: 8px;
}

.activity-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.activity-card strong {
  color: #233d63;
  font-size: 10px;
}

.activity-card small {
  color: #73859f;
  font-size: 8px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid #e7ecf3;
  box-shadow: 0 16px 35px rgba(16,42,79,.15);
}

.floating-card-one {
  left: -30px;
  bottom: 13px;
}

.floating-card-two {
  right: -20px;
  top: 3px;
}

.float-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #edf4ff;
  color: var(--blue);
}

.floating-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-card small {
  color: #8895a7;
  font-size: 9px;
}

.floating-card strong {
  color: #263a58;
  font-size: 11px;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: 85px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2e8f1;
  color: #708096;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b7c2d1;
}

.section {
  padding: 100px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 45px;
}

.section-heading > div {
  max-width: 650px;
}

.section-heading > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.section-label {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}

.section h2,
.cta-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px,4vw,48px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.services-section {
  background: white;
}

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

.service-card {
  min-height: 280px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #cbdcf8;
  box-shadow: 0 20px 45px rgba(22,54,94,.09);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-top > span {
  color: #c3ccd8;
  font-size: 11px;
  font-weight: 800;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--blue);
}

.service-card h3 {
  margin: 27px 0 11px;
  color: var(--navy);
  font-size: 18px;
}

.service-card p {
  margin: 0;
  min-height: 68px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card a,
.simple-link {
  margin-top: 21px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%,rgba(21,94,239,.22),transparent 30%),
    var(--navy);
  color: white;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.dark-section h2 {
  color: white;
}

.light-label {
  color: #70a9ff;
}

.muted-light {
  margin: 20px 0 0;
  color: #aab9ce;
  line-height: 1.8;
  font-size: 14px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 38px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
}

.feature-list svg {
  color: #62a2ff;
}

.feature-list span {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list strong {
  font-size: 13px;
}

.feature-list small {
  color: #91a2ba;
  line-height: 1.5;
}

.capability-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}

.capability-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.capability-heading > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.capability-heading small {
  color: #7892b5;
  font-size: 9px;
  letter-spacing: .13em;
}

.capability-heading strong {
  font-size: 20px;
}

.capability-heading svg {
  color: #6aa8ff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px 25px;
  margin: 28px 0;
}

.capability-grid > div {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #d3deed;
  font-size: 12px;
}

.capability-grid svg {
  color: #4f98ff;
  flex-shrink: 0;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #77aeff;
  font-size: 12px;
  font-weight: 800;
}

.tech-section {
  background: #f7f9fc;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.center-heading p {
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
}

.tech-list span {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: white;
  border: 1px solid #e5eaf1;
  color: #354a67;
  font-size: 13px;
  font-weight: 800;
}

.industry-section {
  background: white;
}

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

.industry-card {
  min-height: 100px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.industry-card > svg:first-child {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 11px;
  color: var(--blue);
  background: #edf4ff;
}

.industry-card strong {
  color: var(--navy);
  font-size: 14px;
}

.industry-card > svg:last-child {
  color: #a3afbf;
}

.process-section {
  background: #f7f9fc;
}

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

.process-card {
  position: relative;
  min-height: 220px;
  padding: 23px 18px;
  border-radius: 13px;
  background: white;
  border: 1px solid #e5eaf1;
}

.process-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.process-card h3 {
  margin: 50px 0 10px;
  color: var(--navy);
  font-size: 15px;
}

.process-card p {
  margin: 0;
  color: #748297;
  font-size: 11px;
  line-height: 1.65;
}

.cta-section {
  padding: 75px 0;
  background: linear-gradient(125deg,#155eef,#0d4dd0);
  color: white;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.cta-inner > div:first-child {
  max-width: 720px;
}

.cta-section span {
  display: block;
  margin-bottom: 10px;
  color: #c9dcff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  margin: 14px 0 0;
  max-width: 630px;
  color: #dce8ff;
  font-size: 13px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.button-white {
  background: white;
  color: var(--blue);
  box-shadow: none;
}

.button-outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: none;
}

.footer {
  padding: 70px 0 0;
  background: #061326;
  color: #9cacbf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4,1fr);
  gap: 45px;
  padding-bottom: 55px;
}

.brand-footer strong {
  color: white;
}

.footer-brand p {
  max-width: 290px;
  margin: 20px 0 0;
  color: #8394aa;
  font-size: 12px;
  line-height: 1.75;
}

.footer h4 {
  margin: 0 0 19px;
  color: white;
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid a,
.footer-grid span {
  font-size: 11px;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  min-height: 68px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

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

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .tech-list {
    grid-template-columns: repeat(4,1fr);
  }

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

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

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

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > span {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav > .button {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

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

  .hero-text {
    font-size: 15px;
  }

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

  .hero-bottom {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .dashboard-content {
    grid-template-columns: 48px 1fr;
  }

  .dash-main {
    padding: 15px;
  }

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

  .metric:nth-child(n+2) {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .services-grid,
  .industry-grid,
  .feature-list,
  .capability-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-inner {
    display: block;
  }

  .cta-actions {
    margin-top: 28px;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 36px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

/* =========================================================
   INNER WEBSITE PAGES
   ========================================================= */

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(21,94,239,.10), transparent 28%),
    linear-gradient(180deg,#f9fbff,#f3f7fd);
  border-bottom: 1px solid #e6ebf2;
}

.inner-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,38,79,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(10,38,79,.035) 1px,transparent 1px);
  background-size: 42px 42px;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.inner-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px,5vw,64px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.inner-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #63738a;
  font-size: 16px;
  line-height: 1.8;
}

.inner-content-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.inner-card {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  transition: .25s ease;
}

.inner-card:hover {
  transform: translateY(-4px);
  border-color: #cbdcf8;
  box-shadow: 0 18px 40px rgba(22,54,94,.08);
}

.inner-card-number {
  float: right;
  color: #c4cdda;
  font-size: 11px;
  font-weight: 900;
}

.inner-card > svg {
  color: var(--blue);
}

.inner-card h3 {
  margin: 27px 0 11px;
  color: var(--navy);
  font-size: 17px;
}

.inner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

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

.contact-card {
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.contact-card svg {
  color: var(--blue);
}

.contact-card span {
  color: #8794a6;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-card strong {
  color: var(--navy);
  font-size: 16px;
}

.quote-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.quote-info h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.quote-info > p {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.quote-check {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 13px 0;
  color: #40536d;
  font-size: 13px;
  font-weight: 700;
}

.quote-check svg {
  color: #18a66a;
}

.quote-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 25px 60px rgba(25,52,88,.08);
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #3d506b;
  font-size: 12px;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dce3ec;
  border-radius: 9px;
  outline: none;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.form-grid textarea {
  resize: vertical;
  line-height: 1.6;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #7eabf5;
  box-shadow: 0 0 0 3px rgba(21,94,239,.08);
}

.full-field {
  grid-column: 1 / -1;
}

.quote-submit {
  margin-top: 24px;
}

.form-note {
  display: block;
  margin-top: 15px;
  color: #8b98aa;
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .inner-content-grid {
    grid-template-columns: repeat(2,1fr);
  }

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

  .quote-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .inner-hero {
    padding: 65px 0;
  }

  .inner-hero h1 {
    font-size: 38px;
  }

  .inner-content-grid {
    grid-template-columns: 1fr;
  }

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

  .full-field {
    grid-column: auto;
  }

  .quote-form {
    padding: 22px;
  }
}
