/* Pentru Casa landing — layout inspirat e-menu.ro */
.landing-page {
  --brand: #3d4f32;
  --brand-dark: #2c3a24;
  --brand-light: #eef2eb;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: #e8e8e8;
  --surface: #ffffff;
  --surface-alt: #f7f7f5;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --container: 1140px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.5;
}

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

.landing-page .hidden { display: none !important; }
.landing-page .hide-mobile { display: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding: 14px 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.site-logo-img {
  display: block;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.site-logo-mark {
  display: block;
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.site-logo-name {
  font: 700 22px/1 Manrope, ui-sans-serif, system-ui, sans-serif;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
  text-transform: lowercase;
  white-space: nowrap;
}

.site-logo-i {
  letter-spacing: 0;
}

.site-logo-dot {
  color: #a67c52;
  margin-left: -0.04em;
}

.site-logo--footer .site-logo-img {
  height: 36px;
  width: 36px;
}

.site-logo--footer .site-logo-mark {
  height: 32px;
}

.site-logo--footer .site-logo-name {
  font-size: 18px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font: 600 14px/1 Manrope, sans-serif;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.site-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Platform language switch (landing / onboarding) */
.platform-lang-switch {
  position: relative;
  flex-shrink: 0;
}
.platform-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(44, 58, 36, 0.14);
  background: rgba(255, 255, 255, 0.92);
  font: 650 12px/1 ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  cursor: pointer;
}
.platform-lang-toggle img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
.platform-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 120px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(44, 58, 36, 0.12);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 60;
}
.platform-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font: 550 13px/1.2 ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
  text-align: left;
}
.platform-lang-option img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}
.platform-lang-option:hover,
.platform-lang-option.is-active {
  background: rgba(44, 58, 36, 0.08);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 650 14px/1 Manrope, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--brand-dark);
  color: #f5f7f3;
  border-color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(44, 58, 36, 0.25);
}

.btn-primary:hover {
  background: #1e2818;
  box-shadow: 0 6px 20px rgba(44, 58, 36, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border-color: rgba(44, 58, 36, 0.3);
}

.btn-outline:hover { background: var(--brand-light); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn-ghost:hover { color: var(--brand-dark); background: var(--brand-light); }

.btn-white {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); }

.btn-lg { min-height: 48px; padding: 12px 24px; font-size: 15px; }
.btn-block { width: 100%; }

/* —— Hero —— */
.hero {
  padding: clamp(28px, 5vw, 52px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand);
  font: 650 13px/1 Manrope, sans-serif;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 16ch;
}

.hero-free {
  display: block;
  width: fit-content;
  margin: 0.35em auto 0;
  padding: 0.1em 0.42em 0.14em;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font: inherit;
  font-size: 1.08em;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(44, 58, 36, 0.14);
}

.hero-stars {
  margin: 14px 0 0;
  color: #c9972e;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  text-align: center;
}

.hero-text {
  margin-top: 16px;
  max-width: 48ch;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero-text strong { color: var(--text); font-weight: 650; }

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

.hero-setup {
  width: 100%;
  max-width: 42ch;
  margin-top: 32px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.hero-setup-divider {
  width: min(120px, 40%);
  margin: 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.hero-setup-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-avatars {
  display: flex;
}

.hero-avatars img,
.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-avatars img:first-child,
.hero-avatars span:first-child { margin-left: 0; }

.hero-avatars span {
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand-dark);
  font: 700 13px/1 Manrope, sans-serif;
}

.hero-social p {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-social strong { color: var(--text); }

/* Hero preview / phone */
.hero-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.hero-preview-phone {
  position: relative;
  z-index: 2;
  width: min(100%, 330px);
}

.phone-frame {
  padding: 10px;
  border-radius: 36px;
  background: #1a1a1a;
  box-shadow: var(--shadow-lg);
}

.phone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  border-radius: 999px;
  background: #0a0a0a;
  z-index: 3;
  pointer-events: none;
}

.hero-preview-phone .phone-frame {
  position: relative;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 449 / 1024;
  object-fit: contain;
  object-position: top center;
  border-radius: 28px;
  background: #f3f6f0;
}

.hero-stat {
  position: absolute;
  z-index: 3;
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-stat-label {
  display: block;
  font: 600 11px/1 Manrope, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-stat strong {
  font: 700 22px/1 Manrope, sans-serif;
  color: var(--brand-dark);
}

.hero-stat--1 { top: 8%; right: 0; }
.hero-stat--2 { bottom: 12%; left: 0; }

/* —— Sections —— */
.section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-head--light .section-kicker,
.section-head--light .section-desc { color: rgba(255, 255, 255, 0.75); }
.section-head--light h2 { color: #fff; }

.section-kicker {
  font: 650 13px/1 Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-desc {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* —— Benefits —— */
.benefits { background: var(--surface); }

.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.benefit-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.benefit-card-visual {
  min-height: 200px;
  min-width: 0;
  background: var(--surface-alt);
}

.benefit-card-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.benefit-card-visual--langs {
  background: linear-gradient(145deg, #f8f4ec 0%, #ebe3d4 55%, #e4dcc8 100%);
  display: grid;
  place-items: center;
  padding: 20px;
}

.benefit-lang-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.benefit-lang-flag {
  position: absolute;
  width: 56%;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 10px 28px rgba(44, 58, 36, 0.14),
    0 2px 8px rgba(44, 58, 36, 0.06);
  border: 3px solid rgba(255, 255, 255, 0.92);
}

.benefit-lang-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-lang-flag--ro {
  top: 10%;
  left: 8%;
  transform: rotate(-5deg);
  z-index: 2;
}

.benefit-lang-flag--en {
  bottom: 10%;
  right: 8%;
  transform: rotate(5deg);
  z-index: 1;
}

.benefit-lang-swap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark, #2c3a24);
  box-shadow: 0 4px 14px rgba(44, 58, 36, 0.12);
  border: 1px solid rgba(44, 58, 36, 0.08);
}

.benefit-lang-swap svg {
  display: block;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.benefit-card h3 {
  font: 700 18px/1.3 Manrope, sans-serif;
  color: var(--text);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.benefits-list-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.benefits-list-title {
  font: 650 24px/1.25 Fraunces, serif;
  color: var(--text);
  text-align: center;
  margin: 0 0 28px;
}

.benefits-list-grid {
  display: grid;
  gap: 28px 32px;
  grid-template-columns: 1fr;
}

.benefits-list-col h4 {
  font: 700 13px/1.3 Manrope, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-dark, #2c3a24);
  margin: 0 0 12px;
}

.benefits-list-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-list-col li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font: 500 15px/1.45 Manrope, sans-serif;
  color: var(--text-muted);
}

.benefits-list-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand, #5a7347);
  font-weight: 700;
}

.benefits-list-col li:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .benefits-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .benefits-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Steps —— */
.steps-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.steps-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.steps-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 24, 18, 0.55) 0%,
    rgba(20, 24, 18, 0.68) 100%
  );
}

.steps-section .container {
  position: relative;
  z-index: 1;
}

.section-head--steps .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.section-head--steps h2 {
  color: #fff;
}

.section-head--steps .section-desc {
  color: rgba(255, 255, 255, 0.82);
}

.steps-paths {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.steps-path {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  color: #fff;
}

.steps-path-title {
  font: 700 20px/1.2 Manrope, sans-serif;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  margin: 0;
}

.steps-path-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.steps-path-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.steps-path-copy h4 {
  font: 700 16px/1.2 Manrope, sans-serif;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0 0 4px;
}

.steps-path-copy p {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  margin: 0;
}

.steps-path-cta {
  margin-top: auto;
}

.step-badge {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font: 700 16px/1 Manrope, sans-serif;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Legacy step cards (examples etc.) */
.step-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.step-card .step-badge {
  margin-bottom: 14px;
}

.step-card h3 {
  font: 700 18px/1.3 Manrope, sans-serif;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.auth-tabs--triple .auth-tab {
  font-size: 12px;
  padding: 9px 6px;
}

.auth-panels {
  display: grid;
}

.auth-panels > .auth-panel {
  grid-area: 1 / 1;
  width: 100%;
}

.auth-panels > .auth-panel.hidden {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.auth-panels.is-hidden {
  display: none !important;
}

.auth-auto-lead {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 16px;
}

/* —— Auth —— */
.auth-section { background: var(--surface-alt); }

.auth-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

.auth-copy .section-kicker { text-align: left; }
.auth-copy h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  font-size: clamp(26px, 3.5vw, 32px);
  line-height: 1.15;
  margin-top: 8px;
}

.auth-copy .section-desc { text-align: left; margin-top: 12px; }

.auth-perks {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.auth-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 14px/1.4 Manrope, sans-serif;
  color: var(--text-muted);
}

.auth-perks li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.auth-perks a {
  color: var(--brand-dark);
  font-weight: 650;
}

.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.auth-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  margin-bottom: 20px;
}

.auth-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.auth-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface-alt);
}

.auth-tab {
  flex: 1;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 10px;
  font: 650 14px/1 Manrope, sans-serif;
  color: var(--text-muted);
  cursor: pointer;
}

.auth-tab.is-active {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-panel label {
  display: grid;
  gap: 6px;
  font: 650 13px/1 Manrope, sans-serif;
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.auth-panel input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font: 400 15px/1.3 Manrope, sans-serif;
}

.auth-panel input:focus {
  outline: 2px solid rgba(44, 58, 36, 0.25);
  outline-offset: 1px;
}

.btn-reg-submit { margin-top: 8px; }

.form-error {
  font-size: 13px;
  color: #b33;
  margin: 8px 0;
}

.form-status {
  font: 600 13px/1.4 Manrope, sans-serif;
  color: var(--brand);
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form-status .btn-spinner {
  border-color: rgba(44, 58, 36, 0.2);
  border-top-color: var(--brand-dark);
}

@keyframes spin { to { transform: rotate(360deg); } }

.auth-forgot {
  margin: -4px 0 12px;
  text-align: right;
}

.auth-link,
.text-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--brand, #3d4f32);
  text-decoration: underline;
  cursor: pointer;
}

.auth-link:hover,
.text-link:hover {
  color: var(--brand-dark, #2c3a24);
}

.otp-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.auth-form-stack {
  display: grid;
  gap: 16px;
}

.auth-form-stack label {
  margin-bottom: 0;
}

.auth-form-stack .form-error,
.auth-form-stack .form-status {
  margin: 0;
}

.auth-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 12px;
}

.auth-form-actions .btn {
  flex: 1;
  width: auto;
  min-width: 0;
}

#reg-otp {
  letter-spacing: 0.3em;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

/* —— Examples —— */
.examples-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.example-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.example-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.example-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.example-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}

.example-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.example-card h3 {
  font: 700 17px/1.3 Manrope, sans-serif;
  color: var(--text);
}

.example-card p {
  margin-top: 2px;
  font-size: 14px;
  color: var(--text-muted);
}

/* —— CTA band —— */
.cta-band {
  background: var(--brand-dark);
  color: #fff;
  padding: clamp(56px, 8vw, 80px) 0;
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band p {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin-inline: auto;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* —— Footer —— */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.site-footer .site-logo {
  opacity: 0.92;
}

.site-footer p {
  font-size: 13px;
  color: var(--text-muted);
}

.landing-page .hero-kicker {
  color: var(--brand-dark);
}

.landing-page .hero-text {
  color: var(--text-muted);
}

.landing-page .hero-text strong {
  color: var(--text);
}

/* —— Responsive —— */
@media (max-width: 899px) {
  .landing-page .container,
  .landing-page .site-header-inner {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    padding-top: clamp(28px, 6vw, 44px);
    padding-bottom: 0;
  }

  .hero .container.hero-grid {
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .hero-content {
    padding-inline: 12px;
    padding-bottom: 28px;
  }

  .hero-preview {
    min-height: 0;
    width: 100%;
  }

  .hero-preview-phone {
    width: 100%;
    max-width: none;
  }

  .phone-frame {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .phone-island {
    display: none;
  }

  .phone-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    border-radius: 0;
    aspect-ratio: 449 / 1024;
    object-fit: contain;
    object-position: top center;
  }

  .hero-stat {
    display: none;
  }
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card {
    grid-template-columns: 1fr 1fr;
    min-height: 220px;
  }
  .benefit-card-visual {
    min-height: 100%;
  }
  .benefit-card-visual > img {
    min-height: 100%;
  }
  .steps-paths { grid-template-columns: 1fr 1fr; }
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .hide-mobile { display: inline; }

  .site-nav { display: flex; }
  .site-header-cta { margin-left: 0; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

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

  .hero-preview-phone { width: min(100%, 340px); }

  .hero-stat--1 { right: -12px; }
  .hero-stat--2 { left: -12px; }

  .auth-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

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

/* —— Onboarding (meniu scanat) —— */
.onboarding-main {
  padding: clamp(32px, 6vw, 64px) 0 clamp(64px, 10vw, 96px);
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
}

.onboarding-wrap {
  max-width: 640px;
}

.onboarding-head {
  text-align: center;
  margin-bottom: 32px;
}

.onboarding-head h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 8px 0 0;
}

.onboarding-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

.onboarding-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.onboarding-card h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  margin: 0 0 8px;
}

.onboarding-card--success {
  text-align: center;
}

.onboarding-form .form-grid {
  display: grid;
  gap: 0 16px;
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 6px;
  font: 650 13px/1 Manrope, sans-serif;
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font: 400 15px/1.3 Manrope, sans-serif;
}

.form-field input[type="file"] {
  font: 400 14px/1.4 Manrope, sans-serif;
}

.form-field input:focus {
  outline: 2px solid rgba(44, 58, 36, 0.25);
  outline-offset: 1px;
}

.form-hint {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

.file-preview-list {
  margin: 0 0 16px;
  padding: 12px 16px;
  background: var(--surface-alt);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  list-style: none;
}

.file-preview-list li + li {
  margin-top: 4px;
}

.onboarding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
}

.onboarding-form--otp .onboarding-actions {
  justify-content: flex-start;
}

.onboarding-card--success .onboarding-actions {
  margin-top: 24px;
}

@media (min-width: 560px) {
  .onboarding-form .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .benefit-card:hover,
  .example-card:hover { transform: none; }
}
