@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap");

/* ═══════════════════════════════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════════════════════════════ */

:root {
  --bs-body-font-family: "Work Sans", sans-serif;

  --bs-body-bg: #f8f9fa;
  --bs-section-bg: #efeee9;
  --bs-body-color: #212529;
  --color-white: #ffffff;
  --color-brand: #ec5e10;

  --bs-body-color-title: #ec5e10;
  --bs-body-color-subtitle: #ec5e10;
  --bs-link-color: #212529;
  --bs-link-hover-color: #ec5e10;

  --card-bg: #ffffff;
  --card-color: #212529;

  --color-input-text: #292c32;
  --color-border: #d9d9d9;
  --color-submit: #2ea84d;
  --color-submit-hover: #4cd469;
  --color-error: red;

  --footer-bg: #212529;
  /*--footer-color: #ffffff;*/
  /*--footer-color-muted: rgba(255, 255, 255, .5);*/
  /*--footer-link-color: rgba(255, 255, 255, .75);*/

  --legal-bg: var(--bs-body-bg);
  --legal-color: var(--bs-body-color);

  --modal-bg: #212529;
}

/* ═══════════════════════════════════════════════════════════
   2. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */

h1 {
  font-size: 3rem;
  font-weight: bolder;
  padding: 1rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: bolder;
  padding: 1rem 0;
}

.title {
  color: var(--bs-body-color-title);
}

.subtitle {
  color: var(--bs-body-color-subtitle);
}

a {
  color: var(--bs-link-color);
}

a:hover {
  color: var(--bs-link-hover-color);
}

/* ═══════════════════════════════════════════════════════════
   5. LAYOUT — Base
   ═══════════════════════════════════════════════════════════ */

body,
html {
  height: 100%;
  overflow-x: hidden;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}

#page-main {
  padding: 0 10px;
}
/* ═══════════════════════════════════════════════════════════
   6. LAYOUT — Header & Hero
   ═══════════════════════════════════════════════════════════ */

#hero-main {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

#hero-main-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

#hero-form-inner {
  width: 100%;
  text-align: center;
}

@media (min-width: 576px) {
  #hero-form-inner {
    width: 66.667%;
  }
}

@media (min-width: 992px) {
  #hero-form-inner {
    width: 33.333%;
  }
}

#hero-form-layer input.form-control {
  background-color: var(--color-white);
  color: var(--color-input-text);
  border: none;
}

/* ═══════════════════════════════════════════════════════════
   7. LAYOUT — Form section
   ═══════════════════════════════════════════════════════════ */
#page-form {
  padding: 1rem 0;
}

#form-error-list ul,
#form-error-list {
  list-style: none;
  padding-left: 0;
}

#actionForm li {
  color: var(--color-error);
}

#form-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

#actionForm {
  width: 100%;
}

#phone_phone {
  color: var(--color-input-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

button#phone_submit {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 1.2rem;
}

#phone_submit {
  background: var(--color-submit);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
}

.verysmall {
  font-size: 0.65rem;
  font-weight: normal;
}

#phone_submit:hover,
#phone_submit:active,
#phone_submit:focus {
  background: var(--color-submit-hover);
  color: var(--color-white);
  border: none;
}

.text-price,
#form-price {
  opacity: 1;
  font-size: 0.7rem;
}

.brd .text-price,
.brd #form-price {
  opacity: 0.5;
}

#form-under-price,
#form-sms-text {
  font-size: 0.65rem;
  font-weight: normal;
  text-align: center;
  margin-top: 0.5rem;
}

#form-images {
  display: flex;
  justify-content: center;
}

#form-images img {
  max-width: 100%;
  height: auto;
  margin: 0 0.5rem;
}

#header-image {
  margin: 0.5rem 0;
  text-align: center;
}

#header-image img {
  max-width: 100%;
  height: auto;
}

#form-exit {
  text-align: center;
}

#form-legal {
  text-align: justify;
  font-size: 0.7rem;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

nav#page-links {
  text-align: center;
  font-size: 0.7rem;
  margin: 0 0 2rem 0;
}

/* ═══════════════════════════════════════════════════════════
   8. LAYOUT — Sections
   ═══════════════════════════════════════════════════════════ */

#page-about,
#page-subscribers {
  background-color: var(--bs-section-bg);
  margin: 4rem 0;
  padding: 4rem 0;
}

@media (min-width: 992px) {
  #page-about .col-lg-6:first-child {
    order: 2;
  }
  #page-about .col-lg-6:last-child {
    order: 1;
  }
}

.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
  background-color: var(--color-brand);
  color: var(--color-white);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1rem;
  color: var(--bs-body-color);
}

.highlights-gap {
  margin: 1rem 0;
}

p.highlights {
  font-size: 1rem;
  font-weight: normal;
  color: var(--bs-body-color);
}

.card {
  background-color: var(--card-bg);
  padding: 1rem;
  height: 100%;
}

.card-body {
  color: var(--card-color);
}

.card-gap {
  margin: 1rem 0;
}

#page-pricing {
  margin-bottom: 4rem;
}

#page-about h2,
#page-highlights h2,
#page-subscribers h2,
#page-pricing h2 {
  font-weight: bolder;
}

#page-about p,
#highlights-lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #6c757d;
  margin-bottom: .5rem;
}

#page-about p:last-child {
  margin-bottom: 0;
}

#highlights-grid {
  padding: 3rem 0;
}

.highlight-item {
  margin-top: 1.5rem;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.highlight-item p {
  color: #6c757d;
  margin-bottom: 0;
}

.subscriber-card {
  margin-bottom: 3rem;
}

.subscriber-card .card {
  background-color: #212529;
  height: 100%;
  padding: 1.5rem;
}

.subscriber-card .card-body h5 {
  color: var(--color-white);
  margin-bottom: .5rem;
}

.subscriber-card .card-body p {
  color: var(--color-white);
  margin-bottom: 0;
}

#pricing-list ul {
  list-style: none;
  padding-left: 0;
}

#pricing-list li {
  margin-top: .5rem;
}

/* ═══════════════════════════════════════════════════════════
   9. PAGE HEADER
   ═══════════════════════════════════════════════════════════ */

#page-header,
#page-header-claim,
.bg-image {
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#page-header {
  padding: .5rem 0;
}

#page-header .row {
  justify-content: center;
  align-items: center;
}

#page-header h1 {
  font-size: 3rem;
  font-weight: bolder;
  color: #fff;
  margin-bottom: .5rem;
}

#page-header p {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

#page-header #header-image {
  margin: 0;
}

#page-header-claim {
  padding: .25rem 0;
}

#page-header-claim h1 {
  color: #000;
  margin-bottom: .5rem;
}

#page-header-claim p {
  color: #000;
}

#page-service-name {
  text-align: center;
  color: rgba(255, 255, 255, .75);
}

/* ═══════════════════════════════════════════════════════════
   10. LANGUAGE SELECTOR
   ═══════════════════════════════════════════════════════════ */

#language-selector {
  text-align: right;
  margin-top: -24px;
}

#language-selector a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

#header-logo {
  margin: .25rem 0;
  text-align: center;
}

#header-logo img {
  max-width: 100%;
  height: auto;
}

#header-claim {
  text-align: center;
}

#header-domain-top {
  text-align: center;
  padding: .5rem 0;
  color: var(--bs-body-color);
}

/* ═══════════════════════════════════════════════════════════
   9. FOOTER
   ═══════════════════════════════════════════════════════════ */

#page-footer {
  background-color: var(--footer-bg);
  padding: 3rem 1.5rem;
  margin-top: auto;
}

#page-footer .row {
  align-items: center;
  justify-content: space-between;
}

#page-footer div {
  font-size: .875rem;
  margin: 0;
  color: var(--footer-color);
}

#page-footer .footer-muted {
  color: var(--footer-color-muted);
}

#page-footer a {
  display: block;
  font-size: .875rem;
  color: var(--footer-link-color);
  text-decoration: none;
}

#page-footer img {
  max-width: 50%;
  height: auto;
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════════════
   11. FORM FLOW
   ═══════════════════════════════════════════════════════════ */

#form-column .welcome-lead { font-size: 1.25rem; font-weight: 300; }

#actionForm .form-check-label { font-size: 0.875rem; }

#actionForm .input-group { margin-bottom: 1rem; }
#actionForm .form-control { text-align: center; }
#actionForm button[type="submit"] { width: 100%; padding: .5rem 1rem; font-size: 1.25rem; border-radius: .5rem; }

#actionForm .subscription-types { padding-top: 3rem; }
#actionForm .subscription-types .form-check { display: block; }

#async-form-content { text-align: center; }
#async-form-content .spinner-border { width: 3rem; height: 3rem; }

#subscriptionModal .modal-content { background-color: var(--modal-bg); border: none; }
#subscriptionModal .modal-body { padding: 1.5rem; }

#modal-cta { padding: .75rem 0; }

#page-cookies,
#page-help { background-color: #000; color: var(--color-white); padding: 3rem 1rem; }
#page-cookies .row,
#page-help .row { justify-content: center; align-items: center; }

#credentials { list-style: none; padding: 0; color: var(--color-white); }

#page-header .service-name { text-align: center; color: rgba(255, 255, 255, .75); }

/* ═══════════════════════════════════════════════════════════
   10. LEGAL PAGES (privacy / terms / contact)
   ═══════════════════════════════════════════════════════════ */

#page-legal {
  background-color: var(--legal-bg);
  color: var(--legal-color);
  padding: 4rem 1rem;
}

#page-legal .row {
  justify-content: center;
}

#page-legal h1 {
  font-size: 2.5rem;
  font-weight: bolder;
  margin-bottom: .5rem;
}

#page-legal h2,
#page-legal h4 {
  font-weight: bolder;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

#page-legal p,
#page-legal li,
#page-legal table {
  font-size: .875rem;
  opacity: .75;
}

#page-legal ul,
#page-legal ol {
  padding-left: 1.25rem;
}

#page-legal a {
  color: inherit;
  opacity: .75;
}