/* ====================================
   Data Crux IT Solutions
   Editorial — warm paper, navy + teal
   (matching the brand logo palette)
   ==================================== */

:root {
  --paper: #f6f2e8;       /* warm cream background */
  --paper-2: #ede7d6;     /* deeper cream surfaces */
  --paper-3: #fbf8f1;     /* lightest paper tone */
  --ink: #131c2a;         /* deep navy from logo */
  --ink-2: #2a3445;       /* softer navy */
  --ink-dim: #5d6471;     /* muted slate */
  --rule: #d6cfbe;        /* warm beige hairline */
  --rule-soft: #e6dfcc;
  --teal: #1cb497;        /* brand teal from logo */
  --teal-deep: #0d7c66;
  --shadow: 0 30px 60px -30px rgba(19, 28, 42, 0.22);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.01em;
}

::selection { background: var(--teal); color: var(--paper-3); }

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper-3);
}
.btn--primary:hover {
  background: var(--teal);
  color: var(--ink);
}
.btn--text {
  background: transparent;
  color: var(--ink);
  padding: 11px 4px;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--text:hover {
  color: var(--teal-deep);
  border-bottom-color: var(--teal-deep);
}
.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
}

/* ============================
   Navigation
   ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 232, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-dim);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }

.nav__cta { padding: 9px 18px; font-size: 13.5px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 24px 28px 30px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { font-size: 15px; color: var(--ink); }

/* ============================
   Hero
   ============================ */
.hero { padding: 80px 0 0; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.hero__brand {
  margin-bottom: 32px;
}
.hero__brand img {
  height: 92px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.hero__rule {
  width: 48px;
  height: 1px;
  background: var(--ink);
  flex-shrink: 0;
}
.hero__meta > div { display: flex; flex-direction: column; line-height: 1.3; }
.hero__est {
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.hero__batch {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--teal-deep);
  margin-top: 2px;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 26px;
}
.hero__title em { font-size: 1.05em; }

.hero__sub {
  font-size: 17.5px;
  color: var(--ink-dim);
  max-width: 460px;
  margin: 0 0 36px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.hero__points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  color: var(--ink);
}
.hero__points li span {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--teal-deep);
  font-size: 13px;
}

/* Hero media */
.hero__media {
  position: relative;
  margin: 0;
}
.hero__photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.hero__photo--main {
  aspect-ratio: 4 / 5;
  transform: rotate(-1.2deg);
}
.hero__photo--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
}
.hero__caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  background: rgba(19, 28, 42, 0.55);
  padding: 4px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__photo--small {
  position: absolute;
  bottom: -34px;
  left: -42px;
  width: 46%;
  aspect-ratio: 4 / 3;
  transform: rotate(3deg);
  border: 4px solid var(--paper);
}
.hero__photo--small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__sticker {
  position: absolute;
  top: -28px;
  right: -22px;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 14px 40px -10px rgba(28, 180, 151, 0.4);
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
  border: 4px solid var(--paper);
}
.hero__sticker-line { font-size: 13px; font-style: italic; }
.hero__sticker-line--big {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 4px 0 2px;
  font-style: normal;
}

/* Hero strip */
.hero__strip {
  margin-top: 100px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  background: var(--paper-2);
}
.hero__strip-inner {
  display: flex;
  gap: 18px;
  align-items: baseline;
  flex-wrap: wrap;
}
.hero__strip-label {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--teal-deep);
  font-size: 15px;
  flex-shrink: 0;
}
.hero__strip-list {
  font-size: 14.5px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

/* ============================
   Sections
   ============================ */
.section { padding: 110px 0; }
.section__head {
  max-width: 720px;
  margin: 0 0 64px;
}
.kicker {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--teal-deep);
  margin-bottom: 18px;
}
.kicker--light { color: var(--teal); }
.section__head h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 18ch;
}
.section__head p {
  color: var(--ink-dim);
  font-size: 17px;
  margin: 0;
  max-width: 56ch;
}

/* ============================
   Courses
   ============================ */
.section--courses { padding-top: 120px; }
.courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.course {
  display: block;
  color: var(--ink);
  transition: transform 0.4s ease;
}
.course:hover { transform: translateY(-4px); }

.course--feature {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 6px;
  margin-bottom: 8px;
}
.course--feature .course__photo {
  aspect-ratio: 5 / 4;
  margin: 0;
}
.course--feature h3 {
  font-size: 44px;
  margin: 14px 0 14px;
}
.course--feature p {
  font-size: 16.5px;
  max-width: 40ch;
}

.course__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--paper-2);
  border-radius: 4px;
}
.course__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: contrast(1.02) saturate(0.95);
}
.course:hover .course__photo img {
  transform: scale(1.04);
  filter: contrast(1.05) saturate(1);
}

.course__body { display: flex; flex-direction: column; }
.course__num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--teal-deep);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.course h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.2;
  color: var(--ink);
}
.course p {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.course__cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  padding-bottom: 2px;
  width: fit-content;
}

/* ============================
   Why Us
   ============================ */
.section--why {
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why__head { position: sticky; top: 110px; }
.why__head h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0;
}
.why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.why__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
}
.why__num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--teal-deep);
  padding-top: 4px;
}
.why__list h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.why__list p {
  color: var(--ink-dim);
  font-size: 16px;
  margin: 0;
  max-width: 50ch;
}

/* ============================
   Internship — dark band
   ============================ */
.section--internship { padding: 0; }
.internship {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-3);
}
.internship__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.internship__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(0.7) contrast(1.05);
}
.internship__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,28,42,0.55) 0%, rgba(19,28,42,0.92) 100%);
}
.internship__inner {
  position: relative;
  z-index: 1;
  padding: 130px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.internship .kicker { color: var(--teal); }
.internship__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(64px, 11vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--paper-3);
  margin: 12px 0 28px;
  max-width: 12ch;
}
.internship__title em { color: var(--teal); font-size: 1em; }
.internship__sub {
  max-width: 56ch;
  font-size: 18px;
  color: rgba(246, 242, 232, 0.78);
  margin: 0 0 32px;
  line-height: 1.6;
}
.internship__list {
  list-style: none;
  padding: 24px 0 0;
  margin: 0 0 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  font-size: 15px;
  color: var(--paper-3);
  border-top: 1px solid rgba(246, 242, 232, 0.18);
}
.internship__list li {
  position: relative;
  padding-left: 18px;
}
.internship__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.internship .btn--primary {
  background: var(--teal);
  color: var(--ink);
}
.internship .btn--primary:hover {
  background: var(--paper-3);
  color: var(--ink);
}

/* ============================
   Modes
   ============================ */
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.mode { display: flex; flex-direction: column; }
.mode--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 6px;
  margin-top: 12px;
  overflow: hidden;
}
.mode--wide .mode__photo {
  flex: 1.2;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
}
.mode--wide .mode__body {
  flex: 1;
  padding: 36px;
  justify-content: center;
}

.mode__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 4px;
}
.mode__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
  transition: transform 0.6s ease;
}
.mode:hover .mode__photo img { transform: scale(1.03); }
.mode__body { display: flex; flex-direction: column; }
.mode__tag {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.mode h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.18;
  color: var(--ink);
}
.mode p {
  color: var(--ink-dim);
  font-size: 15.5px;
  margin: 0 0 18px;
  max-width: 46ch;
}
.mode ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mode li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.mode li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 10px;
  height: 1px;
  background: var(--teal-deep);
}

/* ============================
   Contact
   ============================ */
.section--contact {
  border-top: 1px solid var(--rule);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__lead h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
  max-width: 14ch;
  color: var(--ink);
}
.contact__lead p {
  color: var(--ink-dim);
  font-size: 17px;
  margin: 0 0 36px;
  max-width: 44ch;
}
.contact__cards {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.contact__card {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding 0.25s ease;
}
a.contact__card:hover { padding-left: 8px; }
a.contact__card:hover strong { color: var(--teal-deep); }
.contact__label {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--teal-deep);
  font-size: 15px;
}
.contact__card strong {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}

/* Form */
.lead {
  background: var(--paper-3);
  padding: 38px;
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.lead__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.lead label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.lead label span {
  font-size: 12.5px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--ink-dim);
}
.lead__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 0;
}
.lead__row label { margin-bottom: 18px; }
.lead input,
.lead select,
.lead textarea {
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  border-radius: 3px;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.lead input:focus,
.lead select:focus,
.lead textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper-3);
}
.lead select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%),
    linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

/* ============================
   Footer
   ============================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
.footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 560px;
}
.footer__brand img {
  height: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer__brand span {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.footer__meta { text-align: right; }
.footer__meta p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-dim);
}
.footer__call a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.footer__call a:hover { color: var(--teal-deep); }

/* ============================
   Toast
   ============================ */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--ink);
  color: var(--paper-3);
  padding: 12px 22px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 14px 40px -10px rgba(19, 28, 42, 0.35);
  transition: transform 0.4s cubic-bezier(0.4, 1.6, 0.6, 1);
  z-index: 200;
}
.toast.is-shown { transform: translateX(-50%) translateY(0); }

/* ============================
   Responsive
   ============================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .hero { padding: 56px 0 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__media { max-width: 460px; margin: 0 auto; }
  .hero__strip { margin-top: 70px; }

  .courses { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .course--feature {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }
  .course--feature h3 { font-size: 32px; }

  .why { grid-template-columns: 1fr; gap: 40px; }
  .why__head { position: static; }

  .modes { grid-template-columns: 1fr; gap: 28px; }
  .mode--wide { grid-column: span 1; flex-direction: column; }
  .mode--wide .mode__photo { aspect-ratio: 16 / 10; }
  .mode--wide .mode__body { padding: 24px; }

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

  .section { padding: 80px 0; }
  .section__head { margin-bottom: 44px; }
  .internship__inner { padding: 90px 28px; }
}

@media (max-width: 600px) {
  .container, .nav__inner, .internship__inner { padding-left: 22px; padding-right: 22px; }

  .nav__logo { height: 60px; }
  .hero__brand img { height: 72px; }
  .footer__brand img { height: 96px; }
  .hero__title { font-size: clamp(40px, 11vw, 64px); }
  .hero__sticker { width: 110px; height: 110px; right: -10px; top: -22px; }
  .hero__sticker-line--big { font-size: 18px; }

  .courses { grid-template-columns: 1fr; }
  .course--feature { grid-column: span 1; }

  .lead { padding: 26px 22px; }
  .lead__row { grid-template-columns: 1fr; gap: 0; }

  .internship__list { gap: 14px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }

  .why__list li { grid-template-columns: 50px 1fr; gap: 12px; }
}
