 :root {
     --bg-deep: #f0f5fe;
     --bg-mid: #fffefe;
     --bg-card: #0d2d6b;
     --bg-card2: #1a4fa0;
     --border: rgba(255, 255, 255, 0.07);
     --border-blue: rgba(10, 110, 189, 0.28);
     --teal: #00c896;
     --blue: #1a4fa0;
     --blue-light: #58a6ff;
     --text-black: #000000;
     --text-main: #000000;
     --text-muted: #7ea8c4;
     --text-dim: #4a6a84;
     --grad: linear-gradient(135deg, #0a6ebd, #00c896);
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {

     background: var(--bg-deep);
     color: var(--text-main);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h3 {
     color: #fff !important;
 }

 /* ── UTILS ── */
 .container {
     max-width: 1160px;
     margin: 0 auto;
     padding: 0 28px;
 }

 .eyebrow {
     font-family: 'Syne', sans-serif;
     font-size: 11.5px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 3.5px;
     color: var(--teal);
     margin-bottom: 14px;
     display: block;
 }

 .section-title {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     font-weight: 800;
     color: var(--text-black);
     line-height: 1.18;
     margin-bottom: 16px;
 }

 .section-sub {
     font-size: 15.5px;
     color: var(--text-muted);
     max-width: 600px;
     line-height: 1.75;
 }

 .section-header {
     margin-bottom: 56px;
 }

 .section-header.centered {
     text-align: center;
 }

 .section-header.centered .section-sub {
     margin: 0 auto;
 }

 .grad-text {
     background: var(--grad);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }



 /* ── HERO ── */
 .hero {
     padding: 50px 0 20px;
     position: relative;
     overflow: hidden;
     background:
         linear-gradient(rgba(8, 33, 61, 0.192), rgba(26, 79, 160, 0.226)),
         url(/assete/images/page-banner/secure.webp);
     background-size: cover;
     background-position: center;
 }

 .hero-glow {
     position: absolute;
     top: -160px;
     left: 50%;
     transform: translateX(-50%);
     width: 1000px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(ellipse, rgba(10, 110, 189, 0.1) 0%, transparent 68%);
     pointer-events: none;
 }

 .hero-glow2 {
     position: absolute;
     bottom: -80px;
     right: -100px;
     width: 480px;
     height: 480px;
     border-radius: 50%;
     background: radial-gradient(ellipse, rgba(0, 200, 150, 0.06) 0%, transparent 65%);
     pointer-events: none;
 }

 .hero-inner {
     display: flex;
     align-items: center;
     gap: 64px;
     flex-wrap: wrap;
 }

 .hero-content {
     flex: 1;
     min-width: 300px;
     position: relative;
     z-index: 1;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(0, 200, 150, 0.08);
     border: 1px solid rgba(0, 200, 150, 0.22);
     border-radius: 30px;
     padding: 6px 16px;
     font-size: 12px;
     color: var(--teal);
     font-weight: 600;
     margin-bottom: 24px;
 }

 .hero-badge i {
     font-size: 13px;
 }

 .hero-title {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     font-weight: 700;
     color: #fff;
     margin-bottom: 20px;
 }

 .hero-desc {
     font-size: 16px;
     color: #fff;
     line-height: 1.8;
     margin-bottom: 36px;
     max-width: 520px;
 }

 .hero-actions {
     display: flex;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     background: var(--grad);
     color: #fff;
     border-radius: 10px;
     padding: 14px 28px;
     font-size: 14.5px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.25s ease;
     box-shadow: 0 8px 28px rgba(10, 110, 189, 0.38);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 36px rgba(10, 110, 189, 0.52);
 }

 .btn-ghost {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: #2d659a;
     border: 1px solid var(--border);
     color: #000000;
     border-radius: 10px;
     padding: 13px 24px;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.22s ease;
 }

 .btn-ghost:hover {
     border-color: var(--border-blue);
     color: var(--text-main);
     background: rgba(10, 110, 189, 0.08);
 }

 .hero-stats {
     display: flex;
     gap: 32px;
     flex-wrap: wrap;
     margin-top: 44px;
     padding-top: 36px;
     border-top: 1px solid var(--border);
 }

 .stat-item {
     text-align: left;
 }

 .stat-num {
     font-family: 'Syne', sans-serif;
     font-size: 26px;
     font-weight: 800;
     background: var(--grad);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     display: block;
     line-height: 1;
 }

 .stat-lbl {
     font-size: 12px;
     color: var(--text-muted);
     margin-top: 5px;
 }

 /* Hero visual panel */
 .hero-visual {
     flex: 1;
     min-width: 280px;
     max-width: 480px;
     position: relative;
     z-index: 1;
 }

 .hero-card {
     /* background: var(--bg-card);  */
     /* border: 1px solid var(--border); */
     border-radius: 20px;
     padding: 28px;
     /* box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03); */
     position: relative;
     overflow: hidden;
     margin-left: 150px;
 }

 .hero-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: var(--grad);
 }

 .hc-row {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 14px;
     border-radius: 10px;
     background: rgb(0 0 0 / 21%);
     border: 1px solid var(--border);
     margin-bottom: 10px;
     transition: all 0.2s;
     width: 300px;
 }

 .hc-row:last-child {
     margin-bottom: 0;
 }

 .hc-icon {
     width: 36px;
     height: 36px;
     border-radius: 9px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
 }

 .hc-label {
     font-size: 13px;
     font-weight: 600;
     color: #fff;
 }

 .hc-sub {
     font-size: 11px;
     color: #fff;
     margin-top: 1px;
 }

 .hc-badge {
     margin-left: auto;
     font-size: 10px;
     font-weight: 700;
     border-radius: 20px;
     padding: 3px 10px;
 }

 .hc-badge.live {
     background: rgba(0, 200, 150, 0.12);
     color: var(--teal);
     border: 1px solid rgba(0, 200, 150, 0.25);
 }

 .hc-badge.soon {
     background: rgba(250, 163, 7, 0.1);
     color: #faa307;
     border: 1px solid rgba(250, 163, 7, 0.22);
 }

 /* ── SECTION DIVIDER ── */
 .sec-divider {
     height: 1px;
     background: var(--border);
     margin: 0;
 }

 /* ── OVERVIEW ── */
 .overview-section {
     padding: 90px 0;
     background: var(--bg-mid);
 }

 .overview-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
 }

 .ov-card {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 28px 24px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .ov-card::before {
     content: '';
     position: absolute;
     inset: 0;
     border-radius: 16px;
     background: linear-gradient(135deg, rgba(10, 110, 189, 0.06), rgba(0, 200, 150, 0.03));
     opacity: 0;
     transition: opacity 0.3s;
 }

 .ov-card:hover {
     border-color: var(--border-blue);
     transform: translateY(-3px);
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
 }

 .ov-card:hover::before {
     opacity: 1;
 }

 .ov-icon {
     width: 48px;
     height: 48px;
     border-radius: 13px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 21px;
     margin-bottom: 16px;
 }

 .ov-card h3 {
     font-family: 'Syne', sans-serif;
     font-size: 15px;
     font-weight: 700;
     color: var(--text-black);
     margin-bottom: 8px;
 }

 .ov-card p {
     font-size: 13.5px;
     color: var(--text-muted);
     line-height: 1.7;
 }

 /* ── NETWORK MODES ── */
 .network-section {
     padding: 90px 0;
     background: var(--bg-deep);
     position: relative;
     overflow: hidden;
 }

 .network-section::after {
     content: '';
     position: absolute;
     top: -120px;
     right: -80px;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(0, 200, 150, 0.05), transparent 65%);
     pointer-events: none;
 }

 .network-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 20px;
 }

 .net-card {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 18px;
     padding: 32px 26px;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .net-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
 }

 .net-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 }

 .net-card.lan::before {
     background: linear-gradient(90deg, #0a6ebd, #00c896);
 }

 .net-card.sip::before {
     background: linear-gradient(90deg, #7b2ff7, #0a6ebd);
 }

 .net-card.wan::before {
     background: linear-gradient(90deg, #00c896, #0a9e78);
 }

 .net-card.mob::before {
     background: linear-gradient(90deg, #e85d04, #faa307);
 }

 .net-card:hover.lan {
     border-color: rgba(10, 110, 189, 0.4);
 }

 .net-card:hover.sip {
     border-color: rgba(123, 47, 247, 0.4);
 }

 .net-card:hover.wan {
     border-color: rgba(0, 200, 150, 0.4);
 }

 .net-card:hover.mob {
     border-color: rgba(232, 93, 4, 0.4);
 }

 .net-mode-badge {
     display: inline-block;
     font-family: 'Syne', sans-serif;
     font-size: 10px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 2px;
     border-radius: 6px;
     padding: 4px 10px;
     margin-bottom: 20px;
 }

 .badge-lan {
     background: rgba(10, 110, 189, 0.15);
     color: #58a6ff;
     border: 1px solid rgba(10, 110, 189, 0.3);
 }

 .badge-sip {
     background: rgba(123, 47, 247, 0.15);
     color: #d2a8ff;
     border: 1px solid rgba(123, 47, 247, 0.3);
 }

 .badge-wan {
     background: rgba(0, 200, 150, 0.12);
     color: var(--teal);
     border: 1px solid rgba(0, 200, 150, 0.28);
 }

 .badge-mob {
     background: rgba(232, 93, 4, 0.12);
     color: #faa307;
     border: 1px solid rgba(232, 93, 4, 0.28);
 }

 .net-icon {
     font-size: 32px;
     margin-bottom: 16px;
     display: block;
 }

 .net-card h3 {
     font-family: 'Syne', sans-serif;
     font-size: 17px;
     font-weight: 700;
     color: var(--text-black);
     margin-bottom: 10px;
 }

 .net-card p {
     font-size: 13.5px;
     color: var(--text-muted);
     line-height: 1.75;
     margin-bottom: 18px;
 }

 .net-bullets {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 7px;
 }

 .net-bullets li {
     font-size: 12.5px;
     color: #aed6f1;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .net-bullets li i {
     font-size: 12px;
     color: var(--teal);
     flex-shrink: 0;
 }

 /* ── DATA OWNERSHIP ── */
 .data-section {
     padding: 90px 0;
     background: var(--bg-mid);
 }

 .data-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 64px;
     align-items: center;
 }

 .data-content .section-sub {
     margin-bottom: 32px;
 }

 .data-pillar {
     display: flex;
     gap: 14px;
     align-items: flex-start;
     padding: 16px 0;
     border-bottom: 1px solid var(--border);
 }

 .data-pillar:first-of-type {
     border-top: 1px solid var(--border);
 }

 .pillar-icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     flex-shrink: 0;
     background: rgba(10, 110, 189, 0.1);
     border: 1px solid rgba(10, 110, 189, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     color: var(--blue-light);
 }

 .pillar-title {
     font-size: 14px;
     font-weight: 600;
     color: var(--text-black);
     margin-bottom: 3px;
 }

 .pillar-desc {
     font-size: 13px;
     color: var(--text-muted);
     line-height: 1.65;
 }

 /* Server diagram */
 .server-diagram {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 32px 28px;
     box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
     position: relative;
     overflow: hidden;
 }

 .server-diagram::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: var(--grad);
 }

 .server-center {
     background: rgba(10, 110, 189, 0.1);
     border: 2px solid rgba(10, 110, 189, 0.3);
     border-radius: 14px;
     padding: 18px 20px;
     text-align: center;
     margin-bottom: 20px;
 }

 .server-center i {
     font-size: 28px;
     color: var(--blue-light);
     display: block;
     margin-bottom: 8px;
 }

 .server-center .sc-title {
     font-family: 'Syne', sans-serif;
     font-size: 13px;
     font-weight: 700;
     color: var(--text-black);
 }

 .server-center .sc-sub {
     font-size: 11px;
     color: var(--text-muted);
     margin-top: 3px;
 }

 .server-nodes {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
 }

 .sn-item {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid var(--border);
     border-radius: 10px;
     padding: 11px 13px;
     display: flex;
     align-items: center;
     gap: 9px;
 }

 .sn-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .sn-dot.green {
     background: #3fb950;
 }

 .sn-dot.blue {
     background: #58a6ff;
 }

 .sn-dot.teal {
     background: var(--teal);
 }

 .sn-dot.amber {
     background: #faa307;
 }

 .sn-label {
     font-size: 11.5px;
     color: var(--text-muted);
 }

 .sn-tag {
     font-size: 9px;
     font-weight: 700;
     color: var(--text-dim);
     margin-left: auto;
     text-transform: uppercase;
     letter-spacing: .5px;
 }

 .server-zero {
     margin-top: 16px;
     text-align: center;
     font-size: 11.5px;
     color: var(--text-muted);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 7px;
 }

 .server-zero i {
     color: var(--teal);
 }

 /* ── WHO IT'S BUILT FOR ── */
 .audience-section {
     background: linear-gradient(180deg, #060d1a 0%, #0a1628 100%);
     padding: 90px 0;
     position: relative;
     overflow: hidden;
 }

 .audience-section::before {
     content: '';
     position: absolute;
     top: -160px;
     left: 50%;
     transform: translateX(-50%);
     width: 800px;
     height: 500px;
     background: radial-gradient(ellipse, rgba(10, 110, 189, 0.07) 0%, transparent 70%);
     pointer-events: none;
 }

 .audience-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 20px;
 }

 .aud-card {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 32px 28px;
     position: relative;
     overflow: hidden;
     transition: all 0.32s ease;
 }

 .aud-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     opacity: 0;
     transition: opacity 0.3s;
 }

 .aud-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
 }

 .aud-card:hover::after {
     opacity: 1;
 }

 .aud-card.c1::after {
     background: linear-gradient(90deg, #0a6ebd, #00c896);
 }

 .aud-card.c2::after {
     background: linear-gradient(90deg, #7b2ff7, #0a6ebd);
 }

 .aud-card.c3::after {
     background: linear-gradient(90deg, #e85d04, #faa307);
 }

 .aud-card.c4::after {
     background: linear-gradient(90deg, #00c896, #0a6ebd);
 }

 .aud-card.c5::after {
     background: linear-gradient(90deg, #faa307, #e85d04);
 }

 .aud-card.c6::after {
     background: linear-gradient(90deg, #d2a8ff, #7b2ff7);
 }

 .aud-card:hover.c1 {
     border-color: rgba(10, 110, 189, 0.38);
 }

 .aud-card:hover.c2 {
     border-color: rgba(123, 47, 247, 0.38);
 }

 .aud-card:hover.c3 {
     border-color: rgba(232, 93, 4, 0.38);
 }

 .aud-card:hover.c4 {
     border-color: rgba(0, 200, 150, 0.38);
 }

 .aud-card:hover.c5 {
     border-color: rgba(250, 163, 7, 0.38);
 }

 .aud-card:hover.c6 {
     border-color: rgba(210, 168, 255, 0.38);
 }

 .aud-icon {
     width: 52px;
     height: 52px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 23px;
     margin-bottom: 20px;
 }

 .aud-card h3 {
     font-family: 'Syne', sans-serif;
     font-size: 16px;
     font-weight: 700;
     color: var(--text-black);
     margin-bottom: 10px;
 }

 .aud-card p {
     font-size: 13.5px;
     color: var(--text-muted);
     line-height: 1.75;
     margin-bottom: 16px;
 }

 .aud-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 6px;
 }

 .aud-tag {
     font-size: 11px;
     font-weight: 600;
     border-radius: 20px;
     padding: 3px 11px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.09);
     color: var(--text-muted);
 }

 /* ── HOW IT WORKS ── */
 .how-section {
     background: var(--bg-mid);
     padding: 90px 0;
     position: relative;
     overflow: hidden;
 }

 .how-section::after {
     content: '';
     position: absolute;
     bottom: -80px;
     right: -80px;
     width: 420px;
     height: 420px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(0, 200, 150, 0.05), transparent 65%);
     pointer-events: none;
 }

 .steps-wrap {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
     gap: 0;
     position: relative;
 }

 .steps-wrap::before {
     content: '';
     position: absolute;
     top: 38px;
     left: calc(12.5% + 28px);
     right: calc(12.5% + 28px);
     height: 2px;
     background: linear-gradient(90deg, rgba(10, 110, 189, 0.4), rgba(0, 200, 150, 0.4));
     z-index: 0;
 }

 .step-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0 24px;
     position: relative;
     z-index: 1;
 }

 .step-num {
     width: 76px;
     height: 76px;
     border-radius: 50%;
     background: var(--bg-card);
     border: 2px solid var(--border-blue);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 24px;
     flex-shrink: 0;
     position: relative;
     box-shadow: 0 0 0 6px var(--bg-mid);
     transition: all 0.3s;
 }

 .step-item:hover .step-num {
     background: var(--grad);
     border-color: transparent;
     box-shadow: 0 0 0 6px var(--bg-mid), 0 8px 28px rgba(10, 110, 189, 0.38);
 }

 .step-num-inner {
     font-family: 'Syne', sans-serif;
     font-size: 22px;
     font-weight: 800;
     background: var(--grad);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     transition: all 0.3s;
 }

 .step-item:hover .step-num-inner {
     background: none;
     -webkit-text-fill-color: #fff;
 }

 .step-icon {
     position: absolute;
     top: -6px;
     right: -6px;
     width: 26px;
     height: 26px;
     border-radius: 50%;
     background: var(--grad);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 11px;
     color: #fff;
     box-shadow: 0 3px 10px rgba(10, 110, 189, 0.4);
 }

 .step-item h3 {
     font-family: 'Syne', sans-serif;
     font-size: 15.5px;
     font-weight: 700;
     color: var(--text-black);
     margin-bottom: 10px;
     line-height: 1.3;
 }

 .step-item p {
     font-size: 13.5px;
     color: var(--text-muted);
     line-height: 1.75;
 }

 .step-detail {
     margin-top: 14px;
     background: rgba(10, 110, 189, 0.06);
     border: 1px solid rgba(10, 110, 189, 0.14);
     border-radius: 10px;
     padding: 10px 14px;
     font-size: 12px;
     color: #aed6f1;
     text-align: left;
     line-height: 1.6;
 }

 .step-detail i {
     color: var(--teal);
     margin-right: 5px;
 }

 @media (max-width: 768px) {
     .steps-wrap::before {
         display: none;
     }

     .step-item {
         padding: 0 12px 32px;
     }
 }

 /* ── CTA BANNER ── */
 .cta-section {
     padding: 90px 0;
     background: var(--bg-mid);
 }

 .cta-box {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 64px 56px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-box::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--grad);
 }

 .cta-box::after {
     content: '';
     position: absolute;
     bottom: -100px;
     left: 50%;
     transform: translateX(-50%);
     width: 600px;
     height: 300px;
     background: radial-gradient(ellipse, rgba(10, 110, 189, 0.08), transparent 65%);
     pointer-events: none;
 }

 .cta-box h2 {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     font-weight: 800;
     color: #fff;
     margin-bottom: 16px;
     line-height: 1.2;
 }

 .cta-box p {
     font-size: 16px;
     color: var(--text-muted);
     margin-bottom: 36px;
     max-width: 540px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.75;
 }

 .cta-actions {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
 }

 .overview-img {
     width: 100%;
     max-width: 500px;
     height: auto;
     display: block;
     margin: 0 auto;
     border-radius: 16px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 900px) {
     .data-inner {
         grid-template-columns: 1fr;
     }

     .hero-inner {
         flex-direction: column;
     }

     .hero-visual {
         max-width: 100%;
     }
 }

 @media (max-width: 768px) {
     .feature-panel-wrap {
         flex-direction: column;
     }

     .feat-desc-side,
     .laptop-side {
         max-width: 100%;
         min-width: unset;
     }

     .laptop-screen {
         height: 260px;
     }

     .other-feat-grid {
         grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
     }

     .cta-box {
         padding: 44px 28px;
     }

     .overview-grid {
         display: block;
     }

     .ov-card {
         margin-bottom: 10px;
     }

     .hero {
         padding: 20px 0 20px;
     }

     .hero-desc {
         line-height: normal;
         margin-bottom: 10px;
     }
 }