:root {
  --color-primary: #e21e21;
  --color-primary-dark: #c81b1b;
  --color-accent: #f5b300;
  --color-text: #171717;
  --color-muted: #5b5b5b;
  --color-surface: #ffffff;
  --color-surface-alt: #f6f6f6;
  --color-border: rgba(23, 23, 23, 0.08);
  --font-header: 'Oswald', sans-serif;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 18px 40px rgba(18, 18, 18, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
}

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

button {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 32px), var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 165px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1 1 auto;
}

.site-nav a,
.locale-button {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 400;
  font-family: var(--font-header);
  letter-spacing: 0.01em;
  line-height: 1.1;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.locale-button:hover {
  opacity: 0.82;
}

.locale-switcher {
  position: relative;
  flex: 0 0 auto;
}

.locale-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.locale-button .fa-globe {
  font-size: 1em;
  line-height: 1;
}

.locale-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 270px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  max-height: calc(100dvh - 120px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.locale-switcher.is-open .locale-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.locale-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 12px;
  color: var(--color-text);
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
}

.locale-menu button:hover,
.locale-menu button.is-active {
  background: rgba(226, 30, 33, 0.08);
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.15rem;
}

.menu-toggle,
.locale-button {
  font-family: var(--font-header);
}

.hero {
  position: relative;
  min-height: max(420px, calc(100vh - 340px));
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/header.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 22, 16, 0.62) 0%, rgba(38, 22, 16, 0.48) 34%, rgba(38, 22, 16, 0.58) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 55%, rgba(38, 22, 16, 0.34) 0%, rgba(38, 22, 16, 0.28) 18%, rgba(38, 22, 16, 0.1) 36%, rgba(38, 22, 16, 0) 58%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: max(420px, calc(100vh - 280px));
  padding: 170px 0 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.hero-tagline {
  margin: 12px 0 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(245, 179, 0, 0.24);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(226, 30, 33, 0.24);
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--color-surface-alt);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-heading-center {
  max-width: none;
  margin: 0 0 54px;
  text-align: center;
}

.section-heading-center h2 {
  font-size: clamp(2.55rem, 4vw, 3.7rem);
  line-height: 1;
  font-weight: 400;
  color: #1c1c1c;
}

.section-about {
  background: #fff;
}

.section-pos-banner {
  padding-top: 28px;
  padding-bottom: 28px;
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}

.pos-banner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 30px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid rgba(226, 30, 33, 0.1);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fff6f6 100%);
  box-shadow: 0 24px 60px rgba(41, 41, 41, 0.08);
}

.pos-banner-copy {
  min-width: 0;
}

.pos-banner-media-mobile {
  display: none;
}

.pos-banner-copy h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.05;
}

.pos-banner-copy p {
  margin: 16px 0 0;
  color: #575757;
  font-size: 1rem;
  line-height: 1.78;
}

.pos-banner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.pos-banner-price {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(226, 30, 33, 0.06);
  color: #3a3a3a;
}

.pos-banner-price strong {
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1;
}

.pos-banner-price span {
  color: #666;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pos-banner-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: stretch;
}

.pos-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.28);
  transform-origin: center center;
  filter: drop-shadow(0 24px 44px rgba(107, 12, 12, 0.18));
}

.section-features {
  background: #fff;
}

.section-banner {
  padding: 0;
  background: #fff;
}

.banner-container {
  width: 100%;
  max-width: none;
}

.banner-panel {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  background: url('../img/subscribe.jpg') no-repeat center center;
  background-size: cover;
}

.banner-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(63, 58, 52, 0.34);
}

.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 292px;
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 20px;
  text-align: center;
  color: #fff;
}

.banner-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banner-content h2 {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.banner-content p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.96rem;
  line-height: 1.6;
}

.banner-form {
  display: flex;
  justify-content: center;
  width: min(100%, 360px);
  margin-top: 24px;
}

.banner-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 34px;
  border: 0;
  padding: 0 12px;
  color: #787878;
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.84rem;
  font-style: italic;
}

.banner-form input::placeholder {
  color: #a8a8a8;
}

.banner-submit {
  flex: 0 0 auto;
  height: 34px;
  border: 0;
  padding: 0 22px;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-header);
  font-size: 0.92rem;
  cursor: pointer;
}

.banner-link {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.02rem;
}

.about-layout,
.pricing-layout,
.contact-layout {
  display: grid;
  gap: 28px;
}

.about-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.04fr);
  gap: 54px;
  align-items: start;
}

.about-copy {
  padding-top: 4px;
}

.about-copy h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: clamp(2.5rem, 4vw, 3.55rem);
  line-height: 1;
  font-weight: 400;
}

.about-divider {
  display: block;
  width: 74px;
  height: 3px;
  margin: 18px 0 26px;
  background: #ff5a5a;
}

.about-copy p {
  margin: 0 0 22px;
  color: #959595;
  font-size: 1.04rem;
  line-height: 1.62;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-accordion {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.about-item {
  border: 1px solid #ededed;
  background: #fff;
}

.about-toggle {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.about-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: #f5f5f5;
  color: #777;
  font-size: 1rem;
}

.about-toggle-label {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: #969696;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.about-item.is-active .about-toggle-icon {
  background: #3c3c3c;
  color: #fff;
}

.about-panel {
  border-top: 1px solid #ededed;
  padding: 18px 20px 20px;
}

.about-panel p {
  margin: 0;
  color: #8d8d8d;
  font-size: 1.02rem;
  line-height: 1.7;
}

.card,
.pricing-card,
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.card {
  padding: 28px;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.card p,
.about-story p,
.pricing-card li,
.contact-card {
  color: var(--color-muted);
  line-height: 1.75;
}

.card-large {
  padding: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 42px;
  align-items: start;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  text-align: center;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-bottom: 20px;
  color: #848484;
  font-size: 2rem;
  line-height: 1;
}

.feature-icon-payment {
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 260px;
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-icon-payment i {
  font-size: 1.2em;
  color: var(--color-primary);
}

.feature-icon-payment span {
  color: #848484;
  white-space: nowrap;
}

.feature-icon-payment span:nth-child(3) {
  font-size: 0.72rem;
}

.feature-card h3 {
  margin: 0;
  color: #2c2c2c;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.feature-divider {
  display: block;
  width: 26px;
  height: 2px;
  margin: 14px 0 18px;
  background: #ff5a5a;
}

.feature-card p {
  margin: 0;
  color: #999999;
  font-size: 1.02rem;
  line-height: 1.65;
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-layout {
  grid-template-columns: 1fr;
  gap: 34px;
}

.pricing-copy {
  max-width: none;
  min-width: 0;
  margin-bottom: 0;
}

.pricing-copy h2 {
  max-width: 14ch;
  overflow-wrap: anywhere;
}

.pricing-card {
  overflow: hidden;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
}

.pricing-card-top {
  height: 6px;
  background: var(--color-primary);
}

.pricing-card-head {
  padding: 28px 28px 88px;
  text-align: center;
}

.pricing-card-head h3 {
  margin: 0;
  color: #3a3a3a;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: -52px;
}

.pricing-badge {
  width: min(100%, 320px);
  min-width: 220px;
  padding: 20px 18px;
  background: var(--color-primary);
  text-align: center;
  box-shadow: 0 18px 34px rgba(226, 30, 33, 0.28);
}

.pricing-badge h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.pricing-badge p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.94rem;
}

.pricing-card-body {
  padding: 42px 30px 30px;
  background: #fff;
  min-width: 0;
}

.pricing-feature-grid {
  margin: 0;
  padding: 0;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 22px;
  list-style: none;
}

.pricing-feature-grid li {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  gap: 10px;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(226, 30, 33, 0.08);
  border-radius: 14px;
  background: #fafafa;
}

.pricing-feature-grid li i {
  margin-top: 3px;
  color: var(--color-primary);
}

.pricing-feature-grid li span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pricing-note {
  max-width: 460px;
  margin: 20px auto 0;
  color: #7b7b7b;
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: center;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
}

.section-contact-legacy {
  background: #6a6a6a;
}

.contact-legacy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.52fr);
  gap: 48px;
  align-items: start;
}

.contact-legacy-copy {
  padding-top: 6px;
  color: #fff;
}

.contact-legacy-copy h2 {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.15;
}

.contact-legacy-divider {
  display: block;
  width: 22px;
  height: 2px;
  margin: 18px 0 34px;
  background: #ff4b4b;
}

.contact-legacy-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
}

.contact-legacy-copy a {
  color: #fff;
}

.contact-legacy-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.contact-legacy-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4a4a4a;
  color: #fff;
  font-size: 0.9rem;
}

.contact-legacy-form {
  display: grid;
  gap: 14px;
}

.contact-legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-legacy-form input,
.contact-legacy-form textarea {
  width: 100%;
  border: 0;
  padding: 14px 12px;
  background: #fff;
  color: #777;
  font-size: 0.92rem;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

.contact-legacy-form textarea {
  resize: vertical;
  min-height: 126px;
}

.contact-legacy-form input::placeholder,
.contact-legacy-form textarea::placeholder {
  color: #b1b1b1;
}

.contact-legacy-submit {
  justify-self: center;
  min-width: 92px;
  height: 42px;
  border: 0;
  padding: 0 26px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-header);
  font-size: 0.98rem;
  cursor: pointer;
}

.contact-card {
  display: grid;
  gap: 20px;
  padding: 34px;
}

.contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-link {
  display: inline-block;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a,
  .locale-button {
    font-size: 1.02rem;
  }

  .about-layout,
  .contact-layout,
  .contact-legacy-layout,
  .feature-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pos-banner-panel {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
    gap: 24px;
    padding: 22px 26px 18px;
  }

  .pos-banner-media {
    align-items: center;
    padding: 14px;
    background: #fff;
    border-radius: 24px;
  }

  .pos-banner-copy h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
  }

  .pos-banner-copy p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .pos-banner-media {
    min-height: 430px;
  }

  .pos-banner-media img {
    max-height: 92%;
    transform: scale(1.06);
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
    gap: 40px;
  }

  .banner-content {
    padding: 48px 18px;
  }

  .pricing-copy,
  .contact-legacy-copy {
    grid-column: 1 / -1;
  }

  .pricing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .feature-grid {
    gap: 54px 28px;
  }

  .pricing-copy,
  .contact-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
  }

  .locale-switcher {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    display: block;
    margin-top: 0;
    justify-self: end;
  }

  .locale-button {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .locale-button #localeText,
  .locale-button .fa-angle-down {
    display: none;
  }

  .locale-button .fa-globe {
    font-size: 1.3rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

  .site-nav a {
    width: 100%;
    font-size: 1.08rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header.is-scrolled .site-nav {
    background: rgba(255, 255, 255, 0.14);
  }

  .locale-menu {
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero::after {
    background: radial-gradient(ellipse at center 55%, rgba(38, 22, 16, 0.76) 0%, rgba(38, 22, 16, 0.62) 24%, rgba(38, 22, 16, 0.22) 44%, rgba(38, 22, 16, 0) 66%);
  }

  .hero-copy {
    padding: 0;
  }

  .about-layout,
  .pricing-layout,
  .contact-layout,
  .contact-legacy-layout,
  .feature-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .section-pos-banner {
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .pos-banner-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 18px 20px;
  }

  .pos-banner-copy {
    order: 1;
  }

  .pos-banner-media-mobile {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 16px 0 6px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
  }

  .pos-banner-media-mobile img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 24px 44px rgba(107, 12, 12, 0.18));
  }

  .pos-banner-media {
    display: none;
  }

  .pos-banner-media img {
    max-height: 90%;
    transform: scale(1);
  }

  .pos-banner-copy h2 {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }

  .about-layout {
    gap: 30px;
  }

  .about-accordion {
    padding-top: 0;
  }

  .banner-panel,
  .banner-content,
  .section-banner-subscribe .banner-panel,
  .section-banner-subscribe .banner-content {
    min-height: 250px;
  }

  .banner-form {
    width: min(100%, 430px);
  }

  .pricing-copy h2 {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    line-height: 1.1;
  }

  .pricing-card-head {
    padding: 24px 18px 74px;
  }

  .pricing-badge {
    width: min(100%, 280px);
    min-width: 0;
  }

  .pricing-card-body {
    padding: 34px 18px 22px;
  }

  .pricing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .contact-legacy-layout {
    gap: 36px;
  }

  .contact-legacy-copy {
    padding-top: 0;
  }

  .section-heading-center {
    margin-bottom: 42px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 138px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container-width));
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-copy {
    padding: 0;
  }

  .menu-toggle,
  .locale-button {
    width: 56px;
    height: 56px;
  }

  .menu-toggle i,
  .locale-button .fa-globe {
    font-size: 1.4rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-pos-banner {
    padding-top: 20px;
  }

  .about-copy h2 {
    font-size: 2.9rem;
  }

  .pos-banner-panel {
    padding: 16px 14px 18px;
    border-radius: 22px;
  }

  .pos-banner-media-mobile {
    min-height: 0;
    margin-top: 14px;
  }

  .pos-banner-media-mobile img {
    width: 100%;
    max-width: none;
    max-height: none;
  }

  .pos-banner-copy h2 {
    font-size: 1.85rem;
  }

  .pos-banner-copy p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .pos-banner-footer {
    align-items: stretch;
  }

  .pos-banner-price {
    width: 100%;
    text-align: center;
  }

  .pos-banner-price strong {
    font-size: 1.8rem;
  }

  .pos-banner-media {
    min-height: clamp(220px, 60vw, 300px);
    padding: 10px;
  }

  .pos-banner-media img {
    max-width: min(100%, 240px);
    max-height: 88%;
    transform: scale(1);
  }

  .about-copy p,
  .about-panel p {
    font-size: 0.98rem;
  }

  .about-toggle-label {
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .feature-grid {
    gap: 46px;
  }

  .feature-icon {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }

  .feature-icon-payment {
    gap: 8px 10px;
    font-size: 0.84rem;
  }

  .feature-card p {
    font-size: 0.98rem;
  }

  .banner-content {
    padding: 40px 16px;
  }

  .banner-content h2 {
    font-size: 2.2rem;
  }

  .banner-content p {
    font-size: 0.94rem;
  }

  .banner-form {
    width: min(100%, 320px);
  }

  .contact-legacy-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-head {
    padding: 24px 20px 82px;
  }

  .pricing-card-body {
    padding: 38px 22px 24px;
  }

  .pricing-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  .pricing-badge {
    width: min(100%, 240px);
    padding: 18px 14px;
  }

  .pricing-badge h3 {
    font-size: 1.7rem;
  }

  .pricing-badge p {
    font-size: 0.82rem;
  }

  .pricing-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-feature-grid li {
    min-height: 0;
    padding: 12px 14px;
  }

  .pricing-note {
    font-size: 0.82rem;
  }

  .contact-legacy-copy h2 {
    font-size: 1.8rem;
  }

  .contact-legacy-form textarea {
    min-height: 112px;
  }

  .card,
  .contact-card,
  .card-large {
    padding: 24px;
  }

  .pricing-card {
    padding: 0;
  }

  .contact-link {
    font-size: 1.05rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .feature-grid,
[dir="rtl"] .pricing-layout,
[dir="rtl"] .contact-legacy-layout,
[dir="rtl"] .section-heading {
  direction: rtl;
}

[dir="rtl"] .container {
  margin-left: auto;
  margin-right: auto;
}

[dir="rtl"] .feature-card,
[dir="rtl"] .pricing-card,
[dir="rtl"] .about-item {
  text-align: right;
}

[dir="rtl"] .site-footer {
  text-align: right;
}

[dir="rtl"] .banner-form {
  direction: rtl;
}

[dir="rtl"] .contact-legacy-form {
  direction: rtl;
}

[dir="rtl"] .locale-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .locale-menu::before {
  right: auto;
  left: 20px;
}
