 :root {
   --bg: #0f1318;
   --bg-soft: #161b22;
   --bg-light: #f5f6f8;
   --text: #0e1116;
   --text-invert: #f7f8fa;
   --muted: #5c6470;
   --accent: #2f7ec7;
   --accent-dark: #205b8d;
   --warm: #c9b07d;
   --card: #ffffff;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--text);
   background: var(--bg-light);
   line-height: 1.6;
 }

 a {
   color: var(--accent);
   text-decoration: none;
 }

 a:hover {
   color: var(--accent-dark);
 }

 img {
   object-fit: cover;
 }

 header {
   padding: 24px 6vw;
   background: var(--bg);
   color: var(--text-invert);
 }

 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   flex-wrap: wrap;
 }

 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
 }

 nav {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
 }

 .ad-label {
   padding: 6px 12px;
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 999px;
   font-size: 0.85rem;
 }

 main {
   display: flex;
   flex-direction: column;
   gap: 72px;
   padding: 48px 6vw 80px;
 }

 .split {
   display: flex;
   align-items: stretch;
   gap: 48px;
   flex-wrap: wrap;
 }

 .split.reverse {
   flex-direction: row-reverse;
 }

 .split-half {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .hero {
   background: var(--bg);
   color: var(--text-invert);
   padding: 56px 6vw 72px;
 }

 .hero .split-half {
   justify-content: center;
 }

 .hero h1 {
   font-size: 2.6rem;
   margin: 0;
 }

 .hero p {
   color: rgba(247, 248, 250, 0.8);
 }

 .button-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }

 .btn.secondary {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.4);
   color: #fff;
 }

 .section-soft {
   background: #eef1f4;
   padding: 32px;
   border-radius: 28px;
 }

 .section-dark {
   background: var(--bg-soft);
   color: var(--text-invert);
   padding: 32px;
   border-radius: 28px;
 }

 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }

 .card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 20px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   box-shadow: 0 14px 24px rgba(8, 15, 26, 0.08);
 }

 .card .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   background-color: #d6dde6;
 }

 .price {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--accent-dark);
 }

 .image-frame {
   background-color: #d6dde6;
   border-radius: 24px;
   overflow: hidden;
 }

 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .inline-media {
   display: flex;
   align-items: center;
   gap: 24px;
   flex-wrap: wrap;
 }

 .inline-media img {
   width: 280px;
   height: 200px;
   object-fit: cover;
   border-radius: 16px;
   background-color: #d6dde6;
 }

 .form-panel {
   background: var(--card);
   border-radius: 24px;
   padding: 24px;
   box-shadow: 0 12px 26px rgba(11, 19, 31, 0.12);
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 label {
   font-weight: 600;
 }

 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid #cbd3dd;
   font-size: 1rem;
 }

 .cta-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 20px 26px;
   border-radius: 20px;
   background: #fff2d8;
 }

 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 50;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent-dark);
   color: #fff;
   box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
 }

 footer {
   background: var(--bg);
   color: var(--text-invert);
   padding: 32px 6vw 50px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }

 .legal {
   font-size: 0.9rem;
   color: rgba(247, 248, 250, 0.7);
 }

 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px 22px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
   display: none;
   flex-direction: column;
   gap: 12px;
   max-width: 320px;
   z-index: 60;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 .cookie-actions button {
   flex: 1 1 120px;
 }

 .subtle {
   color: var(--muted);
 }

 .list {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .service-item {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 16px;
   border-radius: 16px;
   background: #f2f4f7;
 }

 .tagline {
   font-weight: 600;
   color: var(--warm);
 }

 .badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(47, 126, 199, 0.12);
   color: var(--accent-dark);
   font-weight: 600;
   font-size: 0.9rem;
 }

 .hero-image {
   border-radius: 28px;
   overflow: hidden;
   background-color: #d6dde6;
 }

 .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .align-center {
   align-items: center;
 }

 .note {
   font-size: 0.95rem;
   color: rgba(247, 248, 250, 0.7);
 }
