/* ============================= */
/* Electronic Invoicing (.gr) page */
/* ============================= */

.electronic-invoicing {
  --einv-red: #e5214c;
  --einv-ink: #1e1e24;
  --einv-muted: #6b7280;
  --einv-bg: #f5f5f6;
  --einv-border: #e7e7ea;
}

.electronic-invoicing h1,
.electronic-invoicing h2,
.electronic-invoicing h3,
.electronic-invoicing h4 {
  color: var(--einv-ink);
  font-family: "Poppins", sans-serif;
}

.electronic-invoicing p {
  font-family: "Inter", sans-serif;
}

.electronic-invoicing .einv-section-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.electronic-invoicing .einv-section-title span {
  color: var(--einv-red);
}

.electronic-invoicing .einv-section-title--center {
  text-align: center;
}

@media (max-width: 700px) {
  .electronic-invoicing .einv-section-title {
    font-size: 26px;
  }
}

/* ---------- Hero ---------- */

.einv-hero {
  padding: 200px 0 90px;
  background: var(--einv-bg);
}

.einv-hero__wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.einv-hero__info {
  width: 55%;
}

.einv-hero__info h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.einv-hero__subtitle {
  color: var(--einv-red);
  font-family: "Poppins", sans-serif !important;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 22px;
}

.einv-hero__text {
  color: var(--einv-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.einv-hero__text strong {
  color: var(--einv-ink);
}

.einv-hero__tagline {
  color: var(--einv-ink);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 26px;
}

.einv-hero__card {
  width: 45%;
}

.einv-hero__card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .einv-hero {
    padding-top: 160px;
  }
  .einv-hero__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .einv-hero__info,
  .einv-hero__card {
    width: 100%;
  }
  .einv-hero__info h1 {
    font-size: 32px;
  }
}

/* ---------- Already have software ---------- */

.einv-already {
  padding: 90px 0;
  background: #fff;
}

.einv-already__wrapper {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.einv-already__text {
  color: var(--einv-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 620px;
  margin-bottom: 18px;
}

.einv-already__text strong {
  color: var(--einv-ink);
}

.einv-already__highlight {
  color: var(--einv-red);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
  margin: 26px auto 40px;
}

.einv-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.einv-chip {
  flex: 1 1 170px;
  max-width: 210px;
  border: 1px solid var(--einv-border);
  border-radius: 14px;
  padding: 22px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.einv-chip__icon {
  padding: 11px;
  /*width: 44px;*/
  /*height: 44px;*/
  border-radius: 12px;
  background: #fde9ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.einv-chip__icon img {
  /*width: 20px;*/
  /*height: 20px;*/
}

.einv-chip__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--einv-ink);
  text-align: center;
}

.einv-chip:hover {
  background: #fde9ee;
  border-color: var(--einv-red);
}

.einv-chip:hover .einv-chip__icon {
  background: #FFCAD6;
}

@media (max-width: 700px) {
  .einv-already {
    padding: 60px 0;
  }
  .einv-chip {
    flex-basis: 130px;
    padding: 18px 12px;
  }
}

/* ---------- How it works ---------- */

.einv-how {
  padding: 90px 0;
  background: var(--einv-bg);
}

.einv-how__wrapper {
  width: 90%;
  margin: 0 auto;
}

.einv-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.einv-how__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(30, 30, 36, 0.08);
  padding: 26px 24px;
}

.einv-how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #fde9ee;
  color: var(--einv-red);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}

.einv-how__card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.einv-how__card p {
  color: var(--einv-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .einv-how__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .einv-how {
    padding: 60px 0;
  }
  .einv-how__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why through a provider ---------- */

.einv-why {
  padding: 90px 0;
  background: #fff;
}

.einv-why__wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.einv-why__intro {
  color: var(--einv-muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.einv-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.einv-why__item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--einv-border);
  border-radius: 12px;
  padding: 20px 18px;
}

.einv-why__item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.einv-why__item span {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--einv-ink);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .einv-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .einv-why {
    padding: 60px 0;
  }
  .einv-why__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact form ---------- */

.einv-form {
  padding: 90px 0;
  background: #fff;
}

.einv-form__wrapper {
  width: 90%;
  max-width: 640px;
  margin: 0 auto;
}

.einv-form__text {
  color: var(--einv-muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 36px;
}

@media (max-width: 560px) {
  .einv-form {
    padding: 60px 0;
  }
}

/* ---------- Built for fitness & wellness ---------- */

.einv-built {
  padding: 80px 0;
  background: var(--einv-bg);
}

.einv-built__wrapper {
  width: 90%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.einv-built__text {
  color: var(--einv-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.einv-built__tags {
  color: var(--einv-ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

@media (max-width: 560px) {
  .einv-built {
    padding: 56px 0;
  }
}

/* ---------- Closing CTA (red) ---------- */

.einv-cta {
  padding: 80px 0;
  background: var(--einv-red);
}

.einv-cta__wrapper {
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.einv-cta__wrapper h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.einv-cta__bold {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.einv-cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.einv-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.einv-cta__btn {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.einv-cta__btn--solid {
  background: #fff;
  color: var(--einv-red);
}

.einv-cta__btn--solid:hover {
  color: var(--einv-red);
  opacity: 0.9;
}

.einv-cta__btn--outline {
  border: 1px solid #fff;
  color: #fff;
}

.einv-cta__btn--outline:hover {
  background: #fff;
  color: var(--einv-red);
}

.einv-cta__brand {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

.einv-cta__signature {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .einv-cta {
    padding: 56px 0;
  }
  .einv-cta__wrapper h2 {
    font-size: 26px;
  }
}

/* ---------- Disclaimer ---------- */

.einv-disclaimer {
  padding: 26px 0;
  background: var(--einv-bg);
}

.einv-disclaimer p {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: var(--einv-muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
}
