 :root {
   color-scheme: light;
   --ink: #1a1a1a;
   --muted: #5f6368;
   --surface: #f4f1ed;
   --surface-strong: #ffffff;
   --accent: #1f5b8f;
   --accent-soft: #d7e6f5;
   --edge: #e0d8d1;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #fbfaf8;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 .page {
   max-width: 1180px;
   margin: 0 auto;
   padding: 0 24px 80px;
 }
 
 .site-header {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 28px 0 10px;
 }
 
 .brand {
   font-size: 22px;
   font-weight: 600;
   letter-spacing: 0.08em;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   padding: 4px 10px;
   background: #efe9e2;
   border-radius: 999px;
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: stretch;
   padding: 42px 0;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content,
 .split-media {
   flex: 1 1 320px;
   min-width: 0;
 }
 
 .hero {
   padding-top: 18px;
 }
 
 .hero-title {
   font-size: 40px;
   margin: 0 0 16px;
 }
 
 .hero-subtitle {
   margin: 0 0 26px;
   color: var(--muted);
 }
 
 .media-block {
   background: #d8d2cb;
   border-radius: 18px;
   overflow: hidden;
   min-height: 320px;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .media-block img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .hero-media {
   background-image: url("https://images.unsplash.com/photo-1449844908441-8829872d2607?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .tone-soft {
   background: var(--surface);
   border-radius: 24px;
   padding: 28px;
 }
 
 .tone-contrast {
   background: #1f2a33;
   color: #f7f3ee;
   border-radius: 24px;
   padding: 28px;
 }
 
 .tone-contrast a {
   color: #cfe6ff;
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   border: none;
 }
 
 .cta-button.secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .cta-button:hover {
   opacity: 0.9;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 220px;
   background: var(--surface-strong);
   border: 1px solid var(--edge);
   border-radius: 18px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .service-card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   display: block;
 }
 
 .service-card .card-body {
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-size: 18px;
   font-weight: 700;
 }
 
 .sticky-card {
   position: sticky;
   top: 18px;
   padding: 18px;
   background: #ffffff;
   border-radius: 18px;
   border: 1px solid var(--edge);
 }
 
 .testimonial-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .testimonial {
   flex: 1 1 240px;
   background: #ffffff;
   border-left: 4px solid var(--accent);
   border-radius: 12px;
   padding: 16px;
 }
 
 .form-card {
   background: #ffffff;
   border-radius: 18px;
   border: 1px solid var(--edge);
   padding: 22px;
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 6px;
   margin-bottom: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfc9c3;
   font-size: 15px;
   font-family: inherit;
 }
 
 .section-title {
   font-size: 28px;
   margin: 0 0 10px;
 }
 
 .split-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .split-list span {
   display: flex;
   align-items: center;
   gap: 8px;
 }
 
 .svg-card {
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--edge);
   padding: 18px;
 }
 
 .footer {
   margin-top: 60px;
   background: #151c21;
   color: #e7e1dc;
   border-radius: 24px;
   padding: 28px;
 }
 
 .footer a {
   color: #e7e1dc;
 }
 
 .footer-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }
 
 .disclaimer {
   font-size: 13px;
   color: #c7c0bb;
   margin-top: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   right: 18px;
   bottom: 18px;
   max-width: 360px;
   background: #ffffff;
   border: 1px solid var(--edge);
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .spacer {
   height: 10px;
 }
