@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@400;500&display=swap');

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

:root {
  --bg:       #F5F0E8;
  --green:    #4A7C6F;
  --green-lt: #D6EBE5;
  --amber:    #E8A94B;
  --dark:     #0D0D0D;
  --mid:      #555;
  --soft:     #888;
  --white:    #ffffff;
  --border:   rgba(74,124,111,0.18);
  --card-bg:  #ffffff;
  --radius:   16px;
}

html { scroll-behavior: smooth; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  background-color: var(--bg);
  background-image: radial-gradient(rgba(74,124,111,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--dark);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 960px; margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo .logo-icon img { display: block; width: 32px; height: 32px; object-fit: contain; }
.nav-logo span {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 17px; color: var(--dark);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--mid); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  max-width: 960px; margin: 0 auto;
  padding: 80px 24px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-lt); color: var(--green);
  font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 20px;
  width: fit-content;
}
.badge svg { flex-shrink: 0; }
.hero-title {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: clamp(36px, 5vw, 52px); line-height: 1.1;
  color: var(--dark);
}
.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--green);
}
.hero-underline {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 12px;
  overflow: visible;
  pointer-events: none;
}
.hero-underline path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: drawUnderline 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@keyframes drawUnderline {
  to { stroke-dashoffset: 0; }
}
.hero-sub {
  font-size: 17px; color: var(--mid); line-height: 1.7;
  max-width: 420px;
}
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-badge { display: inline-block; text-decoration: none; transition: opacity .2s, transform .15s; }
.store-badge:hover { opacity: .85; transform: translateY(-1px); }
.store-badge img { display: block; height: 48px; width: auto; }
.store-badge-disabled { opacity: .35; cursor: default; pointer-events: none; }
.coming-note { font-size: 12px; color: var(--soft); }

.hero-visual {
  display: flex; justify-content: center; align-items: flex-end;
  padding-top: 16px;
}
.phone-frame {
  width: 240px;
  background: var(--dark);
  border-radius: 36px;
  padding: 6px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.1);
}
.phone-screen {
  background: var(--green-lt);
  border-radius: 31px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.screenshot-placeholder {
  background: var(--green-lt);
  border-radius: 31px;
  aspect-ratio: 9/19.5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--green);
}
.screenshot-placeholder svg { opacity: .5; }
.screenshot-placeholder span {
  font-size: 11px; font-weight: 500; opacity: .6;
  text-align: center; padding: 0 16px;
}
.phone-screen img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.phone-frame > img {
  width: 100%; border-radius: 31px; display: block;
}

/* ── SECTION BASE ─────────────────────────────────── */
section { max-width: 960px; margin: 0 auto; padding: 80px 24px; }
.section-label {
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: clamp(26px, 4vw, 38px); line-height: 1.2;
  color: var(--dark); margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--mid); max-width: 540px;
  line-height: 1.7; margin-bottom: 48px;
}

/* ── SCREENSHOTS STRIP ────────────────────────────── */
.screenshots-section {
  background: var(--green);
  padding: 60px 0;
  margin-top: -1px;
}
.screenshots-inner {
  max-width: 960px; margin: 0 auto; padding: 0 24px;
}
.screenshots-section .section-title { color: var(--white); }
.screenshots-section .section-label { color: var(--green-lt); }
.screenshots-section .section-sub   { color: rgba(255,255,255,0.7); }

.screenshots-grid {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding: 0 24px 16px;
  scrollbar-width: none;
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
}
.screenshots-grid::-webkit-scrollbar { display: none; }

.screen-card {
  flex: 0 0 140px;
}
.screen-card .phone-frame {
  width: 140px;
  background: var(--dark);
  box-shadow: none;
}
.screen-card .screenshot-placeholder {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.screen-card .screenshot-placeholder svg { opacity: .4; }
.screen-caption {
  text-align: center; margin-top: 10px;
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.6);
}

/* ── FEATURES ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
  border-radius: 0 2px 2px 0;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,124,111,0.12);
}
.feature-card:hover::before { transform: scaleY(1); }
.feature-card:hover .feature-title { color: var(--green); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon.green { background: var(--green-lt); }
.feature-icon.amber { background: #FEF3CD; }
.feature-icon svg  { display: block; }
.feature-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 17px; color: var(--dark); margin-bottom: 8px;
  transition: color .2s;
}
.feature-body { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── IMPORT & SHARE ───────────────────────────────── */
#import-share {
  padding-top: 0;
}
.import-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px 48px;
}
.import-steps { display: flex; flex-direction: column; gap: 24px; }
.import-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.import-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--green); color: var(--white);
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.import-step strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.import-step p { font-size: 14px; color: var(--mid); line-height: 1.6; margin: 0; }
.import-visual { display: flex; justify-content: center; align-items: center; }
.import-phones { display: flex; align-items: flex-end; justify-content: center; }

.demo-downloads {
  max-width: 960px; margin: 0 auto;
  padding: 0 24px 80px;
}
.demo-downloads-inner {
  background: var(--green-lt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.demo-downloads-text { flex: 1; min-width: 240px; }
.demo-download-buttons { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.demo-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 20px;
  text-decoration: none; color: var(--dark);
  transition: transform .15s, box-shadow .15s;
}
.demo-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,124,111,0.12); }
.demo-btn strong { display: block; font-size: 15px; font-weight: 500; }
.demo-btn span   { display: block; font-size: 12px; color: var(--soft); }

/* ── PRIVACY STRIP ────────────────────────────────── */
.privacy-strip {
  background: var(--dark);
  padding: 64px 0;
}
.privacy-strip-inner {
  max-width: 960px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.privacy-strip .section-label { color: var(--amber); }
.privacy-strip .section-title { color: var(--white); margin-bottom: 24px; }
.privacy-strip .section-sub   { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.privacy-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.privacy-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(255,255,255,0.75); font-size: 14px;
}
.privacy-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}
.privacy-visual {
  display: flex; justify-content: center;
}
.privacy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  max-width: 280px; width: 100%;
}
.privacy-stat { display: flex; align-items: center; gap: 14px; }
.privacy-stat-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(74,124,111,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.privacy-stat-text strong { display: block; color: var(--white); font-size: 15px; font-weight: 500; }
.privacy-stat-text span   { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='7.5' r='3.5' fill='%234A7C6F'/%3E%3Cpath d='M9 18C9 18 2 12 2 7.5C2 3.91 5.13 1 9 1C12.87 1 16 3.91 16 7.5C16 12 9 18 9 18Z' stroke='%234A7C6F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  left: 6%;
  top: 20%;
  width: 140px;
  height: 140px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='7.5' r='3.5' fill='%23E8A94B'/%3E%3Cpath d='M9 18C9 18 2 12 2 7.5C2 3.91 5.13 1 9 1C12.87 1 16 3.91 16 7.5C16 12 9 18 9 18Z' stroke='%23E8A94B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
}
.cta-section .section-title { text-align: center; margin: 0 auto 16px; }
.cta-section .section-sub   { text-align: center; margin: 0 auto 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-left {
  display: flex; align-items: center; gap: 10px;
}
.footer-left .logo-icon {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.footer-left .logo-icon img { display: block; width: 26px; height: 26px; object-fit: contain; }
.footer-left span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--soft); text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 12px; color: var(--soft); }

/* ── SUPPORT PAGE ─────────────────────────────────── */
.page-hero {
  max-width: 720px; margin: 0 auto;
  padding: 64px 24px 48px;
  text-align: center;
}
.page-hero .section-title { text-align: center; margin-bottom: 16px; }
.page-hero .section-sub   { margin: 0 auto; text-align: center; }

.faq-section { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.faq-list    { display: flex; flex-direction: column; gap: 12px; }
details {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
summary {
  padding: 20px 24px;
  font-weight: 500; font-size: 15px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 20px; color: var(--green);
  transition: transform .2s; flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; font-size: 14px; color: var(--mid); line-height: 1.7; }

.contact-card {
  max-width: 720px; margin: 0 auto 80px;
  padding: 0 24px;
}
.contact-card-inner {
  background: var(--green);
  border-radius: 20px; padding: 40px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.contact-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-text { flex: 1; }
.contact-text h3 { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 22px; color: var(--white); margin-bottom: 6px; }
.contact-text p  { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--green);
  font-weight: 500; font-size: 15px;
  text-decoration: none; border-radius: 12px;
  padding: 13px 22px; white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.contact-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ── PRIVACY PAGE ─────────────────────────────────── */
.prose {
  max-width: 720px; margin: 0 auto;
  padding: 0 24px 80px;
}
.prose h2 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 20px; color: var(--dark);
  margin: 40px 0 12px;
}
.prose h3 { font-size: 15px; font-weight: 500; color: var(--dark); margin: 24px 0 8px; }
.prose p  { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 12px; }
.prose ul { margin: 12px 0 12px 20px; }
.prose li { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 6px; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.prose th { background: var(--green-lt); color: var(--green); padding: 10px 14px; text-align: left; font-weight: 500; }
.prose td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--mid); vertical-align: top; }
.prose a  { color: var(--green); }
.prose .updated { font-size: 13px; color: var(--soft); margin-bottom: 40px; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── LANG SWITCHER ────────────────────────────────── */
.lang-switcher {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 4px; margin-top: 24px;
}
.lang-btn {
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 20px;
  text-decoration: none; color: var(--mid);
  transition: background .2s, color .2s;
}
.lang-btn:hover { color: var(--green); }
.lang-btn.active { background: var(--green); color: var(--white); }

/* ── TEST GUIDE PAGE ──────────────────────────────── */
.guide-wrap { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.guide-section { margin-bottom: 48px; }
.guide-section-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.guide-section-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  background: var(--green); color: var(--white);
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.guide-section-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 20px; color: var(--dark);
}
.guide-body { font-size: 15px; color: var(--mid); line-height: 1.75; }
.guide-body p  { margin-bottom: 12px; }
.guide-body ul { margin: 12px 0 12px 20px; }
.guide-body ol { margin: 12px 0 12px 20px; }
.guide-body li { margin-bottom: 6px; }
.guide-body strong { color: var(--dark); font-weight: 500; }
.guide-body h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--dark); margin: 24px 0 10px;
}
.guide-body a { color: var(--green); }
.guide-body code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px; background: var(--green-lt); color: var(--green);
  padding: 2px 6px; border-radius: 5px;
}
.guide-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.guide-body th { background: var(--green-lt); color: var(--green); padding: 10px 14px; text-align: left; font-weight: 500; }
.guide-body td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--mid); vertical-align: top; }
.guide-body blockquote {
  border-left: 3px solid var(--green); background: var(--green-lt);
  border-radius: 0 10px 10px 0; padding: 12px 16px;
  margin: 16px 0; font-size: 14px; color: var(--mid);
}
.guide-substep { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.guide-substep-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: var(--green-lt); color: var(--green);
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.guide-substep-content strong { display: block; font-size: 15px; color: var(--dark); font-weight: 500; margin-bottom: 4px; }
.guide-substep-content p { margin: 0; font-size: 14px; color: var(--mid); line-height: 1.65; }
.guide-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 48px 0; }

/* ── RESPONSIVE ───────────────────────────────────── */
/* ── HAMBURGER ────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--dark); transition: transform .2s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 14px 24px;
  font-size: 15px; font-weight: 500;
  color: var(--dark); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: var(--green); }

@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .store-buttons { max-width: 100%; justify-content: center; }
  .hero-visual { padding-top: 0; }
  .badge { margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .import-grid { grid-template-columns: 1fr; gap: 32px; }
  .import-visual { display: none; }
  .demo-downloads-inner { flex-direction: column; align-items: flex-start; }
  .privacy-strip-inner { grid-template-columns: 1fr; }
  .privacy-visual { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .contact-card-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}
