 .img-frame {
   background: #dfe4ea;
   border-radius: 18px;
   padding: 0;
   overflow: hidden;
 }
 
 .img-frame img {
   display: block;
 }
 
 :root {
   --bg: #f6f3ee;
   --bg-alt: #eef1f4;
   --ink: #1e242b;
   --muted: #5a6672;
   --accent: #2f6b63;
   --accent-2: #b86b2b;
   --line: #d7dbe0;
   --card: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 select:focus,
 input:focus,
 textarea:focus {
   outline: 2px solid var(--accent-2);
   outline-offset: 2px;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 7%;
   border-bottom: 1px solid var(--line);
   background: #fffdf9;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand-name {
   font-size: 20px;
   font-weight: 700;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
 }
 
 .nav {
   display: flex;
   gap: 18px;
   font-size: 14px;
 }
 
 .nav a {
   color: var(--ink);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   padding: 60px 7%;
   background-size: cover;
   background-position: center;
   color: #fff;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 28, 36, 0.58);
 }
 
 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 720px;
 }
 
 .hero h1 {
   font-size: 42px;
   margin-bottom: 16px;
 }
 
 .hero p {
   font-size: 18px;
   margin-bottom: 20px;
 }
 
 .hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .btn {
   border: none;
   padding: 12px 18px;
   font-weight: 600;
   cursor: pointer;
   border-radius: 24px;
   background: var(--accent);
   color: #fff;
   display: inline-block;
   text-align: center;
 }
 
 .btn.secondary {
   background: #ffffff;
   color: var(--ink);
 }
 
 .btn.ghost {
   background: transparent;
   border: 1px solid #fff;
   color: #fff;
 }
 
 .section {
   padding: 56px 7%;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }
 
 .mag-columns {
   display: flex;
   gap: 28px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .mag-col {
   flex: 1 1 280px;
 }
 
 .mag-col.wide {
   flex: 2 1 420px;
 }
 
 .card {
   background: var(--card);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   border-radius: 14px;
   background: #d2d8de;
 }
 
 .media-row {
   display: flex;
   gap: 24px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .media-row img {
   width: 100%;
   max-width: 420px;
   height: 280px;
   object-fit: cover;
   border-radius: 18px;
   background: #d2d8de;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .timeline-badge {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: var(--accent-2);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .pricing-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .price-line {
   display: flex;
   justify-content: space-between;
   gap: 18px;
   border-bottom: 1px solid var(--line);
   padding-bottom: 10px;
 }
 
 .form-wrap {
   background: #fff;
   border-radius: 22px;
   padding: 24px;
   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: 10px;
   border: 1px solid var(--line);
   font-size: 15px;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: #ffffff;
   border: 1px solid var(--line);
   padding: 10px 14px;
   border-radius: 20px;
   display: flex;
   gap: 10px;
   align-items: center;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
   z-index: 10;
 }
 
 .sticky-cta a {
   color: var(--ink);
   font-weight: 600;
 }
 
 .footer {
   margin-top: auto;
   background: #1c232b;
   color: #f2f4f7;
   padding: 36px 7%;
 }
 
 .footer a {
   color: #dfe6ed;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #fffdf9;
   border-top: 1px solid var(--line);
   padding: 14px 7%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 18px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .hidden {
   display: none;
 }
 
 .notice {
   font-size: 13px;
   color: var(--muted);
 }
 
 .section-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   flex-wrap: wrap;
   margin-bottom: 20px;
 }
 
 .legal-block {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
 }
 
 .bg-hero {
   background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
 }
 
 .bg-context {
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
 }
 
 .bg-standards {
   background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1400&q=80");
 }
 
 .bg-guides {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
 }
 
 .section.bg-standards,
 .section.bg-guides {
   background-size: cover;
   background-position: center;
   color: #fff;
   position: relative;
   background-color: #2a323a;
 }
 
 .section.bg-standards::before,
 .section.bg-guides::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(23, 31, 39, 0.62);
 }
 
 .section.bg-standards > *,
 .section.bg-guides > * {
   position: relative;
   z-index: 1;
 }
 
 .wide-image {
   width: 100%;
   height: 320px;
   object-fit: cover;
   border-radius: 18px;
   background: #d2d8de;
 }
