 :root {
   --bg: #f6f7f9;
   --ink: #1d1f24;
   --muted: #5d6774;
   --accent: #2f5fe4;
   --accent-2: #0f7f6c;
   --soft: #ffffff;
   --line: #e3e6eb;
   --warm: #fff6e8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .topbar {
   background: var(--soft);
   border-bottom: 1px solid var(--line);
 }
 
 .topbar-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 18px 0;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   background: var(--warm);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .hero {
   color: var(--soft);
   padding: 120px 0 80px;
   background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(10, 12, 18, 0.6);
 }
 
 .hero-content {
   position: relative;
   z-index: 1;
   display: flex;
   flex-direction: column;
   gap: 18px;
   max-width: 620px;
 }
 
 .hero h1 {
   font-size: 44px;
   line-height: 1.1;
   margin: 0;
 }
 
 .hero p {
   font-size: 18px;
   color: #e8ebf2;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 8px;
   border: 1px solid transparent;
   background: var(--accent);
   color: var(--soft);
   font-weight: 600;
 }
 
 .btn-secondary {
   background: transparent;
   border-color: var(--soft);
   color: var(--soft);
 }
 
 .section {
   padding: 70px 0;
 }
 
 .section-alt {
   background: var(--soft);
 }
 
 .section-warm {
   background: var(--warm);
 }
 
.section-ambient {
  background-image: url("https://images.unsplash.com/photo-1517433456452-f9633a875f6f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--soft);
}

.section-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 19, 26, 0.72);
}

.section-ambient .container {
  position: relative;
  z-index: 1;
}

 .row {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .col {
   flex: 1 1 280px;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--accent-2);
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--soft);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--accent);
 }
 
 .img-box {
   background: #dfe6ee;
   border-radius: 14px;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
.img-h320 {
  height: 320px;
}

.img-h280 {
  height: 280px;
}

.img-h260 {
  height: 260px;
}

.img-h230 {
  height: 230px;
}

.img-h160 {
  height: 160px;
}

 .img-box img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .testimonial {
   padding: 16px 18px;
   border-left: 4px solid var(--accent);
   background: #f1f4ff;
   border-radius: 12px;
   color: var(--muted);
 }
 
 .form-wrap {
   background: var(--soft);
   border-radius: 18px;
   border: 1px solid var(--line);
   padding: 26px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 15px;
   font-family: inherit;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 20px;
   background: var(--accent-2);
   color: var(--soft);
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   border: none;
   z-index: 5;
 }
 
 .footer {
   padding: 40px 0;
   background: #10131a;
   color: #c6ced8;
 }
 
 .footer a {
   color: #c6ced8;
 }
 
 .footer-grid {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .footer-col {
   flex: 1 1 240px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: var(--soft);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
   display: none;
   z-index: 6;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: 12px;
 }
 
 .cookie-btn {
   padding: 8px 14px;
   border-radius: 8px;
   border: 1px solid var(--line);
   background: var(--soft);
   font-weight: 600;
 }
 
 .cookie-btn.accept {
   background: var(--accent);
   color: var(--soft);
   border-color: var(--accent);
 }
 
 .page-hero {
   background: #111827;
   color: var(--soft);
   padding: 70px 0 50px;
 }
 
 .page-hero h1 {
   margin: 0;
   font-size: 36px;
 }
 
 .legal {
   line-height: 1.7;
   color: var(--muted);
 }
 
 @media (max-width: 720px) {
   .hero h1 {
     font-size: 34px;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     text-align: center;
   }
 }
