 :root {
   color-scheme: light;
   --ink: #1d1d1f;
   --muted: #5a5d63;
   --accent: #2a6f9e;
   --accent-2: #d98c5f;
   --bg: #f7f5f2;
   --panel: #ffffff;
   --soft: #ece7e2;
   --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 280px;
   background: var(--panel);
   padding: 32px 28px;
   display: flex;
   flex-direction: column;
   gap: 24px;
   box-shadow: var(--shadow);
   z-index: 2;
 }
 
 .brand {
   font-weight: 700;
   font-size: 20px;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   background: var(--soft);
   padding: 8px 10px;
   border-radius: 12px;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-links a {
   padding: 8px 10px;
   border-radius: 10px;
   background: transparent;
 }
 
 .nav-links a:hover {
   background: var(--soft);
 }
 
 .sidebar .cta-link {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 16px;
   border-radius: 16px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .content {
   flex: 1;
   padding: 36px 6vw 80px;
 }
 
 .section {
   margin: 38px 0;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }
 
 .hero-text {
   flex: 1 1 340px;
 }
 
 .hero-visual {
   flex: 1 1 360px;
   background: #f0e9e2;
   border-radius: 22px;
   overflow: hidden;
   min-height: 320px;
 }
 
 .hero-visual img {
   width: 100%;
   height: 100%;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 20px;
 }
 
 .button {
   border: none;
   border-radius: 14px;
   padding: 12px 18px;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .button.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .button.secondary {
   background: var(--soft);
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .layered {
   background: var(--panel);
   border-radius: 24px;
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   align-items: stretch;
 }
 
 .split > div {
   flex: 1 1 260px;
 }
 
 .stat-list {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .stat {
   flex: 1 1 180px;
   background: var(--soft);
   padding: 16px;
   border-radius: 16px;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--panel);
   border-radius: 20px;
   overflow: hidden;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
 }
 
 .card img {
   width: 100%;
   height: 160px;
 }
 
 .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .panel-strip {
   background: var(--soft);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .form-wrap {
   background: var(--panel);
   padding: 26px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   border-radius: 12px;
   border: 1px solid #ddd;
   padding: 10px 12px;
   font-size: 14px;
 }
 
 .floating-cta {
   position: fixed;
   right: 22px;
   bottom: 24px;
   background: var(--accent-2);
   color: #fff;
   padding: 12px 16px;
   border-radius: 18px;
   font-weight: 600;
   box-shadow: var(--shadow);
 }
 
 .footer {
   margin-top: 50px;
   padding-top: 32px;
   border-top: 1px solid #ddd;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin: 12px 0;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--panel);
   padding: 16px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   max-width: 320px;
   display: none;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .image-frame {
   background: #e7e0d9;
   border-radius: 20px;
   overflow: hidden;
 }
 
 @media (max-width: 900px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     gap: 16px;
   }
 
   .nav-links {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .sidebar .cta-link {
     margin-top: 0;
   }
 
   .content {
     padding: 24px 6vw 90px;
   }
 }
