 :root {
   --bg: #f6f4f1;
   --ink: #1e1f22;
   --muted: #5a6068;
   --accent: #2f5d62;
   --accent-soft: #e0ebe6;
   --sand: #efe7dd;
   --paper: #ffffff;
   --line: #d9d4cc;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 .page {
   max-width: 1200px;
   margin: 0 auto;
   padding: 24px 20px 80px;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 16px 20px;
   background: var(--paper);
   border-bottom: 1px solid var(--line);
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 240px;
 }
 
 .hero {
   display: flex;
   gap: 28px;
   align-items: stretch;
   margin-top: 32px;
   background: var(--paper);
   border-radius: 18px;
   overflow: hidden;
   border: 1px solid var(--line);
 }
 
 .hero-text {
   flex: 1;
   padding: 36px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 16px;
 }
 
 .hero-media {
   flex: 1;
   min-height: 360px;
   background: var(--sand);
 }
 
 .hero-media img {
   height: 100%;
 }
 
 .cta-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .split-section {
   display: flex;
   gap: 32px;
   margin: 40px 0;
   padding: 28px;
   background: var(--paper);
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-section .copy {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .split-section .media {
   flex: 1;
   background: var(--accent-soft);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .tag {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   border: 1px solid var(--line);
   border-radius: 14px;
   background: var(--paper);
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .service-card .image-frame {
   background: #d7e2df;
 }
 
 .service-card .content {
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .form-section {
   display: flex;
   gap: 28px;
   background: var(--sand);
   border-radius: 18px;
   padding: 28px;
   margin: 40px 0;
   align-items: stretch;
 }
 
 .form-card {
   flex: 1;
   background: var(--paper);
   border-radius: 16px;
   padding: 22px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid var(--line);
   font-size: 1rem;
 }
 
 .footer {
   margin-top: 48px;
   padding: 32px 20px;
   border-top: 1px solid var(--line);
   background: var(--paper);
 }
 
 .footer-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-columns > div {
   flex: 1 1 220px;
 }
 
 .footer small {
   color: var(--muted);
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 50;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
 }
 
 .notice {
   background: var(--accent-soft);
   padding: 18px;
   border-radius: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: var(--paper);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   z-index: 60;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .hidden {
   display: none;
 }
 
 .page-title {
   font-size: 2.2rem;
 }
 
 @media (max-width: 900px) {
   .hero,
   .split-section,
   .form-section {
     flex-direction: column;
   }
 
   .topbar {
     flex-direction: column;
     align-items: flex-start;
   }
 }
