 :root {
   color-scheme: light;
   --ink: #1b1b1b;
   --muted: #5b616a;
   --bg: #f7f5f2;
   --accent: #2b6cb0;
   --accent-dark: #1f4f86;
   --soft: #efe9e2;
   --warm: #f2ede7;
   --card: #ffffff;
   --border: #ded6cc;
   --shadow: 0 12px 30px rgba(27, 27, 27, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 a:hover {
   color: var(--accent-dark);
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1140px, 92%);
   margin: 0 auto;
 }
 
 header {
   padding: 28px 0 12px;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 18px;
   justify-content: space-between;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   padding: 6px 10px;
   border: 1px solid var(--border);
   border-radius: 999px;
   background: #fff;
 }
 
 .hero {
   padding: 40px 0 60px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
   justify-content: space-between;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .col {
   flex: 1 1 320px;
 }
 
 .hero-copy h1 {
   font-size: clamp(2.2rem, 3vw, 3.2rem);
   line-height: 1.2;
   margin-bottom: 16px;
 }
 
 .hero-copy p {
   color: var(--muted);
   margin-bottom: 20px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
   background: var(--accent);
   color: #fff;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
   transform: translateY(-1px);
 }
 
 .btn.secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--border);
 }
 
 .btn.secondary:hover,
 .btn.secondary:focus {
   background: var(--soft);
 }
 
 .img-frame {
   background: #e5ddd3;
   border-radius: 22px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .img-cover {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .section {
   padding: 60px 0;
 }
 
 .section-title {
   font-size: clamp(1.8rem, 2.4vw, 2.5rem);
   margin-bottom: 18px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--card);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
   border: 1px solid rgba(0, 0, 0, 0.04);
 }
 
 .card h3 {
   margin-top: 14px;
   margin-bottom: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .bg-focus {
   background: linear-gradient(120deg, rgba(239, 233, 226, 0.85), rgba(247, 245, 242, 0.9)),
     url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center / cover;
 }
 
 .bg-habits {
   background: linear-gradient(120deg, rgba(247, 245, 242, 0.9), rgba(239, 233, 226, 0.85)),
     url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80") center / cover;
 }
 
 .bg-story {
   background: linear-gradient(120deg, rgba(243, 238, 231, 0.92), rgba(255, 255, 255, 0.9)),
     url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80") center / cover;
 }
 
 .overlay-box {
   background: rgba(255, 255, 255, 0.92);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .list {
   padding-left: 18px;
 }
 
 .form-wrap {
   background: var(--card);
   border-radius: 24px;
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--border);
   font-size: 1rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 90px;
   z-index: 20;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   padding: 12px 18px;
   box-shadow: var(--shadow);
 }
 
 .sticky-cta:hover,
 .sticky-cta:focus {
   background: var(--accent-dark);
 }
 
 footer {
   padding: 40px 0 60px;
   background: #f1ece7;
   margin-top: auto;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: flex-start;
   justify-content: space-between;
 }
 
 .small {
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px 18px;
   display: none;
   z-index: 25;
   box-shadow: var(--shadow);
 }
 
 .cookie-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .notice {
   background: var(--warm);
   padding: 14px 18px;
   border-radius: 16px;
 }
 
 .split-note {
   background: var(--soft);
   padding: 20px;
   border-radius: 18px;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .no-decoration {
   color: inherit;
   cursor: pointer;
 }
 
 .section-divider {
   height: 2px;
   background: rgba(0, 0, 0, 0.05);
   margin: 40px 0;
 }
 
 .service-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 12px;
 }
 
 .tag {
   background: #f4f0ea;
   padding: 6px 10px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .hero-image {
   min-height: 360px;
 }
 
 .section-image {
   min-height: 280px;
 }
 
 .card-image {
   height: 160px;
 }
 
 .cta-link {
   text-decoration: underline;
 }
 
 @media (max-width: 800px) {
   .sticky-cta {
     right: 14px;
     bottom: 80px;
   }
 }
