:root {
  --bg: #f7efe4;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --ink: #193f35;
  --muted: #66685f;
  --primary: #144f3f;
  --primary-dark: #0e3d31;
  --accent: #f3b34f;
  --shadow-soft: 0 18px 42px rgba(54, 48, 36, 0.08);
  --shadow-strong: 0 28px 70px rgba(54, 48, 36, 0.12);
  --page-max: 1536px;
  --section-inline-gap: clamp(24px, 6vw, 90px);
}

@font-face {
  font-display: swap;
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/Inter-SemiBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/Inter-Bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Playfair Local";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 86% 16%, rgba(20, 79, 63, 0.1), transparent 24%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 46%, #fdfaf5 100%);
  color: var(--ink);
  font-family: "Inter Local", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  position: relative;
}

body::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.78), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.5), transparent 20%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

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

h1,
h2,
h3 {
  color: var(--primary-dark);
  font-family: "Playfair Local", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.94;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  margin-bottom: 8px;
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.site-header {
  align-items: center;
  background: rgba(255, 251, 246, 0.8);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  box-shadow: 0 14px 38px rgba(54, 48, 36, 0.06);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 14px var(--section-inline-gap) 0;
  padding: 14px clamp(18px, 2.4vw, 28px);
  position: sticky;
  top: 14px;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: rgba(20, 79, 63, 0.1);
  border-radius: 10px;
  color: var(--primary-dark);
  display: inline-flex;
  font-family: "Playfair Local", Georgia, "Times New Roman", serif;
  font-size: 16px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.brand-mark-cluster {
  background: transparent;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  height: auto;
  width: auto;
}

.brand-mark-cluster span {
  background: var(--primary);
  border-radius: 999px;
  display: block;
  height: 9px;
  width: 9px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  justify-content: center;
}

.nav-links a,
.site-footer a {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.8;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--primary);
  opacity: 1;
}

.header-cta,
.store-badge {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  background: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0 14px 28px rgba(20, 79, 63, 0.16);
  color: #fff;
  min-width: 148px;
}

.header-cta:hover,
.store-badge:hover {
  box-shadow: 0 18px 34px rgba(20, 79, 63, 0.18);
  transform: translateY(-1px);
}

main {
  overflow: hidden;
  padding-bottom: 42px;
}

.feature-ribbon,
.journal-section,
.daily-flow,
.faq-section,
.final-cta,
.trust-strip,
.site-footer {
  margin-left: var(--section-inline-gap);
  margin-right: var(--section-inline-gap);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(26px, 3.2vw, 48px);
  grid-template-columns: minmax(380px, 0.72fr) minmax(640px, 1.28fr);
  margin-left: var(--section-inline-gap);
  margin-right: var(--section-inline-gap);
  min-height: 620px;
  padding: clamp(26px, 3.6vw, 40px) 0 0;
}

.hero-copy {
  align-self: center;
  max-width: 500px;
}

.eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}

.badge-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 79, 63, 0.08);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  padding: 10px 14px;
}

.badge-pill::before {
  content: "◌";
  font-size: 12px;
}

.hero-text,
.section-heading p,
.journal-copy p,
.site-footer p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-text {
  margin-bottom: 24px;
  max-width: 30ch;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  gap: 1px;
  min-width: 136px;
  padding: 10px 14px;
}

.store-badge span {
  font-size: 9px;
  font-weight: 700;
  opacity: 0.82;
}

.store-badge strong {
  font-size: 15px;
  line-height: 1.05;
}

.secondary-store {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(20, 79, 63, 0.14);
  color: var(--primary-dark);
}

.secondary-store span {
  color: var(--muted);
}

.hero-visual {
  align-self: stretch;
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.92), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 240, 228, 0.88));
  border-radius: 38px;
  box-shadow: var(--shadow-strong);
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  background: linear-gradient(90deg, #fff9f3 0%, rgba(255, 249, 241, 0.82) 8%, rgba(255, 249, 241, 0.38) 18%, rgba(255, 249, 241, 0.08) 30%, rgba(35, 44, 33, 0.02) 52%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-visual::after {
  background: radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.58), transparent 26%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-scene-image {
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.hero-phone {
  background: #191714;
  border: 6px solid #191714;
  border-radius: 40px;
  box-shadow: 0 30px 70px rgba(38, 30, 22, 0.24);
  overflow: hidden;
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  top: 46px;
  transform: rotate(4deg);
  width: min(21%, 176px);
  z-index: 2;
}

.hero-phone-notch {
  background: #191714;
  border-radius: 0 0 16px 16px;
  height: 16px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 40%;
  z-index: 3;
}

.hero-phone-screen {
  background: linear-gradient(180deg, #fff8f0 0%, #f6ead9 100%);
  min-height: 432px;
  padding: 18px 13px 14px;
}

.hero-phone-status {
  color: #5a4c3e;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-phone-greeting {
  color: #1c352d;
  font-family: "Playfair Local", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.hero-phone-message {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  color: #5a4c3e;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 14px;
  padding: 12px 11px;
}

.hero-phone-list {
  display: grid;
  gap: 8px;
}

.hero-phone-list > div {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  display: grid;
  gap: 8px;
  grid-template-columns: 26px 1fr auto;
  padding: 10px 10px 10px 8px;
}

.hero-phone-icon {
  align-items: center;
  background: rgba(243, 179, 79, 0.28);
  border-radius: 999px;
  color: #7a5631;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.hero-phone-list strong,
.hero-phone-list small,
.hero-phone-nav span {
  display: block;
}

.hero-phone-list strong {
  color: #1c352d;
  font-size: 11px;
}

.hero-phone-list small,
.hero-phone-chevron,
.hero-phone-nav span {
  color: #857564;
  font-size: 9px;
}

.hero-phone-chevron {
  font-size: 15px;
  font-weight: 700;
}

.hero-phone-nav {
  border-top: 1px solid rgba(135, 117, 100, 0.18);
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  padding-top: 10px;
  text-align: center;
}

.feature-ribbon {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: -34px;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.feature-ribbon article {
  align-items: start;
  background: rgba(252, 248, 241, 0.72);
  border: 1px solid rgba(20, 79, 63, 0.06);
  border-radius: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px 1fr;
  padding: 16px;
}

.ribbon-icon,
.flow-icon {
  align-items: center;
  background: rgba(20, 79, 63, 0.08);
  border-radius: 999px;
  color: var(--primary-dark);
  display: inline-flex;
  justify-content: center;
}

.ribbon-icon {
  font-size: 22px;
  height: 44px;
  width: 44px;
}

.feature-ribbon strong,
.benefit-grid strong,
.flow-steps strong,
.trust-strip strong {
  color: var(--primary-dark);
  display: block;
}

.feature-ribbon p,
.benefit-grid span,
.flow-steps p,
.faq-contact-card p,
.trust-strip p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0 0;
}

.journal-section {
  align-items: stretch;
  background: linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(247, 239, 228, 0.94));
  border-radius: 30px;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: minmax(360px, 0.88fr) minmax(280px, 1.12fr);
  margin-top: 24px;
  min-height: 548px;
  overflow: hidden;
  padding: 34px clamp(30px, 3.5vw, 44px) 32px;
  position: relative;
}

.journal-section::before {
  background: url("assets/screens/8_minuten_block.png") calc(100% + 8px) center / auto 92% no-repeat;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.journal-section::after {
  background: linear-gradient(90deg, rgba(250, 245, 238, 0.99) 0%, rgba(250, 245, 238, 0.96) 24%, rgba(250, 245, 238, 0.88) 38%, rgba(250, 245, 238, 0.56) 51%, rgba(250, 245, 238, 0.18) 64%, rgba(250, 245, 238, 0) 75%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.journal-copy {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.journal-copy h2 {
  margin-bottom: 22px;
  max-width: 10ch;
}

.benefit-grid {
  display: grid;
  gap: 18px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 600px;
}

.benefit-grid div {
  column-gap: 12px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  position: relative;
}

.benefit-grid div::before {
  align-items: center;
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(20, 79, 63, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(58, 49, 37, 0.08);
  color: var(--primary-dark);
  content: "◔";
  display: flex;
  font-size: 13px;
  grid-row: 1 / span 2;
  height: 28px;
  justify-content: center;
  line-height: 1;
  margin-top: 3px;
  width: 28px;
}

.benefit-grid div:nth-child(2)::before {
  content: "⌁";
}

.benefit-grid div:nth-child(3)::before {
  content: "✎";
}

.benefit-grid div:nth-child(4)::before {
  content: "⌂";
}

.benefit-grid div:nth-child(5)::before {
  content: "♡";
}

.benefit-grid div:nth-child(6)::before {
  content: "☾";
}

.benefit-grid strong {
  color: var(--primary-dark);
  font-size: 15px;
  line-height: 1.35;
}

.benefit-grid span {
  grid-column: 2;
}

.journal-visual {
  min-height: 100%;
}

.journal-visual::before {
  content: none;
}

.device-card {
  display: none;
}

.large-device {
  display: none;
}

.device-card img {
  display: none;
}

.leaf-accent {
  display: none;
}

.daily-flow {
  align-content: center;
  aspect-ratio: 1875 / 476;
  background: linear-gradient(180deg, rgba(250, 243, 233, 0.92), rgba(247, 239, 228, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  box-shadow: var(--shadow-strong);
  display: grid;
  height: auto;
  margin-left: calc(var(--section-inline-gap) + clamp(18px, 2.6vw, 42px));
  margin-right: calc(var(--section-inline-gap) + clamp(18px, 2.6vw, 42px));
  min-height: 276px;
  overflow: visible;
  position: relative;
  padding: 18px 0 16px;
}

.daily-flow::before {
  background: url("assets/screens/vase_kerze.png") left bottom / auto 114% no-repeat;
  content: "";
  bottom: -14px;
  left: -56px;
  position: absolute;
  top: 0;
  width: min(29%, 430px);
  z-index: 2;
}

.daily-flow::after {
  background: url("assets/screens/kaffee_buch.png") right bottom / auto 114% no-repeat;
  content: "";
  bottom: -16px;
  position: absolute;
  right: -64px;
  top: 0;
  width: min(33%, 500px);
  z-index: 2;
}

.daily-flow > * {
  position: relative;
  z-index: 3;
}

.daily-flow .section-heading,
.daily-flow-shell {
  padding-left: clamp(126px, 16vw, 260px);
  padding-right: clamp(150px, 19vw, 320px);
}

.daily-flow .section-heading {
  margin: 0 auto 10px;
  max-width: none;
}

.daily-flow-shell {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  position: relative;
}

.daily-flow h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.05;
  margin-bottom: 0;
  white-space: nowrap;
}

.section-heading {
  margin: 0 auto 30px;
  max-width: 760px;
  text-align: center;
}

.section-heading::after {
  background: linear-gradient(90deg, rgba(20, 79, 63, 0), rgba(20, 79, 63, 0.28), rgba(20, 79, 63, 0));
  content: "";
  display: block;
  height: 1px;
  margin: 22px auto 0;
  max-width: 170px;
}

.compact-heading {
  margin-bottom: 10px;
}

.flow-steps {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 32px;
  box-shadow: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 10px 8px;
  width: 100%;
}

.flow-steps article {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(34, 28, 20, 0.04);
  backdrop-filter: blur(2px);
  padding: 0 8px;
  position: relative;
  text-align: center;
}

.daily-flow .flow-icon {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #111111;
  font-size: 28px;
  height: 68px;
  margin-bottom: 10px;
  width: 68px;
}

.daily-flow .flow-steps strong {
  font-size: 15px;
  line-height: 1.2;
}

.daily-flow .flow-steps p {
  font-size: 13px;
  line-height: 1.4;
  margin-top: 4px;
}

.flow-arrow {
  color: var(--muted);
  font-size: 22px;
  left: -12px;
  position: absolute;
  top: 26px;
}

.decor-card {
  display: none;
}

.faq-section {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.62fr;
  padding: 42px 0 30px;
}

.faq-column h2 {
  margin-bottom: 24px;
}

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

.faq-grid details,
.legal-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(45, 54, 36, 0.07);
}

.faq-grid details {
  padding: 16px 18px;
}

.faq-grid summary {
  color: var(--primary-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  padding-right: 24px;
  position: relative;
}

.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid p {
  margin-top: 10px;
}

.faq-contact-card {
  background: linear-gradient(180deg, rgba(252, 245, 237, 0.84), rgba(248, 239, 227, 0.92)), url("assets/screens/landingpage_klein.png") right center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  min-height: 300px;
  padding: 34px;
}

.faq-contact-card h3 {
  font-size: 42px;
  margin-bottom: 14px;
}

.text-link,
.faq-contact-card a,
.trust-strip a,
.legal-card a,
.back-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.final-cta {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(246, 235, 220, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 14px;
  grid-template-columns: 0.33fr 1fr 0.33fr;
  margin-bottom: 30px;
  min-height: 214px;
  overflow: hidden;
  padding: 0 16px;
}

.cta-copy {
  padding: 10px 16px;
  text-align: center;
}

.cta-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.cta-decor {
  background: url("assets/screens/landingpage_klein.png") right center / cover no-repeat;
  border-radius: 28px;
  height: 132px;
}

.left-decor {
  background-position: left center;
}

.right-decor {
  background: url("assets/screens/landingpage_gross.png") right center / cover no-repeat;
}

.centered-download {
  justify-content: center;
}

.playstore-title {
  font-weight: 600;
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 242, 231, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 28px;
  margin-top: 18px;
  padding: 34px 36px 24px;
}

.site-footer p {
  font-size: 14px;
  margin: 12px 0 0;
  max-width: 360px;
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.7fr) minmax(250px, 0.9fr);
}

.footer-column {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-heading {
  color: var(--primary-dark);
  font-family: "Playfair Local", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-nav,
.footer-service-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-service-nav a {
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.footer-nav-column {
  padding-top: 4px;
}

.footer-service-card {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(20, 79, 63, 0.12);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  padding: 20px 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(20, 79, 63, 0.12);
  color: var(--muted);
  font-size: 14px;
  padding-top: 18px;
  text-align: center;
}

.legal-page {
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(50px, 6.5vw, 82px) clamp(18px, 7vw, 128px);
}

.legal-hero {
  margin-bottom: 24px;
}

.legal-card {
  margin: 14px 0;
  padding: 24px;
}

.legal-card h2 {
  font-size: 28px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-service-nav a,
.footer-support a {
  text-underline-offset: 4px;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .site-header {
    gap: 14px;
    margin-left: 18px;
    margin-right: 18px;
    padding: 14px 18px;
    top: 12px;
  }

  .header-cta {
    min-width: 0;
    padding: 0 14px;
  }

  .hero,
  .journal-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .journal-section {
    min-height: auto;
    padding: 30px 24px;
  }

  .journal-section::before {
    background-position: calc(100% + 40px) center;
    background-size: auto 100%;
  }

  .journal-visual {
    display: none;
  }

  .hero {
    gap: 22px;
    min-height: auto;
    padding-top: 24px;
    padding-top: 28px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-phone {
    right: 18px;
    top: 56px;
    width: min(31%, 198px);
  }

  .journal-copy {
    max-width: none;
  }

  .daily-flow {
    aspect-ratio: auto;
    align-content: start;
    min-height: auto;
    padding: 24px 0 22px;
  }

  .daily-flow::before {
    background-size: auto 72%;
    width: min(24%, 180px);
  }

  .daily-flow::after {
    background-size: auto 72%;
    width: min(28%, 220px);
  }

  .daily-flow .section-heading,
  .daily-flow-shell {
    padding-left: clamp(34px, 7vw, 96px);
    padding-right: clamp(42px, 8vw, 118px);
  }

  .daily-flow .section-heading {
    margin-bottom: 16px;
  }

  .daily-flow h2 {
    font-size: clamp(28px, 4.4vw, 36px);
    white-space: normal;
  }

  .feature-ribbon,
  .benefit-grid,
  .faq-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .daily-flow-shell {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .daily-flow {
    width: auto;
  }

  .flow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 16px;
  }

  .flow-steps article {
    padding: 6px 8px;
  }

  .flow-arrow {
    left: -10px;
  }

  .final-cta {
    gap: 14px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cta-decor {
    height: 100px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    margin-top: 10px;
    padding: 14px 16px;
    position: static;
    top: 10px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 46px;
    line-height: 1.08;
  }

  h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .feature-ribbon,
  .journal-section,
  .daily-flow,
  .faq-section,
  .final-cta,
  .site-footer {
    margin-left: 18px;
    margin-right: 18px;
  }

  .daily-flow {
    border-radius: 30px;
    padding: 20px 0 18px;
    width: auto;
  }

  .daily-flow::before {
    background-position: center;
    background-size: cover;
  }

  .daily-flow .section-heading {
    margin-bottom: 14px;
    padding: 0 12px;
  }

  .site-footer {
    padding: 30px 28px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .daily-flow h2 {
    font-size: 30px;
    line-height: 1.08;
    white-space: normal;
  }

  .hero {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-visual {
    margin-top: 28px;
    min-height: 380px;
  }

  .hero-phone {
    right: 10px;
    top: 34px;
    width: min(46%, 168px);
  }

  .hero-phone-screen {
    min-height: 330px;
    padding: 14px 10px 12px;
  }

  .hero-phone-greeting {
    font-size: 16px;
  }

  .feature-ribbon,
  .benefit-grid,
  .faq-grid,
  .flow-steps,
  .footer-nav,
  .footer-service-nav {
    grid-template-columns: 1fr;
  }

  .feature-ribbon {
    margin-top: 18px;
    padding: 18px;
  }

  .site-footer {
    padding: 26px 24px;
  }

  .footer-heading {
    font-size: 20px;
  }

  .flow-steps {
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 26px;
    box-shadow: none;
    gap: 12px;
    padding: 16px 14px;
  }

  .flow-steps article {
    padding: 8px 4px;
  }

  .flow-arrow {
    display: none;
  }

  .daily-flow .flow-icon {
    height: 58px;
    margin-bottom: 8px;
    width: 58px;
  }

  .daily-flow .flow-steps strong {
    font-size: 16px;
  }

  .daily-flow .flow-steps p {
    font-size: 13px;
    line-height: 1.45;
  }

  .journal-visual {
    display: none;
  }

  .large-device {
    display: none;
  }

  .faq-contact-card h3 {
    font-size: 32px;
  }

  .download-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .daily-flow::before,
  .daily-flow::after {
    display: none;
  }

  .daily-flow .section-heading,
  .daily-flow-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .store-badge {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 20px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-page {
    padding-left: 18px;
    padding-right: 18px;
  }
}
