body.template-eyou-dark {
  --tc-bg: #07110f;
  --tc-bg-soft: #0c1a17;
  --tc-panel: rgba(12, 26, 23, 0.88);
  --tc-panel-strong: #10231f;
  --tc-line: rgba(169, 255, 224, 0.16);
  --tc-text: #eefaf5;
  --tc-muted: #9bb3ab;
  --tc-gold: #f6c65b;
  --tc-warm: #ff7a68;
  --tc-violet: #a98cff;
  --tc-accent: #20e6b8;
  background: var(--tc-bg);
  color: var(--tc-text);
}

body.template-eyou-dark .tc-site {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, #07110f 0%, #0a1715 45%, #06100f 100%);
  background-size: 44px 44px, 44px 44px, auto;
  overflow-x: hidden;
}

body.template-eyou-dark .tc-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

body.template-eyou-dark .tc-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 68px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

body.template-eyou-dark .tc-nav.scrolled {
  background: rgba(7,17,15,0.92);
  border-color: var(--tc-line);
  backdrop-filter: blur(14px);
}

body.template-eyou-dark .tc-nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.template-eyou-dark .tc-brand,
body.template-eyou-dark .tc-nav-links,
body.template-eyou-dark .tc-nav-actions {
  display: flex;
  align-items: center;
}

body.template-eyou-dark .tc-brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--tc-text);
  white-space: nowrap;
}

body.template-eyou-dark .tc-brand img {
  width: auto;
  height: 34px;
}

body.template-eyou-dark .tc-nav-links {
  gap: 28px;
}

body.template-eyou-dark .tc-nav-links a {
  font-size: 14px;
  color: var(--tc-muted);
  transition: color .2s ease;
}

body.template-eyou-dark .tc-nav-links a:hover {
  color: var(--tc-accent);
}

body.template-eyou-dark .tc-nav-actions {
  gap: 12px;
}

body.template-eyou-dark .tc-link-btn,
body.template-eyou-dark .tc-solid-btn,
body.template-eyou-dark .tc-primary-btn,
body.template-eyou-dark .tc-secondary-btn,
body.template-eyou-dark .tc-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

body.template-eyou-dark .tc-link-btn,
body.template-eyou-dark .tc-secondary-btn {
  color: var(--tc-text);
  border: 1px solid var(--tc-line);
  background: rgba(255,255,255,0.04);
}

body.template-eyou-dark .tc-solid-btn,
body.template-eyou-dark .tc-primary-btn,
body.template-eyou-dark .tc-price-btn {
  color: #06110f;
  border: 1px solid var(--tc-accent);
  background: var(--tc-accent);
}

body.template-eyou-dark .tc-link-btn:hover,
body.template-eyou-dark .tc-solid-btn:hover,
body.template-eyou-dark .tc-primary-btn:hover,
body.template-eyou-dark .tc-secondary-btn:hover,
body.template-eyou-dark .tc-price-btn:hover {
  transform: translateY(-2px);
}

body.template-eyou-dark .tc-secondary-btn:hover,
body.template-eyou-dark .tc-link-btn:hover {
  border-color: var(--tc-accent);
}

body.template-eyou-dark .tc-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--tc-line);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}

body.template-eyou-dark .tc-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--tc-text);
  transition: transform .2s ease, opacity .2s ease;
}

body.template-eyou-dark .tc-menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.template-eyou-dark .tc-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

body.template-eyou-dark .tc-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.template-eyou-dark .tc-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 24px 18px;
  background: rgba(7,17,15,0.96);
  border-bottom: 1px solid var(--tc-line);
  backdrop-filter: blur(14px);
}

body.template-eyou-dark .tc-mobile-menu.open {
  display: block;
}

body.template-eyou-dark .tc-mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--tc-text);
  border-bottom: 1px solid var(--tc-line);
}

body.template-eyou-dark .tc-hero {
  position: relative;
  min-height: 100vh;
  padding: 138px 0 86px;
  overflow: hidden;
}

body.template-eyou-dark .tc-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tc-accent), var(--tc-gold), transparent);
  opacity: .55;
}

body.template-eyou-dark .tc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 64px;
}

body.template-eyou-dark .tc-hero-copy,
body.template-eyou-dark .tc-hero-panel,
body.template-eyou-dark .tc-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

body.template-eyou-dark .tc-hero-copy.visible,
body.template-eyou-dark .tc-hero-panel.visible,
body.template-eyou-dark .tc-section.visible {
  opacity: 1;
  transform: translateY(0);
}

body.template-eyou-dark .tc-badge,
body.template-eyou-dark .tc-eyebrow,
body.template-eyou-dark .tc-feature-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid var(--tc-line);
  background: rgba(32,230,184,0.08);
  color: var(--tc-accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

body.template-eyou-dark .tc-badge {
  padding: 9px 14px;
  margin-bottom: 24px;
}

body.template-eyou-dark .tc-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--tc-text);
  font-size: 58px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

body.template-eyou-dark .tc-hero-subtitle {
  max-width: 690px;
  margin: 0 0 34px;
  color: var(--tc-muted);
  font-size: 18px;
  line-height: 1.9;
}

body.template-eyou-dark .tc-hero-actions,
body.template-eyou-dark .tc-hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

body.template-eyou-dark .tc-hero-stats {
  gap: 28px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--tc-line);
}

body.template-eyou-dark .tc-stat strong {
  display: block;
  color: var(--tc-gold);
  font-size: 34px;
  line-height: 1.1;
}

body.template-eyou-dark .tc-stat span {
  display: block;
  margin-top: 8px;
  color: var(--tc-muted);
  font-size: 13px;
}

body.template-eyou-dark .tc-hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--tc-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32,230,184,0.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

body.template-eyou-dark .tc-panel-kicker {
  margin-bottom: 16px;
  color: var(--tc-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

body.template-eyou-dark .tc-flow-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--tc-line);
}

body.template-eyou-dark .tc-flow-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: var(--tc-accent);
  font-weight: 800;
}

body.template-eyou-dark .tc-flow-item strong {
  color: var(--tc-text);
  font-size: 17px;
}

body.template-eyou-dark .tc-flow-item p {
  margin: 4px 0 0;
  color: var(--tc-muted);
  font-size: 14px;
}

body.template-eyou-dark .tc-panel-contact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(246,198,91,0.26);
  border-radius: 8px;
  background: rgba(246,198,91,0.08);
}

body.template-eyou-dark .tc-panel-contact span {
  color: var(--tc-muted);
}

body.template-eyou-dark .tc-panel-contact strong {
  color: var(--tc-gold);
}

body.template-eyou-dark .tc-section {
  padding: 92px 0;
}

body.template-eyou-dark .tc-section-head {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}

body.template-eyou-dark .tc-eyebrow {
  padding: 7px 12px;
  margin-bottom: 16px;
}

body.template-eyou-dark .tc-section-head h2 {
  margin: 0 0 14px;
  color: var(--tc-text);
  font-size: 36px;
  line-height: 1.25;
  font-weight: 850;
}

body.template-eyou-dark .tc-section-head p {
  margin: 0;
  color: var(--tc-muted);
  font-size: 16px;
  line-height: 1.8;
}

body.template-eyou-dark .tc-trend-grid,
body.template-eyou-dark .tc-card-grid,
body.template-eyou-dark .tc-feature-grid,
body.template-eyou-dark .tc-pricing-grid {
  display: grid;
  gap: 18px;
}

body.template-eyou-dark .tc-trend-grid,
body.template-eyou-dark .tc-card-grid-3,
body.template-eyou-dark .tc-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.template-eyou-dark .tc-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.template-eyou-dark .tc-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.template-eyou-dark .tc-trend-card,
body.template-eyou-dark .tc-value-card,
body.template-eyou-dark .tc-feature-card,
body.template-eyou-dark .tc-use-card,
body.template-eyou-dark .tc-testimonial-card,
body.template-eyou-dark .tc-price-card,
body.template-eyou-dark .tc-faq-item,
body.template-eyou-dark .tc-apply-card {
  border: 1px solid var(--tc-line);
  border-radius: 8px;
  background: rgba(12,26,23,0.72);
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

body.template-eyou-dark .tc-trend-card,
body.template-eyou-dark .tc-value-card,
body.template-eyou-dark .tc-feature-card,
body.template-eyou-dark .tc-use-card,
body.template-eyou-dark .tc-testimonial-card {
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

body.template-eyou-dark .tc-trend-card:hover,
body.template-eyou-dark .tc-value-card:hover,
body.template-eyou-dark .tc-feature-card:hover,
body.template-eyou-dark .tc-use-card:hover,
body.template-eyou-dark .tc-testimonial-card:hover,
body.template-eyou-dark .tc-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32,230,184,0.44);
}

body.template-eyou-dark .tc-trend-card h3,
body.template-eyou-dark .tc-value-card h3,
body.template-eyou-dark .tc-feature-card h3,
body.template-eyou-dark .tc-use-card h3 {
  margin: 0 0 12px;
  color: var(--tc-text);
  font-size: 20px;
}

body.template-eyou-dark .tc-trend-card p,
body.template-eyou-dark .tc-value-card p,
body.template-eyou-dark .tc-feature-card p,
body.template-eyou-dark .tc-use-card p,
body.template-eyou-dark .tc-testimonial-card p {
  margin: 0;
  color: var(--tc-muted);
  font-size: 14px;
  line-height: 1.8;
}

body.template-eyou-dark .tc-card-index {
  margin-bottom: 18px;
  color: var(--tc-gold);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

body.template-eyou-dark .tc-feature-card {
  min-height: 250px;
}

body.template-eyou-dark .tc-feature-tag {
  padding: 6px 10px;
  margin-bottom: 14px;
}

body.template-eyou-dark .tc-feature-card ul {
  margin: 18px 0 0;
  padding: 0;
}

body.template-eyou-dark .tc-feature-card li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  color: var(--tc-muted);
  font-size: 14px;
}

body.template-eyou-dark .tc-feature-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--tc-accent);
  flex: 0 0 auto;
}

body.template-eyou-dark .tc-price-card {
  position: relative;
  padding: 34px 28px;
}

body.template-eyou-dark .tc-price-card.highlighted {
  border-color: rgba(246,198,91,0.58);
  background: linear-gradient(180deg, rgba(246,198,91,0.12), rgba(12,26,23,0.76));
}

body.template-eyou-dark .tc-price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--tc-gold);
  color: #1d1708;
  font-size: 12px;
  font-weight: 800;
}

body.template-eyou-dark .tc-price-card h3 {
  margin: 0 0 18px;
  color: var(--tc-text);
  font-size: 22px;
}

body.template-eyou-dark .tc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

body.template-eyou-dark .tc-price strong {
  color: var(--tc-gold);
  font-size: 38px;
  line-height: 1;
}

body.template-eyou-dark .tc-price span {
  color: var(--tc-muted);
  font-size: 14px;
}

body.template-eyou-dark .tc-price-features {
  min-height: 168px;
  margin: 0 0 28px;
  padding: 0;
}

body.template-eyou-dark .tc-price-features li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  color: var(--tc-muted);
  font-size: 14px;
  border-bottom: 1px solid var(--tc-line);
}

body.template-eyou-dark .tc-price-features em {
  font-style: normal;
}

body.template-eyou-dark .tc-price-features .ok {
  color: var(--tc-accent);
}

body.template-eyou-dark .tc-price-features .muted {
  color: rgba(255,255,255,0.32);
}

body.template-eyou-dark .tc-price-btn {
  width: 100%;
}

body.template-eyou-dark .tc-testimonial-card strong,
body.template-eyou-dark .tc-testimonial-card span {
  display: block;
}

body.template-eyou-dark .tc-testimonial-card strong {
  margin-top: 18px;
  color: var(--tc-text);
}

body.template-eyou-dark .tc-testimonial-card span {
  margin-top: 4px;
  color: var(--tc-muted);
  font-size: 13px;
}

body.template-eyou-dark .tc-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

body.template-eyou-dark .tc-faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  color: var(--tc-text);
  background: transparent;
  cursor: pointer;
}

body.template-eyou-dark .tc-faq-question span {
  text-align: left;
  font-weight: 700;
}

body.template-eyou-dark .tc-faq-question i {
  color: var(--tc-accent);
  font-style: normal;
  font-size: 20px;
}

body.template-eyou-dark .tc-faq-answer {
  display: none;
  padding: 0 20px 20px;
}

body.template-eyou-dark .tc-faq-item.active .tc-faq-answer {
  display: block;
}

body.template-eyou-dark .tc-faq-item.active .tc-faq-question i {
  transform: rotate(45deg);
}

body.template-eyou-dark .tc-faq-answer p {
  margin: 0;
  color: var(--tc-muted);
  line-height: 1.8;
}

body.template-eyou-dark .tc-apply-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(32,230,184,0.10), transparent 40%),
    rgba(12,26,23,0.78);
}

body.template-eyou-dark .tc-apply-form {
  display: grid;
  gap: 18px;
}

body.template-eyou-dark .tc-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.template-eyou-dark .tc-form-field {
  display: grid;
  gap: 8px;
}

body.template-eyou-dark .tc-form-field-full {
  grid-column: 1 / -1;
}

body.template-eyou-dark .tc-form-field label {
  color: var(--tc-text);
  font-size: 14px;
  font-weight: 700;
}

body.template-eyou-dark .tc-form-field .required {
  margin-left: 4px;
  color: var(--tc-warm);
}

body.template-eyou-dark .tc-form-field input,
body.template-eyou-dark .tc-form-field select,
body.template-eyou-dark .tc-form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--tc-line);
  border-radius: 6px;
  color: var(--tc-text);
  background: rgba(255,255,255,0.055);
}

body.template-eyou-dark .tc-form-field textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

body.template-eyou-dark .tc-form-field input::placeholder,
body.template-eyou-dark .tc-form-field textarea::placeholder {
  color: rgba(238,250,245,0.45);
}

body.template-eyou-dark .tc-form-field input.error {
  border-color: var(--tc-warm);
}

body.template-eyou-dark .form-error {
  display: none;
  color: var(--tc-warm);
  font-size: 13px;
}

body.template-eyou-dark .form-error.show {
  display: block;
}

body.template-eyou-dark .form-message {
  min-height: 22px;
  color: var(--tc-muted);
}

body.template-eyou-dark .form-message.success {
  color: var(--tc-accent);
}

body.template-eyou-dark .form-message.fail {
  color: var(--tc-warm);
}

body.template-eyou-dark .tc-form-submit {
  display: flex;
  justify-content: flex-end;
}

body.template-eyou-dark .tc-form-submit .tc-primary-btn {
  min-width: 160px;
}

body.template-eyou-dark .tc-footer {
  border-top: 1px solid var(--tc-line);
  background: rgba(3,9,8,0.72);
}

body.template-eyou-dark .tc-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr;
  gap: 36px;
  padding-top: 42px;
  padding-bottom: 30px;
}

body.template-eyou-dark .tc-footer h3 {
  margin: 0 0 12px;
  color: var(--tc-text);
}

body.template-eyou-dark .tc-footer p,
body.template-eyou-dark .tc-footer span,
body.template-eyou-dark .tc-footer a {
  color: var(--tc-muted);
  font-size: 14px;
  line-height: 1.9;
}

body.template-eyou-dark .tc-footer-links,
body.template-eyou-dark .tc-footer-contact {
  display: grid;
  align-content: start;
  gap: 6px;
}

body.template-eyou-dark .tc-footer-contact strong {
  color: var(--tc-text);
}

body.template-eyou-dark .tc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid var(--tc-line);
}

body.template-eyou-dark .tc-floating {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  gap: 10px;
}

body.template-eyou-dark .tc-floating-btn {
  min-width: 74px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--tc-line);
  color: var(--tc-text);
  background: rgba(12,26,23,0.92);
  cursor: pointer;
}

body.template-eyou-dark #backToTop {
  display: none;
}

body.template-eyou-dark #backToTop.visible {
  display: block;
}

body.template-eyou-dark .modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.66);
}

body.template-eyou-dark .modal-overlay.open {
  display: flex;
}

body.template-eyou-dark .modal-box {
  position: relative;
  width: min(360px, calc(100vw - 40px));
  padding: 28px;
  border: 1px solid var(--tc-line);
  border-radius: 8px;
  background: var(--tc-panel-strong);
  color: var(--tc-text);
  text-align: center;
}

body.template-eyou-dark .modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--tc-text);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

body.template-eyou-dark .qr-image {
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  margin: 18px auto 12px;
  border: 1px solid var(--tc-line);
  border-radius: 8px;
  background: #fff;
}

body.template-eyou-dark .qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.template-eyou-dark .qr-tip {
  color: var(--tc-muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  body.template-eyou-dark .tc-nav-links,
  body.template-eyou-dark .tc-nav-actions {
    display: none;
  }

  body.template-eyou-dark .tc-menu-toggle {
    display: block;
  }

  body.template-eyou-dark .tc-hero {
    padding-top: 112px;
  }

  body.template-eyou-dark .tc-hero-grid,
  body.template-eyou-dark .tc-footer-grid {
    grid-template-columns: 1fr;
  }

  body.template-eyou-dark .tc-hero h1 {
    font-size: 42px;
  }

  body.template-eyou-dark .tc-trend-grid,
  body.template-eyou-dark .tc-card-grid-3,
  body.template-eyou-dark .tc-card-grid-4,
  body.template-eyou-dark .tc-feature-grid,
  body.template-eyou-dark .tc-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body.template-eyou-dark .tc-container {
    padding: 0 18px;
  }

  body.template-eyou-dark .tc-hero h1 {
    font-size: 34px;
  }

  body.template-eyou-dark .tc-hero-subtitle,
  body.template-eyou-dark .tc-section-head p {
    font-size: 15px;
  }

  body.template-eyou-dark .tc-section {
    padding: 68px 0;
  }

  body.template-eyou-dark .tc-section-head h2 {
    font-size: 28px;
  }

  body.template-eyou-dark .tc-trend-grid,
  body.template-eyou-dark .tc-card-grid-3,
  body.template-eyou-dark .tc-card-grid-4,
  body.template-eyou-dark .tc-feature-grid,
  body.template-eyou-dark .tc-pricing-grid,
  body.template-eyou-dark .tc-form-row {
    grid-template-columns: 1fr;
  }

  body.template-eyou-dark .tc-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  body.template-eyou-dark .tc-panel-contact,
  body.template-eyou-dark .tc-footer-bottom {
    flex-direction: column;
  }

  body.template-eyou-dark .tc-apply-card {
    padding: 22px;
  }

  body.template-eyou-dark .tc-floating {
    display: none;
  }
}
