/* Easy DRS — marketing landing page */

.landing-page {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #0f172a;
  background: #f8fafc;
  line-height: 1.5;
}

.landing-page * {
  box-sizing: border-box;
}

.landing-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.landing-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.25);
}

.landing-brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-brand-text .brand-drs {
  color: #0f766e;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-nav a:not(.landing-btn) {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 10px;
}

.landing-nav a:not(.landing-btn):hover {
  background: #e2e8f0;
  color: #0f172a;
}

.landing-header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-header-tools .lang-select {
  width: auto;
  min-width: 88px;
  padding: 8px 10px;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 0.9rem;
}

.landing-header-tools .theme-toggle-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  box-shadow: none;
  font-size: 1.1rem;
}

/* Buttons */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.2);
}

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

.landing-btn-primary {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: #fff;
}

.landing-btn-secondary {
  background: #fff;
  color: #0f766e;
  border: 2px solid #99f6e4;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.landing-btn-ghost {
  background: transparent;
  color: #0f766e;
  box-shadow: none;
  border: 1px solid #cbd5e1;
}

.landing-btn-sm {
  padding: 10px 16px;
  font-size: 0.88rem;
}

/* Hero */
.landing-hero {
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(20, 184, 166, 0.18), transparent),
    linear-gradient(180deg, #f0fdfa 0%, #f8fafc 55%);
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.landing-eyebrow {
  display: inline-block;
  background: #ccfbf1;
  color: #0f766e;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.landing-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.landing-hero-lead {
  margin: 0 0 28px;
  font-size: 1.12rem;
  color: #475569;
  max-width: 52ch;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.landing-hero-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.landing-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 0.98rem;
}

.landing-hero-bullets li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-hero-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.landing-hero-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #0f766e;
}

.landing-hero-card p {
  margin: 0 0 20px;
  color: #64748b;
  font-size: 0.95rem;
}

.landing-flow {
  display: grid;
  gap: 12px;
}

.landing-flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.landing-flow-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #0f766e;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-flow-text {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.92rem;
}

/* Sections */
.landing-section {
  padding: 72px 0;
}

.landing-section-alt {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.landing-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.landing-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.landing-section-head p {
  margin: 0;
  color: #64748b;
  font-size: 1.05rem;
}

/* Cards grid */
.landing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.landing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.landing-section-alt .landing-card {
  background: #f8fafc;
}

.landing-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.landing-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.landing-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

/* Features list */
.landing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.landing-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.landing-feature-item span:first-child {
  color: #0f766e;
  font-weight: 800;
}

.landing-feature-item strong {
  display: block;
  margin-bottom: 4px;
}

.landing-feature-item p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

/* Audience */
.landing-audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.landing-audience-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #99f6e4;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
}

.landing-audience-card h3 {
  margin: 0 0 10px;
  color: #0f766e;
}

.landing-audience-card p {
  margin: 0;
  color: #475569;
}

/* Pricing */
.landing-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.landing-price-card {
  position: relative;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
}

.landing-price-card.featured {
  border-color: #14b8a6;
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.15);
}

.landing-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f766e;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.landing-price-card h3 {
  margin: 8px 0 6px;
  font-size: 1.2rem;
}

.landing-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 16px 0 4px;
}

.landing-price-period {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.landing-price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
}

.landing-price-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 0.92rem;
}

.landing-price-card li::before {
  content: "✓ ";
  color: #0f766e;
  font-weight: 700;
}

.landing-price-note {
  text-align: center;
  margin-top: 20px;
  color: #64748b;
  font-size: 0.9rem;
}

/* FAQ */
.landing-faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.landing-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 22px;
}

.landing-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.landing-faq-item p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

/* CTA band */
.landing-cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  color: #fff;
  text-align: center;
}

.landing-cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.landing-cta-band p {
  margin: 0 auto 24px;
  max-width: 520px;
  opacity: 0.92;
}

.landing-cta-band .landing-btn-secondary {
  color: #0f766e;
}

/* Footer */
.landing-footer {
  padding: 32px 0 48px;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

.landing-footer a {
  color: #0f766e;
  font-weight: 600;
}

/* Mobile nav */
.landing-nav-links {
  display: flex;
  gap: 4px;
}

@media (max-width: 900px) {
  .landing-hero-grid,
  .landing-grid-3,
  .landing-features,
  .landing-audience,
  .landing-pricing {
    grid-template-columns: 1fr;
  }

  .landing-nav-links {
    display: none;
  }

  .landing-hero {
    padding-top: 36px;
  }
}

/* Dark mode */
html[data-theme="dark"] .landing-page {
  background: #0f172a;
  color: #e2e8f0;
}

html[data-theme="dark"] .landing-header {
  background: rgba(15, 23, 42, 0.92);
  border-bottom-color: #334155;
}

html[data-theme="dark"] .landing-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(20, 184, 166, 0.12), transparent),
    linear-gradient(180deg, #134e4a 0%, #0f172a 55%);
}

html[data-theme="dark"] .landing-hero h1,
html[data-theme="dark"] .landing-section-head h2,
html[data-theme="dark"] .landing-price-amount {
  color: #f1f5f9;
}

html[data-theme="dark"] .landing-hero-lead,
html[data-theme="dark"] .landing-section-head p,
html[data-theme="dark"] .landing-card p,
html[data-theme="dark"] .landing-feature-item p,
html[data-theme="dark"] .landing-audience-card p,
html[data-theme="dark"] .landing-faq-item p,
html[data-theme="dark"] .landing-footer {
  color: #94a3b8;
}

html[data-theme="dark"] .landing-hero-bullets li,
html[data-theme="dark"] .landing-flow-text {
  color: #cbd5e1;
}

html[data-theme="dark"] .landing-hero-card,
html[data-theme="dark"] .landing-card,
html[data-theme="dark"] .landing-feature-item,
html[data-theme="dark"] .landing-price-card,
html[data-theme="dark"] .landing-faq-item {
  background: #1e293b;
  border-color: #334155;
}

html[data-theme="dark"] .landing-section-alt {
  background: #1e293b;
  border-color: #334155;
}

html[data-theme="dark"] .landing-section-alt .landing-card {
  background: #0f172a;
}

html[data-theme="dark"] .landing-flow-step {
  background: #0f172a;
  border-color: #334155;
}

html[data-theme="dark"] .landing-audience-card {
  background: linear-gradient(135deg, #134e4a 0%, #1e293b 100%);
  border-color: #0f766e;
}

html[data-theme="dark"] .landing-nav a:not(.landing-btn) {
  color: #94a3b8;
}

html[data-theme="dark"] .landing-nav a:not(.landing-btn):hover {
  background: #334155;
  color: #f1f5f9;
}

html[data-theme="dark"] .landing-header-tools .lang-select,
html[data-theme="dark"] .landing-header-tools .theme-toggle-btn {
  background: #0f172a;
  border-color: #475569;
  color: #e2e8f0;
}

.landing-back-link {
  display: inline;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  font-size: inherit;
  box-shadow: none;
  background: transparent;
  color: #0f766e;
}

html[data-theme="dark"] .landing-back-link {
  color: #5eead4;
}

html[data-theme="dark"] .landing-btn-secondary {
  background: #1e293b;
  color: #5eead4;
  border-color: #0f766e;
}

/* Legal / GDPR page */
.legal-main {
  padding: 40px 0 64px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #0f172a;
  line-height: 1.2;
}

.legal-updated {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 0.9rem;
}

.legal-content > p:first-of-type {
  margin-top: 0;
}

.legal-section {
  margin-top: 32px;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #134e4a;
}

.legal-section p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: #334155;
}

.legal-list {
  margin: 0 0 12px;
  padding-left: 1.35rem;
  line-height: 1.65;
  color: #334155;
}

.legal-list li {
  margin-bottom: 8px;
}

html[data-theme="dark"] .legal-content h1 {
  color: #f1f5f9;
}

html[data-theme="dark"] .legal-updated,
html[data-theme="dark"] .legal-section p,
html[data-theme="dark"] .legal-list {
  color: #cbd5e1;
}

html[data-theme="dark"] .legal-section h2 {
  color: #5eead4;
}

.legal-subtitle {
  margin: 20px 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f766e;
}

.legal-list-plain {
  list-style: none;
  padding-left: 0;
}

.legal-list-plain li {
  margin-bottom: 6px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.45;
}

.legal-table th,
.legal-table td {
  border: 1px solid #cbd5e1;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f0fdfa;
  color: #134e4a;
  font-weight: 600;
}

.legal-disclaimer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
}

html[data-theme="dark"] .legal-subtitle {
  color: #5eead4;
}

html[data-theme="dark"] .legal-table th,
html[data-theme="dark"] .legal-table td {
  border-color: #334155;
}

html[data-theme="dark"] .legal-table th {
  background: #134e4a;
  color: #ccfbf1;
}

html[data-theme="dark"] .legal-table td {
  background: #1e293b;
  color: #cbd5e1;
}

html[data-theme="dark"] .legal-disclaimer {
  border-top-color: #334155;
  color: #94a3b8;
}
