/* ================================================
   ASMA Systems - Main Stylesheet
   Colors from Logo: Teal #0d8b8b, Dark Gray #4a4a5a
   ================================================ */

:root {
  --teal: #0d8b8b;
  --teal-dark: #076b6b;
  --teal-light: #15b8b8;
  --teal-pale: #e8f7f7;
  --gray-dark: #3a3a4a;
  --gray-mid: #5a5a6e;
  --gray-light: #8a8a9a;
  --white: #ffffff;
  --off-white: #f8fafa;
  --border: #dde8e8;
  --shadow: rgba(13, 139, 139, 0.15);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Rajdhani', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ar);
  color: var(--gray-dark);
  background: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 20px var(--shadow);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.full-width { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gray-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header.light .section-title { color: var(--white); }

.title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto;
}
.section-header.light .section-desc { color: rgba(255,255,255,0.75); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.navbar.scrolled .nav-link { color: var(--gray-dark); }
.navbar.scrolled .logo-a, 
.navbar.scrolled .logo-a2 { color: var(--teal); }
.navbar.scrolled .logo-s,
.navbar.scrolled .logo-m { color: var(--gray-dark); }
.navbar.scrolled .logo-ar { color: var(--gray-dark); }
.navbar.scrolled .logo-en { color: var(--gray-mid); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-mark {
  display: flex;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-mark.small { font-size: 1.4rem; }

.logo-a, .logo-a2 { color: var(--white); }
.logo-s, .logo-m { color: rgba(255,255,255,0.7); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-ar {
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.logo-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.navbar.scrolled .menu-toggle span { background: var(--gray-dark); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 107, 107, 0.85) 0%,
    rgba(58, 58, 74, 0.9) 50%,
    rgba(13, 139, 139, 0.7) 100%
  );
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  margin-right: 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.title-ar {
  font-family: var(--font-ar);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.title-en {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 6px;
  line-height: 1;
}

.title-sub {
  font-family: var(--font-ar);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-desc strong { color: var(--teal-light); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-globe {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  opacity: 0.25;
  pointer-events: none;
  animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 20px)) rotate(5deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  z-index: 2;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  color: var(--gray-mid);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 2px;
}

.highlight strong {
  display: block;
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.highlight p {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin: 0;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, var(--teal-pale), white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(13,139,139,0.1);
}

.about-globe {
  width: 280px;
  margin: 0 auto;
}

.visual-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-align: center;
}

.top-right { top: -16px; left: -16px; }
.bottom-left { bottom: -16px; right: -16px; }

.vb-num {
  display: block;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.vb-text {
  font-size: 0.75rem;
  color: var(--gray-light);
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 0;
  background: var(--gray-dark);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(13,139,139,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(21,184,184,0.1) 0%, transparent 40%);
  pointer-events: none;
}

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  cursor: default;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal));
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(13,139,139,0.12);
  border-color: rgba(13,139,139,0.3);
  transform: translateY(-4px);
}

.service-card:hover::before { width: 100%; }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(13,139,139,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--teal);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-light);
  transition: var(--transition);
}

.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.card-line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}

.service-card:hover .card-line { width: 40px; }

/* ─── PROJECTS ─── */
.projects {
  padding: 100px 0;
  background: var(--white);
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.project-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.project-item.reverse {
  grid-template-columns: 1.6fr 1fr;
}

.project-item.reverse .project-images {
  order: 2;
}

.project-item.reverse .project-content {
  order: 1;
}

.project-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proj-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.main-img { height: 220px; }
.secondary-img { height: 140px; }
.tall-img { height: 260px; }

.proj-img:hover { transform: scale(1.02); }

.moi-devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.device-img {
  height: 160px;
  object-fit: contain;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 12px;
}

.project-client {
  margin-bottom: 28px;
}

.client-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.project-client h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gray-dark);
  line-height: 1.3;
}

.project-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-block {
  padding: 20px 24px;
  border-radius: var(--radius);
  border-right: 4px solid;
}

.project-block.challenge {
  background: #fff8f0;
  border-color: #e8841a;
}

.project-block.solution {
  background: var(--teal-pale);
  border-color: var(--teal);
}

.project-block.benefits {
  background: #f0fff4;
  border-color: #22c55e;
}

.project-block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-dark);
}

.block-icon { font-size: 1rem; }

.project-block p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  position: relative;
  background: var(--gray-dark);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 90%, rgba(13,139,139,0.3) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(21,184,184,0.15) 0%, transparent 40%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(13,139,139,0.15);
  border-color: rgba(13,139,139,0.3);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ar);
  font-size: 0.95rem;
  color: var(--gray-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
  direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,139,139,0.1);
}

/* ─── FOOTER ─── */
.footer {
  background: #1a1a28;
}

.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-a,
.footer-logo .logo-a2 { color: var(--teal-light); }
.footer-logo .logo-s,
.footer-logo .logo-m { color: rgba(255,255,255,0.8); }

.footer-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links-col a:hover { color: var(--teal-light); }

.footer-contact-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.footer-email {
  color: var(--teal-light) !important;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-email:hover { color: var(--white) !important; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-in {
  animation: fadeInUp 0.7s ease both;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content { margin-right: 24px; }
  .hero-globe { width: 280px; opacity: 0.15; }
  .about-grid { gap: 48px; }
}

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

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,40,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; color: var(--white) !important; }
  .nav-links .nav-link:hover { background: rgba(13,139,139,0.2); }

  .hero-content { margin: 0 24px; }
  .hero-globe { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

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

  .project-item,
  .project-item.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-item.reverse .project-images,
  .project-item.reverse .project-content { order: unset; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .container { padding: 0 16px; }
  .service-card { padding: 24px 20px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .moi-devices-grid { grid-template-columns: 1fr; }
}
