 @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --orange: #e85d04;
     --dark: #111;
     --gray-bg: #f4f3f0;
     --border: #e2e0dc;
     --text: #111;
     --text2: #555;
     --text3: #888;
     --white: #fff;
     --font: "Open Sans", system-ui, sans-serif;
     --cond: "Open Sans", system-ui, sans-serif;
 }

 body {
     font-family: var(--font);
     color: var(--text);
     background: var(--white);
     line-height: 1.6;
     font-size: 16px;
 }

 .hero {
     background: var(--dark);
     padding: 64px 0 60px;
 }

 .hero-w {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 32px;
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
     gap: 48px;
     align-items: end;
 }

 @media (max-width: 900px) {
     .hero-w {
         grid-template-columns: 1fr;
     }
 }

 .hero-eyebrow {
     font-size: 11px;
     font-weight: 700;
     color: var(--orange);
     text-transform: uppercase;
     letter-spacing: 1.2px;
     margin-bottom: 14px;
 }

 .hero h1 {
     font-family: var(--cond);
     font-size: 52px;
     font-weight: 800;
     color: #fff;
     line-height: 1;
     letter-spacing: -0.5px;
     margin-bottom: 18px;
 }

 .hero h1 em {
     color: var(--orange);
     font-style: normal;
 }

 .hero-sub {
     font-size: 16px;
     color: rgba(255, 255, 255, 0.55);
     line-height: 1.6;
     max-width: 480px;
 }

 .hero-aside {
     padding-bottom: 4px;
 }

 .hero-stat {
     border-left: 3px solid var(--orange);
     padding: 10px 0 10px 16px;
     margin-bottom: 12px;
 }

 .hero-stat-num {
     font-family: var(--cond);
     font-size: 28px;
     font-weight: 800;
     color: #fff;
     line-height: 1;
 }

 .hero-stat-label {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.45);
     margin-top: 2px;
 }

 .w {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 32px;
 }

 .s-label {
     font-size: 10px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.4px;
     color: var(--orange);
     margin-bottom: 10px;
 }

 .s-title {
     font-family: var(--cond);
     font-size: 36px;
     font-weight: 800;
     color: var(--text);
     line-height: 1.05;
     letter-spacing: -0.3px;
     margin-bottom: 6px;
 }

 .s-sub {
     font-size: 15px;
     color: var(--text2);
     margin-bottom: 36px;
     max-width: 580px;
 }

 .intro {
     padding: 52px 0;
     background: var(--white);
     border-bottom: 1px solid var(--border);
 }

 .intro-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
 }

 .intro-lead {
     font-size: 20px;
     font-weight: 500;
     color: var(--text);
     line-height: 1.45;
 }

 .intro-body {
     font-size: 15px;
     color: var(--text2);
     line-height: 1.75;
     padding-top: 4px;
 }

 .sec {
     padding: 64px 0;
 }

 .sec--gray {
     background: var(--gray-bg);
 }

 .sec--dark {
     background: var(--dark);
 }

 .reasons {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: var(--border);
     border: 1px solid var(--border);
 }

 @media (max-width: 1024px) {
     .reasons {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .reasons {
         grid-template-columns: 1fr;
     }
 }

 .reason {
     background: var(--white);
     padding: 28px 24px;
 }

 .sec--gray .reason {
     background: var(--gray-bg);
 }

 .reason-num {
     font-family: var(--cond);
     font-size: 48px;
     font-weight: 800;
     color: var(--border);
     line-height: 1;
     margin-bottom: 12px;
 }

 .reason h3 {
     font-size: 15px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 8px;
 }

 .reason p {
     font-size: 14px;
     color: var(--text2);
     line-height: 1.65;
     margin: 0;
 }

 .types {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
 }

 @media (max-width: 1024px) {
     .types {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .types {
         grid-template-columns: 1fr;
     }
 }

 .type-card {
     background: var(--white);
     border: 1px solid var(--border);
     padding: 28px;
 }

 .sec--gray .type-card {
     background: var(--gray-bg);
 }

 .type-tag {
     display: inline-block;
     font-size: 10px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     color: var(--white);
     background: var(--orange);
     padding: 3px 9px;
     margin-bottom: 14px;
 }

 .type-card h3 {
     font-family: var(--cond);
     font-size: 20px;
     font-weight: 800;
     color: var(--text);
     margin-bottom: 10px;
     line-height: 1.1;
 }

 .type-card p {
     font-size: 14px;
     color: var(--text2);
     line-height: 1.65;
     margin-bottom: 8px;
 }

 .type-card p:last-child {
     margin-bottom: 0;
 }

 .type-card ul {
     font-size: 14px;
     color: var(--text2);
     margin: 8px 0;
     padding-left: 1.1rem;
 }

 .type-card li {
     margin-bottom: 5px;
 }

 .table-wrap {
     overflow-x: auto;
 }

 table {
     width: 100%;
     border-collapse: collapse;
     font-size: 14px;
 }

 thead {
     background: var(--dark);
     color: #fff;
 }

 th {
     padding: 12px 16px;
     text-align: left;
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.06em;
 }

 td {
     padding: 13px 16px;
     border-bottom: 1px solid var(--border);
     color: var(--text2);
     vertical-align: top;
 }

 tbody tr:last-child td {
     border-bottom: none;
 }

 tbody tr:hover {
     background: rgba(0, 0, 0, 0.02);
 }

 tbody td:first-child {
     font-weight: 700;
     color: var(--text);
 }

 .benefits {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
 }

 @media (max-width: 1024px) {
     .benefits {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .benefits {
         grid-template-columns: 1fr;
     }
 }

 .benefit {
     padding: 28px 22px;
     border-right: 1px solid var(--border);
 }

 .benefit:last-child {
     border-right: none;
 }

 .benefit-icon {
     width: 32px;
     height: 3px;
     background: var(--orange);
     margin-bottom: 16px;
 }

 .benefit h3 {
     font-size: 15px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 8px;
 }

 .benefit p {
     font-size: 13px;
     color: var(--text2);
     line-height: 1.6;
     margin: 0;
 }

 .criteria {
     display: flex;
     flex-direction: column;
     gap: 0;
     max-width: 760px;
 }

 .criterion {
     display: grid;
     grid-template-columns: 200px 1fr;
     gap: 0;
     border-bottom: 1px solid var(--border);
     padding: 20px 0;
 }

 .criterion:first-child {
     border-top: 1px solid var(--border);
 }

 .criterion-label {
     font-size: 13px;
     font-weight: 700;
     color: var(--text);
     padding-right: 24px;
     padding-top: 1px;
 }

 .criterion p {
     font-size: 14px;
     color: var(--text2);
     margin: 0;
     line-height: 1.6;
 }

 .steps {
     display: flex;
     flex-direction: column;
     gap: 0;
     max-width: 760px;
 }

 .step {
     display: flex;
     gap: 24px;
     padding: 24px 0;
     border-bottom: 1px solid var(--border);
     align-items: flex-start;
 }

 .step:last-child {
     border-bottom: none;
 }

 .step-num {
     font-family: var(--cond);
     font-size: 40px;
     font-weight: 800;
     color: var(--orange);
     line-height: 1;
     flex-shrink: 0;
     width: 44px;
 }

 .step h3 {
     font-size: 16px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 5px;
 }

 .step p {
     font-size: 14px;
     color: var(--text2);
     margin: 0;
     line-height: 1.6;
 }

 .profiles {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
 }

 @media (max-width: 768px) {
     .profiles {
         grid-template-columns: 1fr;
     }
 }

 .profile {
     background: var(--dark);
     padding: 28px;
 }

 .profile h3 {
     font-family: var(--cond);
     font-size: 20px;
     font-weight: 800;
     color: #fff;
     margin-bottom: 8px;
 }

 .profile-tag {
     display: inline-block;
     font-size: 10px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     color: var(--orange);
     border: 1px solid var(--orange);
     padding: 2px 8px;
     margin-bottom: 12px;
 }

 .profile p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.65;
     margin: 0;
 }

 .faq {
     max-width: 760px;
     display: flex;
     flex-direction: column;
 }

 details.faq-item {
     border-bottom: 1px solid var(--border);
 }

 details.faq-item:first-child {
     border-top: 1px solid var(--border);
 }

 details summary {
     padding: 17px 4px;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
     list-style: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 16px;
     color: var(--text);
     transition: color 0.15s;
     user-select: none;
 }

 details summary:hover {
     color: var(--orange);
 }

 details summary::-webkit-details-marker {
     display: none;
 }

 details summary::after {
     content: "+";
     font-size: 20px;
     font-weight: 300;
     color: var(--orange);
     flex-shrink: 0;
     transition: transform 0.2s;
 }

 details[open] summary::after {
     transform: rotate(45deg);
 }

 details p {
     font-size: 14px;
     color: var(--text2);
     padding: 2px 4px 18px;
     margin: 0;
     line-height: 1.7;
 }

 .cta-sec {
     background: var(--orange);
     color: #fff;
     padding: 44px 0;
 }

 .cta-inner {
     display: grid;
     grid-template-columns: 450px 1fr;
     gap: 48px;
     align-items: center;
 }

 @media (max-width: 800px) {
     .cta-inner {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .cta-vid {
         margin: 0 auto;
     }

     .cta-actions {
         justify-content: center;
     }
 }

 .cta-vid {
     flex-shrink: 0;
     width: 450px;
     aspect-ratio: 16/9;
     background: #222;
     border-radius: 2px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .cta-thumb {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     border: #222 solid 4px;
     border-radius: 4px;
 }

 .cta-content {
     flex: 1;
 }

 .cta-content h2 {
     font-family: var(--cond);
     font-size: 30px;
     font-weight: 800;
     color: #fff;
     margin-bottom: 16px;
     letter-spacing: -0.2px;
     line-height: 1.05;
 }

 .cta-sub {
     font-size: 15px;
     color: rgba(255, 255, 255, 0.88);
     line-height: 1.65;
     margin-bottom: 16px;
     max-width: 62ch;
 }

 .cta-list {
     list-style: none;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin-bottom: 24px;
 }

 .cta-list li {
     display: flex;
     align-items: flex-start;
     gap: 9px;
     font-size: 15px;
     color: #fff;
 }

 .cta-list li svg {
     flex-shrink: 0;
     margin-top: 3px;
 }

 .cta-actions {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .cta-btn {
     background: #fff;
     color: var(--orange);
     font-family: var(--cond);
     font-size: 15px;
     font-weight: 800;
     padding: 13px 28px;
     border-radius: 2px;
     letter-spacing: 0.3px;
     transition: opacity 0.15s;
 }

 .cta-btn:hover {
     opacity: 0.92;
     color: var(--orange);
 }

 .cta-trust {
     font-size: 13px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.75);
 }

 .cta-trust:hover {
     color: #fff;
 }