﻿:root {
  --pink: #f39200;
  --pink-dark: #d67e00;
  --pink-soft: #fff3e0;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --bg: #f7f7f9;
  --white: #ffffff;
  --dark: #222;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --container: 1180px;
  --font: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  direction: rtl;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(243, 146, 0, 0.25);
}

.btn-primary:hover {
  background: var(--pink-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  color: var(--pink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: #f3f3f3;
  border-radius: 999px;
  padding: 0.2rem;
}

.lang-switch a {
  min-width: 42px;
  text-align: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #555;
}

.lang-switch a.active,
.lang-switch a:hover {
  background: var(--pink);
  color: #fff;
}

html[dir="ltr"] body {
  direction: ltr;
}

html[dir="ltr"] .hero-overlay {
  background: linear-gradient(
    to right,
    rgba(248, 248, 250, 0.02) 0%,
    rgba(248, 248, 250, 0.28) 36%,
    rgba(248, 248, 250, 0.9) 58%,
    rgba(250, 250, 252, 0.98) 100%
  );
}

html[dir="ltr"] .hero-content {
  justify-content: flex-start;
}

html[dir="ltr"] .hero-bg {
  background-position: 28% center;
}

html[dir="ltr"] .cta-banner-overlay {
  background: linear-gradient(270deg, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.72) 55%, rgba(10, 10, 12, 0.88) 100%);
}

html[dir="ltr"] .cta-banner-inner {
  margin-inline-start: 0;
  margin-inline-end: auto;
  text-align: left;
}

html[dir="ltr"] .field select {
  padding-left: 0.95rem;
  padding-right: 2.2rem;
  background-position: calc(100% - 16px) calc(1.15rem + 2px), calc(100% - 11px) calc(1.15rem + 2px);
}

html[dir="ltr"] .footer-grid {
  direction: ltr;
}

html[dir="ltr"] .footer-grid > * {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .contact-icon {
  order: 1;
}


/* Hero — light split layout matching design */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 720px);
  display: grid;
  align-items: center;
  color: var(--ink);
  overflow: hidden;
  background: #f4f5f7;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to left,
      rgba(248, 248, 250, 0.02) 0%,
      rgba(248, 248, 250, 0.28) 36%,
      rgba(248, 248, 250, 0.9) 58%,
      rgba(250, 250, 252, 0.98) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  display: flex;
  justify-content: flex-end;
}

.hero-copy {
  width: min(100%, 560px);
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.28;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.hero h1 .title-main {
  display: block;
  color: #111;
}

.hero h1 .title-accent {
  display: block;
  color: var(--pink);
}

.hero-sub {
  font-size: 1.02rem;
  color: #4a5560;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.hero-feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: transparent;
  color: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-feature .icon svg {
  width: 28px;
  height: 28px;
}

.hero-feature p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #333;
  font-weight: 600;
  max-width: 14ch;
}

.hero-cta {
  animation: fadeUp 0.7s ease 0.3s both;
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
}

.hero-cta .wa-icon {
  width: 20px;
  height: 20px;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  color: var(--pink);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

.section-head p:not(.section-eyebrow) {
  color: var(--muted);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.2rem 1.6rem;
  text-align: center;
  border: 1px solid #efefef;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(243, 146, 0, 0.1);
}

.service-card .icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  border-radius: 0;
  background: transparent;
  color: var(--pink);
  display: grid;
  place-items: center;
}

.service-card .icon svg {
  width: 72px;
  height: 72px;
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
  font-weight: 800;
  color: #111;
}

.service-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Works gallery */
.works {
  background: var(--bg);
}

.works-empty {
  text-align: center;
  color: var(--muted);
  padding: 1rem 0 2rem;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.works-item {
  margin: 0;
}

.works-thumb {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
  aspect-ratio: 4 / 3;
}

.works-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.works-thumb:hover img {
  transform: scale(1.05);
}

.works-item figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: #555;
  font-weight: 600;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1000px);
  max-height: 75vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-caption {
  color: #fff;
  margin-top: 0.8rem;
  text-align: center;
  max-width: 40rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* Quote form */
.quote {
  background: #0a0a0a;
  color: var(--white);
  padding: 4.8rem 0;
}

.quote-head {
  text-align: center;
  margin-bottom: 1.8rem;
}

.quote-eyebrow {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.quote-head h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
}

.quote-divider {
  display: block;
  width: 56px;
  height: 3px;
  margin: 0 auto;
  border-radius: 99px;
  background: var(--pink);
}

.quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.quote-card .alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.quote-card .alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  margin-bottom: 1.6rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid #e4e4e7;
  background-color: #fff;
  color: #222;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.field select {
  appearance: none;
  padding-left: 2.2rem;
  background-image: linear-gradient(45deg, transparent 50%, #999 50%), linear-gradient(135deg, #999 50%, transparent 50%);
  background-position: 16px calc(1.15rem + 2px), 21px calc(1.15rem + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.12);
}

.field select option {
  color: #111;
}

.chips-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

.choice-block h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #111;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  gap: 0.7rem;
}

.choice-grid.vehicles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.choice-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  color: #333;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  text-align: right;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.choice-chip:hover {
  border-color: #ffc266;
}

.choice-chip.active {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px rgba(243, 146, 0, 0.15);
  color: #111;
}

.chip-icon {
  width: 26px;
  height: 26px;
  color: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.chip-icon svg {
  width: 22px;
  height: 22px;
}

.chip-label {
  line-height: 1.35;
}

.quote-submit {
  width: min(100%, 420px);
  display: flex;
  margin: 0 auto;
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.submit-arrow {
  font-size: 1.15rem;
  line-height: 1;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  margin-top: 0.95rem;
  font-size: 0.84rem;
  color: #888;
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--pink);
  flex-shrink: 0;
}

.alert {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Why */
.why {
  background: #fff;
}

.why-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #111;
}

.brand-pink {
  color: var(--pink);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 1.2rem 1.4rem;
  border-radius: 0;
  background: transparent;
  position: relative;
}

.why-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 0;
  width: 1px;
  background: #e8e8e8;
}

.why-card:hover {
  transform: none;
}

.why-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 0;
  background: transparent;
  color: var(--pink);
  display: grid;
  place-items: center;
}

.why-card .icon svg {
  width: 52px;
  height: 52px;
}

.why-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #111;
}

.why-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 22ch;
  margin-inline: auto;
}

/* CTA banner */
.cta-banner {
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: 340px;
  display: grid;
  align-items: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.72) 55%, rgba(10, 10, 12, 0.88) 100%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  padding: 4.2rem 0;
  text-align: right;
  max-width: 560px;
  margin-inline-end: 0;
  margin-inline-start: auto;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  max-width: none;
  margin: 0 0 0.55rem;
  line-height: 1.35;
  font-weight: 800;
  color: #fff;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.cta-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta-wa svg,
.cta-call svg {
  width: 18px;
  height: 18px;
}

.cta-call {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.cta-call:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Footer */
.site-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  direction: ltr;
}

.footer-grid > * {
  direction: rtl;
  text-align: right;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  padding: 4px;
}

.footer-logo-text strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer-logo-text .rose {
  color: var(--pink);
}

.footer-logo-text .vip {
  color: var(--pink);
}

.footer-logo-text > span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand p {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 34ch;
}

.socials {
  display: flex;
  gap: 0.55rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.socials a svg {
  width: 18px;
  height: 18px;
}

.socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.footer-contact li a,
.footer-contact li .contact-static {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  width: 100%;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  order: -1;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 2px solid var(--pink);
  padding: 1rem 0 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0;
  }

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

  .why-card:nth-child(2n)::after {
    display: none;
  }

  .why-card:not(:last-child)::after {
    top: 8%;
    bottom: 8%;
  }

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

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

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

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

  .cta-banner-inner {
    max-width: 100%;
    margin-inline: 0;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-banner-overlay {
    background: rgba(10, 10, 12, 0.78);
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: center right;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(250, 250, 252, 0.96) 0%,
      rgba(250, 250, 252, 0.9) 48%,
      rgba(250, 250, 252, 0.55) 72%,
      rgba(250, 250, 252, 0.2) 100%
    );
  }

  .hero-content {
    justify-content: stretch;
    padding-top: 2.4rem;
    padding-bottom: 12rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-feature p {
    max-width: none;
    font-size: 0.78rem;
  }
}

.nav .btn {
  display: none;
}

@media (max-width: 780px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid #eee;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #f2f2f2;
  }

  .nav .btn {
    display: inline-flex;
    margin-top: 0.75rem;
    width: 100%;
  }

  .header-inner .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0.4rem;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .why-grid,
  .form-grid,
  .footer-grid,
  .works-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-icon {
    order: 0;
  }

  .footer-contact li a,
  .footer-contact li .contact-static {
    justify-content: flex-start;
  }

  .footer-contact li a .contact-icon,
  .footer-contact li .contact-static .contact-icon {
    order: -1;
    margin-inline-end: 0;
  }

  .why-card::after {
    display: none !important;
  }

  .choice-grid.vehicles,
  .choice-grid.methods {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.2rem 0;
  }

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

  .hero-feature {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    padding-bottom: 10rem;
  }
}
