 :root {
   --bg: #f7f4ef;
   --bg-deep: #efe9e1;
   --ink: #1f2428;
   --muted: #5a6772;
   --accent: #2f5b8c;
   --accent-strong: #1e3f64;
   --sand: #d9cfc4;
   --card: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   color: var(--accent-strong);
 }
 
 .page {
   display: flex;
   min-height: 100vh;
   flex-direction: column;
 }
 
 .container {
   width: 92%;
   max-width: 1180px;
   margin: 0 auto;
 }
 
 header {
   padding: 28px 0 10px;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   font-size: 0.95rem;
 }
 
 .ad-label {
   background: var(--sand);
   color: var(--ink);
   padding: 6px 10px;
   border-radius: 16px;
   font-size: 0.85rem;
 }
 
 main {
   flex: 1;
 }
 
 .split {
   display: flex;
   gap: 36px;
   align-items: stretch;
   padding: 54px 0;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text-col,
 .split .media-col {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 16px;
 }
 
 .hero {
   background: linear-gradient(120deg, rgba(247, 244, 239, 0.9), rgba(239, 233, 225, 0.9)),
     url("https://images.unsplash.com/photo-1513258496099-48168024aec0?w=1400&q=80");
   background-size: cover;
   background-position: center;
   padding: 70px 0 60px;
 }
 
 .hero h1 {
   font-size: 2.6rem;
   line-height: 1.2;
   margin: 0;
 }
 
 .hero .hero-cta {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 20px;
   border-radius: 24px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-strong);
   border: 1px solid var(--accent-strong);
 }
 
 .btn:hover {
   background: var(--accent-strong);
   color: #fff;
 }
 
 .section-muted {
   background: var(--bg-deep);
 }
 
 .section-sand {
   background: #f1e7db;
 }
 
 .cards {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--card);
   border-radius: 20px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
 }
 
 .card img {
   border-radius: 16px;
 }
 
 .img-frame {
   background-color: #d8d0c8;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .highlight-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding-left: 18px;
 }
 
 .pricing {
   font-weight: 700;
   color: var(--accent-strong);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #c7c1ba;
   font-size: 1rem;
   background: #fff;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .form-note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 footer {
   background: #1f2428;
   color: #f7f4ef;
   padding: 40px 0;
 }
 
 footer a {
   color: #e6dfd7;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .disclaimer {
   font-size: 0.9rem;
   color: #e6dfd7;
 }
 
 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: #1f2428;
   color: #f7f4ef;
   padding: 18px;
   display: none;
   z-index: 999;
 }
 
 .cookie-banner .container {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions .btn {
   padding: 10px 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 90px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 24px;
   display: flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   z-index: 998;
 }
 
 .sticky-cta:hover {
   background: var(--accent-strong);
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 10px;
 }
 
 .meta-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .light-text {
   color: var(--muted);
 }
 
 .full-width-cta {
   display: flex;
   justify-content: space-between;
   gap: 14px;
   align-items: center;
   padding: 22px;
   border-radius: 20px;
   background: #fff7eb;
 }
 
 .content-note {
   background: #ffffff;
   padding: 16px;
   border-radius: 16px;
 }
 
 .spacer {
   height: 20px;
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     justify-content: center;
   }
 }
