@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --color-primary: #0094ff;
  --color-primary-dark: #0064d6;
  --color-secondary: #0b1f3a;
  --color-secondary-dark: #07162a;
  --color-background: #020611;
  --color-text: #e6f1ff;
  --color-muted: rgba(230, 241, 255, 0.72);
  --shadow-soft: 0 18px 36px rgba(0, 41, 82, 0.22);
  --shadow-button: 0 14px 24px rgba(0, 148, 255, 0.32);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(140% 140% at 25% 5%, #0e3b73 0%, #020611 60%, #01030a 100%);
  color: var(--color-text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", "Inter Tight", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

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

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

.page-container {
  flex: 1;
}

.section {
  padding: 100px 24px;
  display: flex;
  justify-content: center;
  position: relative;
}

.section__content {
  width: 100%;
  max-width: var(--max-width);
}

.section--light {
  /* background: radial-gradient(140% 140% at 30% 10%, rgba(0, 148, 255, 0.12), rgba(255, 255, 255, 0.94)); */
  background: white;
  color: var(--color-secondary);
}

.section--light::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(85% 85% at 18% 25%, rgba(0, 103, 235, 0.18), transparent),
    radial-gradient(100% 100% at 85% 20%, rgba(63, 197, 255, 0.16), transparent),
    radial-gradient(120% 120% at 50% 100%, rgba(255, 255, 255, 0.85), transparent); */
  opacity: 0.9;
  pointer-events: none;
}

.section--light .section__content {
  position: relative;
  z-index: 1;
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5,
.section--light h6 {
  color: var(--color-secondary);
}

.features__grid h4, .features__grid h5 {
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 0px;
    margin-top: 15px;
}

.features__grid h5 {
    margin-bottom: 15px;
    margin-top: 0px;
    font-weight: 400;
}

.pillar-card__description {
    color: #FFFFFF !important;
    text-align: left !important;
}

.section--light p {
  color: rgba(7, 22, 42, 0.75);
}

.section__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.section--light .section__eyebrow {
  color: rgba(7, 22, 42, 0.55);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: white;
  border-bottom: 1px solid rgba(0, 148, 255, 0.15);
  border-radius: 0 0 20px 20px;
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand__mark {
  width: 40px;
  height: 40px;  
  display: grid;
  place-items: center;
}

.brand__mark::after {
  content: "";
  width: 18px;
  height: 12px;
  transform: rotate(-45deg);
}

.brand__name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-secondary);
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav__link {
  color: var(--color-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-text);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.button--primary {
  background: linear-gradient(135deg, #00a4ff 0%, #0070f3 100%);
  color: #ffffff;
  box-shadow: var(--shadow-button);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #06baff 0%, #0a82ff 100%);
}

.button--ghost {
  background: rgba(230, 241, 255, 0.06);
  color: var(--color-text);
  border: 1px solid rgba(230, 241, 255, 0.18);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(230, 241, 255, 0.12);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  padding: 160px 24px 140px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('/assets/a065c0b04be977960d63d3033c705b53968e1662.png') no-repeat center center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(60% 70% at 65% 25%, rgba(0, 148, 255, 0.38), transparent),
    radial-gradient(40% 40% at 15% 65%, rgba(0, 36, 84, 0.8), transparent),
    radial-gradient(70% 80% at 50% 110%, rgba(1, 3, 10, 0.8), transparent); */
  pointer-events: none;
  opacity: 0.8;
}

.hero__content {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  text-align: center;
  gap: 32px;
  z-index: 1;
}

.hero__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.hero__icon svg {
  width: 42px;
  height: 42px;
  fill: white;
}

.hero__headline {
  font-size: clamp(2.5rem, 4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions .button {
  min-width: 160px;
}

/* Features */

#features {
    padding-left: 0;
    padding-right: 0;
    background-color: #fff;
    padding-bottom: 0;
}

#features::before {
  content: "";
  position: absolute;
  background: url('/assets/038796f520682faff613bd8f25ed5dd2764632b5.png') no-repeat left top;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.features {
  position: relative;
  overflow: hidden;
}

.features__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.features__headline {
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.01em;
  font-weight: bold;
}

.features__subtitle {
  font-size: 1.05rem;
  max-width: 720px;
  color: rgba(7, 22, 42, 0.6);
}

.features__pillars {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 68px 48px;
  
  background: url('/assets/a934db2b6137ccb11cc814ea49cc0f772cb97e4e.jpg') no-repeat center center;
  background-size: cover;
  /* box-shadow: 0 32px 64px rgba(1, 24, 52, 0.3); */
  position: relative;
  overflow: hidden;
}

.features__pillars::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  /* background: radial-gradient(70% 60% at 20% 25%, rgba(0, 192, 255, 0.38), transparent),
    radial-gradient(80% 80% at 80% 20%, rgba(0, 123, 255, 0.32), transparent); */
  /* opacity: 0.9; */
  pointer-events: none;
}

.features__pillars > * {
  position: relative;
  z-index: 1;
}

.features__pillars-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: #f2f7ff;
  font-weight: bold;
}

.features__pillars-subtitle {
  font-size: 1.05rem;
  color: rgba(230, 241, 255, 0.84);
  max-width: 720px;
}

.section--light .features__pillars-title {
  color: #f2f7ff;
}

.section--light .features__pillars-subtitle {
  color: rgba(230, 241, 255, 0.84);
}

.features__grid {
  margin-top: 32px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pillar-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 26px;
  background-color: #001121BF;
  box-shadow: 0 26px 50px rgba(1, 13, 30, 0.28);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 0px;
  overflow: hidden;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(120% 120% at 15% 20%, rgba(0, 157, 255, 0.25), transparent),
    radial-gradient(120% 120% at 85% 90%, rgba(0, 119, 255, 0.5), transparent); */
  opacity: 0.9;
  pointer-events: none;
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.pillar-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #E9F1FE;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pillar-card__icon svg {
  width: 26px;
  height: 26px;
}

.pillar-card__title {
  font-size: 1.3rem;
  color: #ffffff;
}

.pillar-card__subtitle {
  font-size: 1.05rem;
  color: rgba(230, 241, 255, 0.72);
  margin-bottom: 8px;
}

.pillar-card__description {
  font-size: 0.98rem;
  color: rgba(230, 241, 255, 0.78);
}

/* What We Offer */

.what-we-offer {
  /* background: radial-gradient(120% 120% at 70% 0%, rgba(2, 6, 17, 0), rgba(2, 6, 17, 0.8)),
    linear-gradient(180deg, rgba(240, 247, 255, 1) 0%, rgba(229, 239, 255, 0.6) 100%); */
  background: white;
  color: var(--color-secondary);
}

.what-we-offer__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-we-offer__headline {
  font-size: clamp(2rem, 5vw, 2.9rem);
  color: var(--color-secondary);
}

.what-we-offer__description {
  font-size: 1.05rem;
  color: rgba(7, 22, 42, 0.72);
  line-height: 1.7;
}

.offer-card {
  margin: 0 auto;
  padding: 56px 64px;
  max-width: 960px;
  border-radius: 32px;
  background: linear-gradient(160deg, #2f528f 0%, #040404 100%);
  color: #f5f8ff;
  text-align: center;
  box-shadow: 0 32px 48px rgba(0, 32, 68, 0.24);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-card__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #f5f8ff;
}

.offer-card__body {
  font-size: 1.05rem;
  color: rgba(245, 248, 255, 0.85);
  line-height: 1.7;
}

/* Solutions */

.solutions {
  background: radial-gradient(140% 120% at 10% 0%, rgba(0, 118, 255, 0.28), transparent 55%),
    radial-gradient(160% 100% at 90% -20%, rgba(0, 36, 82, 0.65), transparent 60%),
    linear-gradient(180deg, rgba(4, 10, 24, 1) 0%, rgba(2, 5, 15, 1) 100%);
  color: #f1f6ff;
  overflow: hidden;
}

.solutions .section__content {
  position: relative;
}

.solutions::before {
  content: "";
  position: absolute;
  inset: -30% 0 0;
  background: radial-gradient(80% 50% at 50% 0%, rgba(11, 94, 215, 0.45), transparent 68%);
  opacity: 0.9;
  pointer-events: none;
}

.solutions__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solutions__headline {
  font-size: clamp(2rem, 5vw, 2.9rem);
  color: #f7fbff;
}

.solutions__subtitle {
  font-size: 1.05rem;
  color: rgba(231, 242, 255, 0.72);
  line-height: 1.7;
}

.solutions__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.solution-card {
  background: linear-gradient(185deg, rgba(7, 20, 36, 0.95) 0%, rgba(1, 6, 14, 0.92) 70%);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0, 18, 38, 0.38);
  min-height: 100%;
}

.solution-card__body {
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-card__title {
  font-size: 1.6rem;
  color: #f7fbff;
  text-align: center;
}

.solution-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-card__list li {
  position: relative;
  padding: 16px 18px 16px 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30, 60, 104, 0.52) 0%, rgba(4, 12, 28, 0.85) 100%);
  color: rgba(238, 247, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.solution-card__list li::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #63d9ff 0%, #52a2ff 100%);
  box-shadow: 0 6px 16px rgba(41, 139, 255, 0.45);
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
}

.solution-card__list li::after {
  content: "";
  position: absolute;
  left: 24px;
  top: calc(50% - 4px);
  width: 9px;
  height: 5px;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.solution-card__image {
  margin: 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}

.solution-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Insights */

.insights {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(0, 118, 255, 0.18), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.insights .section__content {
  position: relative;
  z-index: 1;
}

.insights__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insights__headline {
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.insights__subtitle {
  font-size: 1.05rem;
  color: rgba(7, 22, 42, 0.65);
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.insight-card {
  background: #0b1224;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(3, 15, 36, 0.18);
  display: flex;
  flex-direction: column;
}

.insight-card__media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-card__body {
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(5, 11, 22, 1) 0%, rgba(3, 8, 18, 0.92) 100%);
  color: #f5f8ff;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.insight-card__title {
  font-size: 1.35rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: white !important;
}

.insights__cta {
  display: flex;
  justify-content: center;
}

.insights__cta-button {
  gap: 8px;
  padding: 14px 28px;
}

.insights__cta-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Contact */

.contact {
  background: radial-gradient(145% 120% at 20% 0%, rgba(0, 118, 255, 0.32), rgba(0, 26, 66, 0.92)),
    radial-gradient(160% 160% at 85% 20%, rgba(0, 200, 255, 0.28), transparent 70%),
    linear-gradient(180deg, rgba(2, 7, 16, 1) 0%, rgba(3, 12, 30, 1) 100%);
  color: #f5f8ff;
}

.contact__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__headline {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #f7fbff;
}

.contact__subtitle {
  font-size: 1.05rem;
  color: rgba(228, 238, 255, 0.8);
  line-height: 1.7;
}

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

.contact-form__fieldset {
  border: none;
  padding: 40px 44px;
  border-radius: 28px;
  background: #f8fbff;
  color: var(--color-secondary);
  box-shadow: 0 28px 56px rgba(0, 40, 98, 0.3);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__fieldset legend {
  font-family: "Space Grotesk", "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.contact-form__hint {
  font-size: 0.95rem;
  color: rgba(7, 22, 42, 0.55);
  margin: 0;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.contact-form__field input,
.contact-form__field textarea {
  border-radius: 12px;
  border: 1px solid rgba(6, 30, 71, 0.14);
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #ffffff;
  color: var(--color-secondary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field input:focus-visible,
.contact-form__field textarea:focus-visible {
  outline: none;
  border-color: rgba(0, 118, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 118, 255, 0.15);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(7, 22, 42, 0.35);
}

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

.contact-form__submit {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.contact-form__privacy {
  font-size: 0.85rem;
  color: rgba(7, 22, 42, 0.5);
  text-align: center;
  margin: 0;
}

.contact-form__privacy a {
  color: rgba(0, 118, 255, 0.9);
}

.footer {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  color: var(--color-secondary);
  padding: 80px 24px 40px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer__brand {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.footer__name {
  font-family: "Space Grotesk", "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.footer__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, #0d6efd 0%, #08d9ff 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 28px rgba(8, 74, 153, 0.24);
  position: relative;
}

.footer__mark::after {
  content: "";
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 2.5px solid white;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.footer__description {
  margin: 0;
  color: rgba(7, 22, 42, 0.65);
  line-height: 1.7;
  max-width: 360px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b63f6;
  font-weight: 600;
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__links {
  display: flex;
  gap: 56px;
  flex: 2 1 360px;
  flex-wrap: wrap;
}

.footer__column {
  min-width: 180px;
}

.footer__column-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--color-secondary);
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: rgba(7, 22, 42, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--color-secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(7, 22, 42, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer__copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(7, 22, 42, 0.5);
}

.features__columns {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  text-align: left;
  color: rgba(7, 22, 42, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.features__columns p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header__inner {
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .nav__links {
    gap: 16px;
  }

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

  .features__pillars {
    padding: 56px 36px;
    gap: 18px;
  }

  .offer-card {
    padding: 48px 40px;
  }

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

  .solution-card__image img {
    height: 200px;
  }

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

  .features__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__inner {
    gap: 48px;
  }

  .footer__links {
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    padding: 16px 20px;
  }

  .nav__links {
    display: none;
  }

  .hero {
    padding: 120px 20px 120px;
  }

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

  .features__pillars {
    margin-top: 56px;
    padding: 44px 24px;
  }

  .offer-card {
    padding: 40px 28px;
  }

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

  .solution-card__body {
    padding: 36px 28px 28px;
  }

  .solution-card__list li {
    padding: 14px 16px 14px 50px;
  }

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

  .insight-card__media img {
    height: 190px;
  }

  .insight-card__body {
    padding: 24px 22px;
  }

  .contact-form__fieldset {
    padding: 32px 32px;
  }

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

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer__links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__column {
    min-width: auto;
  }
}

