/* ─── PALETTE A — Arctic Mint ─────────────────────────────── */
:root {
  --color-accent:       #00CFAA;
  --color-accent-dark:  #009E82;
  --color-bg:           #0D0E1A;
  --color-bg-surface:   #13152A;
  --color-text:         #E4E8F5;
  --color-text-muted:   #7A80A0;
  --color-border:       #1E2240;

  --font-main:    'Inter', sans-serif;
  --font-label:   'Montserrat', sans-serif;

  --container-max: 1280px;
  --px: clamp(20px, 4vw, 64px);
  --py: clamp(64px, 8vw, 120px);
  --radius-pill: 50px;
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; }

/* ─── UTILITIES ────────────────────────────────────────────── */
.container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--px);
  margin: 0 auto;
}

.star-icon {
  width: 72px;
  height: 72px;
  position: absolute;
  z-index: 2;
  color: inherit;
  flex-shrink: 0;
}
.star-left  { left:  -36px; bottom: -36px; }
.star-right { right: -36px; bottom: -36px; }

/* ─── HEADER ───────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }

.header-nav ul {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.header-nav a {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-transform: lowercase;
  transition: color 0.25s;
}
.header-nav a:hover { color: var(--color-accent); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.swiss-tag {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 10;
  pointer-events: none;
}
.swiss-tag-line {
  width: clamp(40px, 6vw, 96px);
  height: 1px;
  background: var(--color-accent);
}
.swiss-tag-text {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--color-text-muted);
  padding: 4px 12px;
  border-bottom: 1px solid var(--color-accent);
  white-space: nowrap;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 60vw, 800px);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--py) clamp(24px, 4vw, 72px);
  gap: clamp(24px, 4vw, 48px);
}

.hero-logo { height: clamp(44px, 7vw, 100px); width: auto; }

.hero-tagline {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text-muted);
}

.hero-right {
  border-left: 1px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 520px;
  background: url('https://lemanpay.com/images/technology.gif') center / contain no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, transparent 0deg, var(--color-accent) 360deg);
  filter: blur(64px);
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-tech-text {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 36px);
  margin-top: auto;
  border-top: 1px dashed var(--color-border);
}

/* ─── INTRO BAND ───────────────────────────────────────────── */
.intro-band {
  border-bottom: 1px solid var(--color-border);
}

.intro-inner {
  border-left: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  padding: clamp(32px, 5vw, 64px) clamp(32px, 6vw, 96px);
  text-align: center;
  font-size: clamp(18px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-accent);
}

/* ─── MODULE SHARED ────────────────────────────────────────── */
.module-header {
  border-bottom: 1px solid;
}

.module-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 3vw, 36px) 0;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  gap: 2rem;
}

.module-header-num { white-space: nowrap; }
.module-header-accent { }
.module-header-desc {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  text-align: right;
  max-width: 480px;
}

.module-intro { border-bottom: 1px solid; }

.module-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(320px, 40vw, 560px);
}

.module-name-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 4vw, 64px) clamp(24px, 4vw, 64px);
  gap: clamp(12px, 2vw, 24px);
}

.module-name {
  font-size: clamp(32px, 5vw, 80px);
  font-weight: 500;
  line-height: 1;
}

.module-subtitle {
  font-size: clamp(20px, 2.5vw, 40px);
  font-weight: 300;
  line-height: 1.2;
}

.module-tech-panel {
  border-left: 1px dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.module-tech-text {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 36px);
}

/* label gif (module-03) */
.label-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url('https://lemanpay.com/images/label.gif') center / contain no-repeat;
  mix-blend-mode: difference;
  clip-path: inset(0 0 120px 0);
  pointer-events: none;
}

/* ─── FEATURE LISTS (modules 01 & 03) ─────────────────────── */
.features-list { border-bottom: 1px solid; }

.features-list-inner { border-left: 1px solid; border-right: 1px solid; }

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  min-height: clamp(100px, 14vw, 180px);
  padding: 0;
  gap: 1rem;
}
.feature-row:last-of-type { border-bottom: none; }

.feature-label {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(16px, 2vw, 28px) clamp(20px, 3vw, 40px);
  font-size: clamp(16px, 1.8vw, 28px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex: 1;
}
.feature-label img { width: clamp(40px, 5vw, 72px); flex-shrink: 0; }

.feature-text {
  padding: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 40px);
  width: clamp(200px, 32%, 380px);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  flex-shrink: 0;
}

/* ─── FEATURE GRID (module 02) ─────────────────────────────── */
.features-grid { border-bottom: 1px solid; }

.features-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-accent);
  border-left: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
}

.grid-card {
  background: var(--color-bg);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  align-items: flex-start;
  min-height: clamp(180px, 22vw, 340px);
  transition: background 0.2s;
}
.grid-card:hover { background: var(--color-bg-surface); }

.grid-card-icon { flex-shrink: 0; }
.grid-card-icon img { width: clamp(48px, 5vw, 80px); }

.grid-card-body { display: flex; flex-direction: column; gap: 12px; justify-content: center; }

.grid-card-title {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.grid-card-text {
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ─── CTA FOOTER ───────────────────────────────────────────── */
.module-cta { overflow: hidden; }

.cta-inner {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 2vw, 28px);
}

.cta-text {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.25;
}

.cta-label {
  font-family: var(--font-label);
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  padding: clamp(8px, 1.5vw, 20px) 0;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  border: 1.5px solid currentColor;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

/* ─── MODULE 01 — Financial ────────────────────────────────── */
#module-01 { background: var(--color-accent); color: var(--color-bg); }

#module-01 .module-header        { border-color: var(--color-bg); }
#module-01 .module-header-inner  { color: var(--color-bg); }
#module-01 .module-header-accent { color: var(--color-bg-surface); }
#module-01 .module-intro-inner   { color: var(--color-bg); }
#module-01 .module-tech-panel    { border-color: var(--color-bg); }
#module-01 .module-name          { color: var(--color-bg-surface); }
#module-01 .module-subtitle      { color: var(--color-bg); }
#module-01 .module-tech-text     { color: var(--color-bg-surface); }

#module-01 .features-list        { border-color: var(--color-bg); }
#module-01 .features-list-inner  { border-color: var(--color-bg); }
#module-01 .feature-row          { border-color: var(--color-bg); }
#module-01 .feature-label        { color: var(--color-bg-surface); }
#module-01 .feature-text         { color: var(--color-bg); }
#module-01 .star-icon            { color: var(--color-bg); }

#module-01 .module-cta           { background: var(--color-bg); color: var(--color-text); }
#module-01 .cta-btn {
  color: var(--color-accent);
  background: transparent;
  border-color: var(--color-accent);
}
#module-01 .cta-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
#module-01 .module-cta .star-icon { color: var(--color-border); }

/* ─── MODULE 02 — Orchestration ────────────────────────────── */
#module-02 {
  background: url('https://lemanpay.com/images/orchestr.gif') top center / cover no-repeat;
  color: var(--color-text);
}

#module-02 .module-header        { background: var(--color-bg); border-color: var(--color-border); }
#module-02 .module-header-accent { color: var(--color-accent); }
#module-02 .module-intro-inner   { background: var(--color-bg); }
#module-02 .module-tech-panel    { border-color: var(--color-border); }
#module-02 .module-name          { color: var(--color-text-muted); }
#module-02 .module-subtitle      { color: var(--color-text); }
#module-02 .module-tech-text     { color: var(--color-text-muted); }

#module-02 .features-grid        { border-color: var(--color-border); }
#module-02 .star-icon            { color: var(--color-accent); }

#module-02 .module-cta           { background: var(--color-accent); color: var(--color-bg); }
#module-02 .cta-text             { color: var(--color-bg); }
#module-02 .cta-label            { color: var(--color-bg); }
#module-02 .cta-btn {
  color: var(--color-bg);
  background: transparent;
  border-color: var(--color-bg);
}
#module-02 .cta-btn:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}
#module-02 .module-cta .star-icon { color: var(--color-accent); }

/* ─── MODULE 03 — White Label ──────────────────────────────── */
#module-03 { background: #ffffff; color: var(--color-bg); }

#module-03 .module-header        { border-color: var(--color-bg); }
#module-03 .module-header-inner  { color: var(--color-bg); }
#module-03 .module-header-accent { color: var(--color-accent-dark); }
#module-03 .module-intro-inner   { color: var(--color-bg); }
#module-03 .module-tech-panel    { border-color: rgba(13,14,26,0.2); }
#module-03 .module-name          { color: rgba(13,14,26,0.45); }
#module-03 .module-subtitle      { color: var(--color-bg); }
#module-03 .module-tech-text     { color: rgba(13,14,26,0.65); }

#module-03 .features-list        { border-color: rgba(13,14,26,0.15); }
#module-03 .features-list-inner  { border-color: rgba(13,14,26,0.15); }
#module-03 .feature-row          { border-color: rgba(13,14,26,0.12); }
#module-03 .feature-label        { color: var(--color-bg); }
#module-03 .feature-text         { color: rgba(13,14,26,0.6); }
#module-03 .star-icon            { color: var(--color-bg); }

#module-03 .module-cta           { background: var(--color-bg); color: var(--color-text); }
#module-03 .cta-btn {
  color: var(--color-accent);
  background: transparent;
  border-color: var(--color-accent);
}
#module-03 .cta-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
#module-03 .module-cta .star-icon { color: var(--color-border); }

/* ─── CONTACT ──────────────────────────────────────────────── */
#contact { background: var(--color-bg); }

.contact-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(64px, 10vw, 140px) 0;
  gap: clamp(16px, 2.5vw, 32px);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.contact-heading {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent);
  text-align: center;
}

.contact-sub {
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  text-align: center;
  color: var(--color-text-muted);
  padding: 0 clamp(16px, 4vw, 48px);
}

.contact-form {
  width: min(680px, 92%);
  background: var(--color-text);
  color: var(--color-bg);
  padding: clamp(28px, 4vw, 56px);
  position: relative;
}

.contact-form h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: clamp(20px, 3vw, 32px);
  letter-spacing: 0.02em;
}

.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px) clamp(20px, 3vw, 48px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-form input:not([type="radio"]) {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--color-border);
  padding: 8px 0;
  font-size: 15px;
  font-family: var(--font-main);
  background: transparent;
  color: var(--color-bg);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:not([type="radio"]):focus {
  border-color: var(--color-accent);
}

.help-fieldset {
  border: none;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.help-fieldset legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.help-fieldset label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-bg);
  line-height: 2.2;
  flex-direction: row;
  align-items: center;
}
.help-fieldset input[type="radio"] {
  margin-right: 8px;
  accent-color: var(--color-accent);
}

.btn-submit {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  transition: background 0.25s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--color-accent-dark); }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer { border-top: 1px solid var(--color-border); background: var(--color-bg); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: clamp(24px, 3vw, 40px) var(--px);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--color-accent); }
.footer-email img { width: 22px; }

/* ─── HERO TRUST TAGS ──────────────────────────────────────── */
.hero-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.trust-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about-section {
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--py) 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.stat-card {
  background: var(--color-bg-surface);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s;
}
.stat-card:hover { background: var(--color-bg); }

.stat-card--accent {
  background: var(--color-accent);
}
.stat-card--accent:hover { background: var(--color-accent-dark); }
.stat-card--accent .stat-value,
.stat-card--accent .stat-unit,
.stat-card--accent .stat-label { color: var(--color-bg); }

.stat-value {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.stat-unit {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.about-text {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ─── SECURITY ──────────────────────────────────────────────── */
.security-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--py) 0;
}

.security-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.security-icon-col {
  padding-top: 6px;
  flex-shrink: 0;
}

.security-shield {
  width: clamp(48px, 5vw, 72px);
  height: auto;
  color: var(--color-accent);
}

.security-heading {
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.security-text {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: clamp(24px, 3vw, 40px);
  max-width: 820px;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 16px);
}

.security-badge {
  border: 1px solid var(--color-border);
  padding: clamp(12px, 1.5vw, 18px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 180px;
  transition: border-color 0.2s;
}
.security-badge:hover { border-color: var(--color-accent); }

.badge-title {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.badge-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.footer-pci {
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.45;
  white-space: nowrap;
}

/* ─── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner           { grid-template-columns: 1fr; }
  .hero-right           { display: none; }
  .module-intro-inner   { grid-template-columns: 1fr; min-height: auto; }
  .module-tech-panel    { display: none; }
  .module-header-desc   { display: none; }
  .features-grid-inner  { grid-template-columns: 1fr; }
  .fields-grid          { grid-template-columns: 1fr; }
  .feature-text         { width: 45%; }
  .swiss-tag            { display: none; }
  .star-icon            { display: none; }
  .footer-inner         { justify-content: center; text-align: center; }
  .about-stats          { grid-template-columns: 1fr 1fr; }
  .security-inner       { grid-template-columns: 1fr; }
  .security-icon-col    { display: none; }
  .security-badges      { flex-direction: column; }
  .footer-pci           { text-align: center; width: 100%; }
}

@media (max-width: 480px) {
  .module-name-block    { padding: 32px 20px; }
  .feature-label        { font-size: 14px; padding: 16px 16px; }
  .feature-text         { width: 50%; font-size: 12px; padding: 12px 16px; }
  .cta-inner            { padding: 40px 20px; }
  .contact-form         { padding: 24px 20px; }
  .fields-grid          { gap: 16px; }
}
