 :root {
   color-scheme: light;
   --ink: #1d1f24;
   --muted: #5a6472;
   --accent: #2f5bff;
   --accent-dark: #1c3bb5;
   --soft: #f3f5f8;
   --soft-strong: #e4e8ef;
   --card: #ffffff;
   --shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #fbfcfe;
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .site-header {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 32px;
   padding: 28px 6vw 12px;
 }
 
 .brand-block {
   max-width: 320px;
 }
 
 .brand-mark {
   font-weight: 700;
   font-size: 24px;
   letter-spacing: 0.2px;
 }
 
 .brand-tag {
   margin-top: 8px;
   color: var(--muted);
   font-size: 14px;
 }
 
 .site-nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 16px;
   justify-content: flex-end;
   max-width: 520px;
 }
 
 .site-nav a {
   font-size: 14px;
   padding: 6px 10px;
   border-radius: 999px;
   background: var(--soft);
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   padding: 6px 12px;
   border: 1px dashed var(--soft-strong);
   border-radius: 16px;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 32px;
   padding: 64px 6vw;
 }
 
 .section--soft {
   background: var(--soft);
 }
 
 .section--background {
   color: #ffffff;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
 }

 .bg-automation {
   background-image: url("https://images.unsplash.com/photo-1523475472560-d2df97ec485c?w=1400&q=80");
   background-color: #1b2333;
 }
 
 .section--background::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(15, 22, 33, 0.65);
 }
 
 .section--background > * {
   position: relative;
   z-index: 1;
 }
 
 .hero {
   display: flex;
   align-items: center;
   gap: 40px;
 }
 
 .hero-copy {
   flex: 1 1 55%;
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .hero-title {
   font-size: clamp(32px, 3.4vw, 50px);
   line-height: 1.15;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .hero-image {
   flex: 1 1 45%;
   background: #dfe6f1;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: var(--shadow);
   transform: translateY(18px);
 }
 
 .hero-image img {
   width: 100%;
   height: 100%;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   background: var(--accent);
   color: #ffffff;
   cursor: pointer;
 }
 
 .btn-secondary {
   background: var(--soft-strong);
   color: var(--ink);
 }
 
 .offset-blocks {
   display: flex;
   align-items: stretch;
   gap: 28px;
 }
 
 .offset-card {
   flex: 1 1 55%;
   background: var(--card);
   padding: 32px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   margin-top: -24px;
 }
 
 .offset-image {
   flex: 1 1 45%;
   background: #e2e7ef;
   border-radius: 20px;
   overflow: hidden;
 }
 
 .offset-image img {
   width: 100%;
   height: 100%;
 }
 
 .feature-cards {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .feature-card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: var(--shadow);
 }
 
 .feature-card img {
   width: 100%;
   height: 180px;
   border-radius: 16px;
   background: #e2e7ef;
 }
 
 .section-title {
   font-size: clamp(24px, 2.4vw, 34px);
 }
 
 .split-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .split-grid > div {
   flex: 1 1 280px;
 }
 
 .testimonials {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .testimonial {
   flex: 1 1 240px;
   background: rgba(255, 255, 255, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.2);
   padding: 20px;
   border-radius: 18px;
 }
 
 .price-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .price-card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   box-shadow: var(--shadow);
 }
 
 .price-card img {
   width: 100%;
   height: 160px;
   border-radius: 16px;
   background: #e2e7ef;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
 }
 
 .lead-form {
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: var(--card);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .lead-form label {
   font-weight: 600;
   font-size: 14px;
 }
 
 .lead-form input,
 .lead-form select,
 .lead-form textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--soft-strong);
   font-size: 14px;
   background: #ffffff;
 }
 
 .lead-form button {
   align-self: flex-start;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: #ffffff;
   padding: 12px 16px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 10;
 }
 
 .sticky-cta span {
   font-size: 13px;
   color: var(--muted);
 }
 
 .site-footer {
   padding: 40px 6vw 80px;
   background: #0f172a;
   color: #e8edf7;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .footer-links a {
   font-size: 13px;
   color: #e8edf7;
   background: rgba(255, 255, 255, 0.08);
   padding: 6px 12px;
   border-radius: 999px;
 }
 
 .disclaimer {
   font-size: 12px;
   color: #c4cbe0;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   padding: 16px 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   padding: 8px 14px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: #ffffff;
 }
 
 .cookie-reject {
   background: var(--soft-strong);
   color: var(--ink);
 }
 
 .simple-hero {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 24px;
 }
 
 .simple-hero img {
   flex: 1 1 320px;
   height: 260px;
   border-radius: 20px;
   background: #e2e7ef;
 }
 
 .simple-hero .hero-copy {
   flex: 1 1 360px;
 }
 
 .list-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .list-block li {
   margin-left: 18px;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 280px;
   background: var(--card);
   padding: 24px;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .contact-card strong {
   display: block;
   margin-bottom: 8px;
 }
 
 @media (max-width: 900px) {
   .hero {
     flex-direction: column;
   }
 
   .offset-blocks {
     flex-direction: column;
   }
 
   .sticky-cta {
     left: 20px;
     right: 20px;
     justify-content: space-between;
   }
 }
