:root {
  --bg: #07111f;
  --bg-soft: #0d1b2d;
  --surface: rgba(11, 24, 40, 0.78);
  --surface-strong: #0f2138;
  --surface-light: #f5f8fd;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --text: #eff5ff;
  --text-dark: #102033;
  --muted: #aab9d0;
  --muted-dark: #59708d;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 32, 51, 0.12);
  --accent: #55c2ff;
  --accent-2: #7bffcf;
  --accent-3: #7c8cff;
  --success: #0d8f61;
  --success-soft: rgba(13, 143, 97, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.landing-body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(85, 194, 255, 0.16), transparent 26%),
    radial-gradient(circle at 90% 0%, rgba(123, 255, 207, 0.14), transparent 24%),
    linear-gradient(180deg, #06101c 0%, #081321 45%, #0b1728 100%);
}

.landing-body[data-theme='light'] {
  color: #12253b;
  background:
    radial-gradient(circle at 10% 15%, rgba(85, 194, 255, 0.12), transparent 26%),
    radial-gradient(circle at 90% 0%, rgba(123, 140, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 50%, #e8f0fb 100%);
}

.landing-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.8;
}

.landing-orb-one {
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(85, 194, 255, 0.2);
}

.landing-orb-two {
  left: -60px;
  top: 320px;
  width: 220px;
  height: 220px;
  background: rgba(123, 140, 255, 0.16);
}

.landing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
}

.landing-header,
.landing-shell,
.crm-shell {
  position: relative;
  z-index: 1;
}

.landing-header {
  width: min(1200px, calc(100vw - 40px));
  margin: 24px auto 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 20, 34, 0.6);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.landing-body[data-theme='light'] .landing-header {
  border-color: rgba(16, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 40px rgba(33, 61, 95, 0.1);
}

.landing-brand,
.landing-brand-text {
  display: inline-flex;
  align-items: center;
}

.landing-brand {
  gap: 14px;
}

.landing-brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(85, 194, 255, 0.18);
}

.landing-brand-text {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.landing-brand-text strong {
  font-size: 0.98rem;
}

.landing-brand-text span,
.landing-nav,
.hero-modern-lead,
.landing-section-head p,
.service-card-modern p,
.landing-split-copy p,
.method-stack p,
.landing-cta-copy p,
.landing-band p,
.panel-heading p,
.empty-state,
.meta-row,
.data-card p,
.lead-message,
label {
  color: var(--muted);
}

.landing-brand-text span {
  font-size: 0.82rem;
}

.landing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4px;
  min-width: 62px;
  min-height: 46px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.92rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
  opacity: 0.65;
}

.landing-body[data-theme='dark'] .theme-toggle-moon,
.landing-body[data-theme='light'] .theme-toggle-sun {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #081321;
  opacity: 1;
}

.landing-body[data-theme='light'] .theme-toggle {
  border-color: rgba(16, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: #12253b;
}

.landing-shell {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 34px 0 80px;
}

.hero-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.hero-modern-copy,
.hero-modern-panel,
.landing-band,
.landing-section,
.landing-split,
.landing-results,
.landing-about,
.landing-cta,
.service-card-modern,
.crm-section,
.crm-panel,
.mini-form,
.stat-card,
.data-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-modern-copy,
.landing-band,
.landing-section,
.landing-split,
.landing-results,
.landing-about,
.landing-cta,
.crm-section {
  border-radius: 34px;
  background: rgba(9, 21, 36, 0.72);
  backdrop-filter: blur(18px);
}

.landing-body[data-theme='light'] .hero-modern-copy,
.landing-body[data-theme='light'] .landing-band,
.landing-body[data-theme='light'] .landing-section,
.landing-body[data-theme='light'] .landing-split,
.landing-body[data-theme='light'] .landing-results,
.landing-body[data-theme='light'] .landing-cta {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(16, 32, 51, 0.1);
  box-shadow: 0 24px 60px rgba(41, 70, 104, 0.09);
}

.hero-modern-copy {
  padding: 64px;
}

.hero-pill,
.section-kicker,
.service-label,
.crm-kicker,
.stat-card span,
.method-stack span,
.hero-panel-grid span {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-pill,
.section-kicker,
.service-label,
.crm-kicker {
  color: var(--accent);
}

.landing-body[data-theme='light'] .landing-brand-text span,
.landing-body[data-theme='light'] .landing-nav,
.landing-body[data-theme='light'] .hero-modern-lead,
.landing-body[data-theme='light'] .landing-section-head p,
.landing-body[data-theme='light'] .service-card-modern p,
.landing-body[data-theme='light'] .landing-split-copy p,
.landing-body[data-theme='light'] .method-stack p,
.landing-body[data-theme='light'] .landing-cta-copy p,
.landing-body[data-theme='light'] .landing-band p,
.landing-body[data-theme='light'] label,
.landing-body[data-theme='light'] .form-feedback-modern {
  color: #57708e;
}

.landing-body[data-theme='light'] .landing-brand-text strong,
.landing-body[data-theme='light'] .hero-modern h1,
.landing-body[data-theme='light'] .landing-section-head h2,
.landing-body[data-theme='light'] .landing-split-copy h2,
.landing-body[data-theme='light'] .landing-cta-copy h2,
.landing-body[data-theme='light'] .service-card-modern h3,
.landing-body[data-theme='light'] .method-stack h3,
.landing-body[data-theme='light'] .results-grid-modern h3 {
  color: #102033;
}

.hero-modern h1,
.landing-section-head h2,
.landing-split-copy h2,
.landing-cta-copy h2,
.crm-header h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero-modern h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.hero-modern-lead {
  max-width: 64ch;
  margin: 24px 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-modern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button-modern:hover,
.button-modern:focus-visible {
  transform: translateY(-2px);
}

.button-modern-primary {
  color: #081321;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 32px rgba(85, 194, 255, 0.28);
}

.button-modern-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.hero-trust-row,
.landing-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-row {
  margin-top: 28px;
}

.hero-trust-row span,
.landing-band span,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
}

.hero-trust-row span,
.landing-band span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #d8e6fa;
  font-size: 0.92rem;
}

.landing-body[data-theme='light'] .hero-trust-row span,
.landing-body[data-theme='light'] .landing-band span {
  border-color: rgba(16, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: #26415f;
}

.hero-modern-panel {
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(15, 33, 56, 0.98), rgba(10, 22, 38, 0.96)),
    var(--surface);
}

.landing-body[data-theme='light'] .hero-modern-panel {
  border-color: rgba(16, 32, 51, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.98)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(41, 70, 104, 0.12);
}

.hero-score-card,
.hero-panel-grid article,
.service-card-modern,
.method-stack article,
.results-grid-modern article,
.landing-form,
.crm-panel,
.mini-form,
.stat-card,
.data-card {
  border-radius: 28px;
  background: var(--card);
}

.hero-score-card,
.hero-panel-grid article,
.service-card-modern,
.method-stack article,
.results-grid-modern article,
.landing-form,
.crm-panel,
.mini-form,
.stat-card,
.data-card {
  border: 1px solid var(--line);
}

.landing-body[data-theme='light'] .hero-score-card,
.landing-body[data-theme='light'] .hero-panel-grid article,
.landing-body[data-theme='light'] .service-card-modern,
.landing-body[data-theme='light'] .method-stack article,
.landing-body[data-theme='light'] .results-grid-modern article,
.landing-body[data-theme='light'] .landing-form {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 32, 51, 0.1);
}

.hero-score-card,
.landing-band,
.landing-section,
.landing-split,
.landing-results,
.landing-about,
.landing-cta,
.crm-section {
  animation: rise-in 700ms ease both;
}

.hero-score-card {
  padding: 24px;
}

.hero-score-card p {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-body[data-theme='light'] .hero-score-card p,
.landing-body[data-theme='light'] .method-stack span,
.landing-body[data-theme='light'] .hero-panel-grid span {
  color: #0b8a73;
}

.landing-body[data-theme='light'] .hero-score-card strong,
.landing-body[data-theme='light'] .hero-panel-grid h2 {
  color: #102033;
}

.landing-body[data-theme='light'] .hero-panel-grid p {
  color: #59708d;
}

.hero-score-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero-panel-grid,
.service-grid-modern,
.results-grid-modern,
.stats-grid,
.crm-grid {
  display: grid;
  gap: 18px;
}

.hero-panel-grid {
  margin-top: 16px;
  grid-template-columns: 1fr;
}

.hero-panel-grid article,
.service-card-modern,
.method-stack article,
.results-grid-modern article,
.landing-form,
.crm-panel,
.mini-form,
.stat-card,
.data-card {
  padding: 24px;
}

.hero-panel-grid h2,
.service-card-modern h3,
.method-stack h3,
.results-grid-modern h3,
.panel-heading h3,
.mini-form h3,
.data-card h4 {
  margin: 12px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.08;
}

.hero-panel-grid p,
.service-card-modern p,
.method-stack p,
.results-grid-modern p,
.landing-section-head p,
.landing-split-copy p,
.landing-cta-copy p,
.panel-heading p,
.data-card p,
.lead-message,
.meta-row,
label {
  margin: 0;
  line-height: 1.7;
}

.landing-band,
.landing-section,
.landing-split,
.landing-results,
.landing-cta,
.crm-section {
  margin-top: 22px;
  padding: 30px;
}

.landing-band {
  display: grid;
  gap: 16px;
}

.landing-section-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.landing-section-head h2,
.landing-split-copy h2,
.landing-cta-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.landing-section-head.compact {
  max-width: 920px;
}

.service-grid-modern,
.results-grid-modern {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-modern {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.landing-split,
.landing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 22px;
}

.landing-about {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: center;
}

.landing-about-photo-wrap {
  position: relative;
}

.landing-about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 8% -18px 8%;
  height: 28px;
  border-radius: 999px;
  background: rgba(85, 194, 255, 0.2);
  filter: blur(24px);
}

.landing-about-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.landing-about-copy {
  display: grid;
  gap: 16px;
}

.landing-about-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.landing-about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.landing-body[data-theme='light'] .landing-about-photo {
  border-color: rgba(16, 32, 51, 0.1);
  box-shadow: 0 22px 50px rgba(41, 70, 104, 0.14);
}

.landing-body[data-theme='light'] .landing-about-copy h2 {
  color: #102033;
}

.landing-body[data-theme='light'] .landing-about-copy p {
  color: #57708e;
}

.method-stack,
.panel-list {
  display: grid;
  gap: 14px;
}

.method-stack article,
.results-grid-modern article {
  background: rgba(255, 255, 255, 0.04);
}

.method-stack span,
.hero-panel-grid span {
  color: var(--accent-2);
}

.landing-form,
.mini-form,
.checklist {
  display: grid;
  gap: 14px;
}

.landing-contact-card {
  align-content: start;
}

.contact-card-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card-link {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-card-note {
  margin: 0;
}

.landing-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.landing-body[data-theme='light'] input,
.landing-body[data-theme='light'] select,
.landing-body[data-theme='light'] textarea {
  border-color: rgba(16, 32, 51, 0.12);
  background: rgba(245, 249, 255, 0.92);
  color: #102033;
}

.landing-body[data-theme='light'] .contact-card-link {
  color: #102033;
}

.landing-body[data-theme='light'] input::placeholder,
.landing-body[data-theme='light'] textarea::placeholder {
  color: #7f95ae;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8ea4c0;
}

.form-feedback-modern {
  min-height: 24px;
  font-size: 0.92rem;
  color: var(--accent-2);
}

.crm-body {
  min-height: 100vh;
  background: #eef4fb;
  color: var(--text-dark);
}

.crm-login-body {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(85, 194, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #eef4fb 0%, #e6eef8 100%);
}

.crm-shell {
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.crm-login-shell {
  width: min(100vw - 24px, 480px);
  padding: 24px 0;
}

.crm-login-card {
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(28, 49, 77, 0.12);
}

.crm-login-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(18, 53, 92, 0.14);
}

.crm-login-card h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--text-dark);
}

.crm-login-copy {
  margin: 12px 0 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

.crm-login-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.crm-header {
  margin-bottom: 18px;
  padding: 12px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.crm-header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.crm-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(18, 53, 92, 0.12);
}

.crm-header h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  color: var(--text-dark);
}

.crm-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crm-section,
.crm-panel,
.mini-form,
.stat-card,
.data-card {
  background: #ffffff;
  border-color: var(--line-dark);
  box-shadow: 0 18px 55px rgba(28, 49, 77, 0.08);
}

.crm-section .landing-section-head p,
.crm-section .panel-heading p,
.crm-section .meta-row,
.crm-section .data-card p,
.crm-section .lead-message,
.crm-section label,
.crm-header .crm-kicker,
.crm-section .empty-state {
  color: var(--muted-dark);
}

.crm-section .landing-section-head h2,
.crm-section .panel-heading h3,
.crm-section .mini-form h3,
.crm-section .data-card h4 {
  color: var(--text-dark);
}

.crm-body input,
.crm-body select,
.crm-body textarea {
  border-color: rgba(16, 32, 51, 0.12);
  background: #f7fbff;
  color: var(--text-dark);
  caret-color: var(--text-dark);
}

.crm-body input::placeholder,
.crm-body textarea::placeholder {
  color: #7f95ae;
}

.crm-main {
  display: grid;
}

.stats-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 18px;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  color: var(--text-dark);
}

.crm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.mini-form {
  flex: 1 1 320px;
}

.crm-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  margin-bottom: 18px;
}

.data-card {
  display: grid;
  gap: 14px;
}

.data-card-top,
.meta-row,
.action-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  background: rgba(16, 32, 51, 0.08);
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.pill-success {
  background: var(--success-soft);
  color: var(--success);
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #f5f8fd;
}

.toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
}

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

.empty-state {
  padding: 22px;
  border: 1px dashed var(--line-dark);
  border-radius: 20px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero-modern,
  .landing-split,
  .landing-about,
  .landing-cta,
  .service-grid-modern,
  .results-grid-modern,
  .stats-grid,
  .crm-grid,
  .checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-header,
  .landing-shell,
  .crm-shell {
    width: min(100vw - 24px, 1240px);
  }

  .landing-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .crm-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-header-actions {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }

  .landing-nav {
    gap: 14px;
  }

  .hero-modern-copy,
  .landing-band,
  .landing-section,
  .landing-split,
  .landing-results,
  .landing-cta,
  .crm-section {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-modern h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .landing-section-head h2,
  .landing-split-copy h2,
  .landing-cta-copy h2,
  .crm-header h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .hero-modern-actions,
  .button-modern,
  .crm-actions {
    width: 100%;
  }

  .theme-toggle {
    align-self: flex-end;
  }

  .button-modern {
    justify-content: center;
  }

  .data-card-top,
  .meta-row,
  .action-row {
    flex-direction: column;
  }
}
