/* ================================================================
   Enable Theme — Main Stylesheet
   ================================================================ */
:root {
  --brand: #3B95C9;
  --brand-ink: #1f6f9e;
  --brand-soft: #E8F2F9;
  --ink: #0E1B26;
  --ink-2: #2B3B49;
  --muted: #5A6B7A;
  --line: #E4EAF0;
  --line-2: #EEF2F6;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --bg-tint: #F0F6FB;
  --success: #22C55E;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 0 rgba(15,30,45,.04), 0 12px 32px -16px rgba(15,30,45,.18);
  --shadow-card-hover: 0 1px 0 rgba(15,30,45,.04), 0 24px 48px -20px rgba(15,30,45,.25);
  --cta-radius: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  direction: rtl;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--cta-radius);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px -8px color-mix(in oklab, var(--brand) 55%, transparent);
}
.btn--primary:hover {
  background: var(--brand-ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -10px color-mix(in oklab, var(--brand) 60%, transparent);
  color: #fff;
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: #cfd8e1;
  color: var(--ink);
  text-decoration: none;
}
.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { background: #F4FAFE; transform: translateY(-1px); color: var(--brand); text-decoration: none; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); color: #fff; text-decoration: none; }

/* ========== Layout helpers ========== */
.section { padding: 96px 32px; }
.section__inner { max-width: 1240px; margin: 0 auto; }
.section__head { margin-bottom: 56px; max-width: 720px; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.section__title {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.section__title .muted { color: var(--muted); font-weight: 700; }
.section__sub {
  font-size: 18px; line-height: 1.55;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.site-header__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  gap: 24px;
  direction: rtl;
}
.logo { display: flex; align-items: center; }
.logo img {
  height: 34px; width: auto; display: block;
  filter: brightness(0) saturate(100%) invert(48%) sepia(63%) saturate(456%) hue-rotate(165deg) brightness(91%) contrast(89%);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color .15s;
}
.nav a:hover { color: var(--brand); }
.site-header__cta { display: flex; align-items: center; gap: 14px; }
.header-link {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px; font-weight: 500;
}
.header-link:hover { color: var(--brand); }

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0; top: 65px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: 32px;
    gap: 20px;
    z-index: 49;
  }
  .nav.is-open a { font-size: 20px; }
  .site-header__cta .btn--sm { display: none; }
}

/* ========== Hero ========== */
.hero-a { border-radius: 0; padding-block: 64px 88px; }
.hero-a__inner { padding-inline: 24px; }

.hero-a {
  position: relative;
  background: linear-gradient(180deg, #FAFCFE 0%, #F1F6FB 100%);
  overflow: hidden;
  padding: 88px 56px 96px;
  isolation: isolate;
}
.hero-a__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-a__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,30,45,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,30,45,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, #000 30%, transparent 75%);
}
.hero-a__halo {
  position: absolute;
  width: 520px; height: 520px;
  left: 6%; top: 50%; transform: translateY(-50%);
  background: radial-gradient(closest-side, color-mix(in oklab, var(--brand) 25%, transparent), transparent 70%);
  filter: blur(20px);
}
.hero-a__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-a__copy { padding-block: 8px; }
.hero-a__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 1px 0 rgba(15,30,45,.03);
}
.hero-a__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--success) 18%, transparent);
  display: inline-block;
}
.hero-a__title {
  margin: 22px 0 18px;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.hero-a__title-em { color: var(--brand); }
.hero-a__sub {
  font-size: 19px; line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero-a__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-a__meta {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 22px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}
.hero-a__meta > div { display: flex; flex-direction: column; line-height: 1.15; }
.hero-a__meta strong { font-size: 18px; font-weight: 700; color: var(--ink); }
.hero-a__meta span { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hero-a__meta-sep { width: 1px; height: 28px; background: var(--line); }

/* Stage card */
.hero-a__stage { position: relative; }
.stage-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(15,30,45,.05),
    0 30px 60px -28px rgba(15,30,45,.25),
    0 60px 120px -60px rgba(59,149,201,.18);
  overflow: hidden;
}
.stage-card__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-2);
  background: #FBFCFE;
  direction: ltr;
}
.stage-card__chrome > span {
  width: 10px; height: 10px; border-radius: 50%;
}
.stage-card__chrome > span:nth-child(1) { background: #FF6058; }
.stage-card__chrome > span:nth-child(2) { background: #FFBD2D; }
.stage-card__chrome > span:nth-child(3) { background: #29C940; }
.stage-card__url {
  margin-inline-start: 10px;
  flex: 1;
  font-size: 12px; color: var(--muted);
  text-align: center; direction: ltr;
  background: #F2F5F8;
  padding: 5px 10px; border-radius: 8px;
  max-width: 240px;
}
.stage-card__body {
  position: relative;
  padding: 18px 18px 80px;
  min-height: 320px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 90%, color-mix(in oklab, var(--brand) 12%, transparent), transparent 70%),
    #fff;
}
.stage-tools {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  position: relative;
  z-index: 1;
}
.stage-tool {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(15,30,45,.03);
  animation: chipIn .5s ease both;
}
.stage-tool__icon {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 7px;
}
.stage-tool__icon svg { width: 14px; height: 14px; }
.stage-tool__label {
  font-size: 10px; font-weight: 500; color: var(--ink-2);
  line-height: 1.15;
}
.stage-card__fab {
  position: absolute;
  bottom: 22px; right: 22px;
  z-index: 2;
}
.enable-fab {
  display: inline-flex; align-items: center; gap: 10px; direction: ltr;
}
.enable-fab__btn {
  position: relative;
  width: 64px; height: 64px;
}
.enable-fab__glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--brand) 35%, transparent), transparent 70%);
  filter: blur(2px);
}
.enable-fab__circle {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 12px 28px -8px color-mix(in oklab, var(--brand) 60%, transparent), 0 2px 0 rgba(255,255,255,.25) inset;
}
.enable-fab__circle svg { width: 35px; height: 35px; }
.enable-fab__badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #22C55E;
  border: 2px solid white;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 4px 10px rgba(34,197,94,.45);
}
.enable-fab__badge svg { width: 12px; height: 12px; }
.enable-fab__esc {
  background: var(--brand);
  color: white;
  font-size: 14px; font-weight: 700;
  padding: 11px 17px;
  border-radius: 12px;
  letter-spacing: .05em;
  box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--brand) 50%, transparent);
}

@keyframes chipIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Tools section ========== */
.section--tools { background: var(--bg); }
.tool-groups { display: flex; flex-direction: column; gap: 48px; }
.tool-group__title {
  font-size: 14px; font-weight: 700;
  color: var(--brand);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tool-card {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: color-mix(in oklab, var(--brand) 25%, var(--line));
}
.tool-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 12px;
  margin-bottom: 18px;
}
.tool-card__icon svg { width: 24px; height: 24px; }
.tool-card__title {
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.tool-card__desc {
  font-size: 14.5px; line-height: 1.55;
  color: var(--muted);
}

/* ========== How it works ========== */
.section--how {
  background: var(--bg-soft);
  border-block: 1px solid var(--line-2);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}
.step__num {
  font-size: 14px; font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.step__title {
  font-size: 20px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 15px; line-height: 1.55;
  color: var(--muted);
}

/* ========== Pricing ========== */
.section--pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.price-card--featured {
  background: linear-gradient(180deg, #fff 0%, #F6FBFE 100%);
  border-color: var(--brand);
  box-shadow: 0 24px 48px -24px color-mix(in oklab, var(--brand) 35%, transparent);
  transform: translateY(-8px);
}
.price-card--featured:hover { transform: translateY(-10px); }
.price-card__badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--brand);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  box-shadow: 0 6px 14px -4px color-mix(in oklab, var(--brand) 50%, transparent);
}
.price-card__name {
  font-size: 16px; font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.price-card__tagline {
  font-size: 14px; line-height: 1.5;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 42px;
}
.price-card__price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.price-card__amount {
  font-size: 48px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card__unit {
  font-size: 22px; font-weight: 700;
  color: var(--ink);
}
.price-card__cadence {
  font-size: 14px; color: var(--muted);
  margin-inline-start: 4px;
}
.price-card__features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.price-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.45;
  color: var(--ink-2);
}
.price-card__features svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}
.pricing-note strong { color: var(--ink); font-weight: 700; }

/* ========== Testimonials ========== */
.section--testimonials { background: var(--bg-soft); border-block: 1px solid var(--line-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial__quote-icon {
  color: color-mix(in oklab, var(--brand) 60%, transparent);
  width: 32px; height: 24px;
  flex-shrink: 0;
}
.testimonial__quote-text {
  margin: 0;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
  text-wrap: pretty;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.testimonial__name {
  font-size: 15px; font-weight: 700;
  color: var(--ink);
}
.testimonial__role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ========== FAQ ========== */
.section--faq { background: var(--bg); }
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.faq__item.is-open {
  border-color: color-mix(in oklab, var(--brand) 30%, var(--line));
  box-shadow: var(--shadow-card);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: transparent; border: 0;
  padding: 22px 26px;
  font-family: inherit;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  text-align: right;
  cursor: pointer;
}
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s, background .15s, color .15s;
}
.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
  background: var(--brand-soft);
  color: var(--brand);
}
.faq__a {
  padding: 0 26px 24px;
  display: none;
}
.faq__item.is-open .faq__a {
  display: block;
}
.faq__a p {
  margin: 0;
  font-size: 15.5px; line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

/* ========== CTA band ========== */
.section--cta { padding: 64px 32px; }
.cta-band {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-ink) 100%);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-band__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.cta-band__halo--a {
  width: 380px; height: 380px;
  background: #7FC6E8;
  top: -120px; right: -80px;
}
.cta-band__halo--b {
  width: 420px; height: 420px;
  background: #1B5A82;
  bottom: -180px; left: -100px;
}
.cta-band__inner {
  position: relative;
  padding: 80px 56px;
  text-align: center;
  color: #fff;
}
.cta-band__title {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.cta-band__sub {
  font-size: 18px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.85);
}
.cta-band__ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ========== Footer ========== */
.site-footer {
  background: var(--ink);
  color: #B7C4D2;
}
.site-footer__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  direction: rtl;
}
.site-footer__brand p {
  font-size: 14.5px; line-height: 1.6;
  margin: 16px 0 0;
  max-width: 320px;
  color: #8A9AAA;
}
.site-footer__logo {
  height: 34px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.site-footer__col-title {
  font-size: 13px; font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer__cols a {
  display: block;
  color: #B7C4D2;
  text-decoration: none;
  font-size: 14.5px;
  padding: 5px 0;
  transition: color .15s;
}
.site-footer__cols a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 32px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: #6E7E8F;
  flex-wrap: wrap;
  gap: 12px;
  direction: rtl;
}
.site-footer__disclaimer { max-width: 560px; line-height: 1.5; }

/* ========== Responsive ========== */
@media (max-width: 1100px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) {
  .hero-a__inner { grid-template-columns: 1fr; }
  .hero-a__stage { display: none; }
  .hero-a { padding: 56px 24px 64px; }
  .hero-a__title { font-size: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) { .site-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .tools-grid { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
