:root {
  /* Emerald Green Palette */
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-300: #6ee7b7;
  --green-400: #34d399;
  --green-500: #10b981; /* Main Brand Color */
  --green-600: #059669; /* Hover State */
  --green-700: #047857;
  --green-800: #065f46;
  --green-900: #064e3b;

  /* Gray Palette */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Theme Variables */
  --bg-color: #ffffff;
  --text-main: var(--gray-900);
  --text-muted: var(--gray-500);
  --border-color: var(--gray-200);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-green: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
  --shadow-green-hover: 0 6px 20px rgba(16, 185, 129, 0.4);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
}

/* =========================================
   Base & Reset
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
}

.highlight {
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}

.nav-logo span {
  color: var(--green-500);
}

.nav-logo .logo-text {
  display: inline;
}

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

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--green-600);
}

.lang-dropdown {
  display: flex;
  align-items: center;
}

.lang-select {
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--gray-50);
  color: var(--gray-700);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1em;
  padding-right: 2rem;
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 2px var(--green-100);
  background-color: white;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile.open {
  display: flex;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--green-500);
  color: white;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-hover);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--gray-700);
}

.btn-outline:hover {
  border-color: var(--green-500);
  color: var(--green-600);
  background-color: var(--green-50);
  transform: translateY(-2px);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-50) 0%, white 100%);
}

.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 12s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--green-200);
  animation-delay: 0s;
}

.blob-2 {
  bottom: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: var(--green-100);
  animation-delay: -6s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 40px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero-badges {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* =========================================
   Sections & Layouts
   ========================================= */
.section {
  padding: 4rem 0;
  position: relative;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* =========================================
   Cards (Features, Steps, etc.)
   ========================================= */
.audience-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .audience-content {
    grid-template-columns: 1fr 2fr;
  }
}

.audience-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), var(--shadow-sm);
  border: 1px solid var(--green-200);
  aspect-ratio: 1;
  max-height: 400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.audience-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--green-200) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
}

.audience-visual::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--green-300) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
}

.handshake-img {
  width: 180px;
  max-width: 80%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  animation: float-emoji 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

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

@keyframes float-emoji {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.audience-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.audience-list svg {
  width: 24px;
  height: 24px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.feature-card, .step-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.feature-card:hover, .step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.feature-card:hover .card-icon, .step-card:hover .card-icon {
  transform: scale(1.1);
  background: var(--green-100);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.card-text {
  color: var(--gray-600);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 15px;
  font-size: 6rem;
  font-weight: 800;
  color: var(--gray-50);
  z-index: -1;
  line-height: 1;
  user-select: none;
}

/* =========================================
   Pricing
   ========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.price-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-card.popular {
  border: 2px solid var(--green-500);
  box-shadow: var(--shadow-md);
  position: relative;
  transform: scale(1.05);
  z-index: 2;
  background: linear-gradient(to bottom, #ffffff, var(--green-50));
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.price-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: white;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
}

.price-amount span {
  color: var(--gray-500);
}

.price-period {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.price-features {
  list-style: none;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.price-features svg {
  width: 20px;
  height: 20px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: white;
  margin: 4rem auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
}

.cta-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--green-50);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.btn-white {
  background: white;
  color: var(--green-700);
  border: 2px solid white;
}

.btn-white:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

/* =========================================
   Contact Buttons (CTA section)
   ========================================= */
.contact-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.25);
}

.contact-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Brand accent colours on hover */
.contact-btn--tg:hover    { background: #29A8EB; border-color: #29A8EB; }
.contact-btn--wa:hover    { background: #25D366; border-color: #25D366; }
.contact-btn--phone:hover { background: rgba(255,255,255,0.35); }
.contact-btn--email:hover { background: #EA4335; border-color: #EA4335; }
.contact-btn--yandex:hover{ background: #FC3F1D; border-color: #FC3F1D; }

/* =========================================
   Footer social icon buttons
   ========================================= */
.footer-contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--border-color);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.footer-icon-btn svg {
  width: 20px;
  height: 20px;
}

.footer-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.footer-icon-btn--tg:hover    { background: #29A8EB; color: white; border-color: #29A8EB; }
.footer-icon-btn--wa:hover    { background: #25D366; color: white; border-color: #25D366; }
.footer-icon-btn--email:hover { background: #EA4335; color: white; border-color: #EA4335; }
.footer-icon-btn--yandex:hover{ background: #FC3F1D; color: white; border-color: #FC3F1D; }


.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span {
  color: var(--green-600);
}

.footer-text {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--green-600);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* =========================================
   Scroll Animations
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
  .price-card.popular {
    transform: none;
  }
  .price-card.popular:hover {
    transform: translateY(-5px);
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .nav-logo {
    font-size: 1.15rem;
    white-space: nowrap;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 0.4rem 0.9rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
  }

  .lang-select {
    font-size: 0.78rem;
    padding: 0.3rem 1.6rem 0.3rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-burger {
    display: block;
  }

  /* Скрыть выбор языка на мобильных */
  .lang-dropdown {
    display: none;
  }

  /* Скрыть текст логотипа, оставить только иконку */
  .nav-logo .logo-text {
    display: none;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }

  /* Уменьшить заголовок на мобильных */
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

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

/* =========================================
   Forms
   ========================================= */
.cta-form-wrapper {
  margin-top: 3rem;
  max-width: 500px;
  margin-inline: auto;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-form h3 {
  color: var(--gray-900);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--gray-50);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-100);
  background-color: white;
}

.cta-form textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-form button {
  padding: 0.85rem;
  font-size: 1rem;
  width: 100%;
}
