 :root {
     --ink: #0d2d6b;
     --ink-mid: #2563c8;
     --ink-soft: #5a6a7a;
     --accent: #1a6fa8;
     --accent-lt: #2b8fd4;
     --accent-pale: #e8f4fb;
     --gold: #c89a3b;
     --surface: #ffffff;
     --surface-2: #f5f8fc;
     --border: #dce6ef;
     --radius: 10px;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }



 /* ── HERO ── */
 .hero {
     position: relative;
     background: var(--ink);
     overflow: hidden;
     padding: 40px 5vw 80px;
 }

 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
         linear-gradient(rgba(8, 33, 61, 0.144), rgba(26, 79, 160, 0.11)),
         url(/assete/images/page-banner/data\ collection.webp);
     background-size: cover;
     background-position: center;
 }

 .hero-grid {
     position: relative;
     max-width: 1100px;
     margin: auto;
     display: grid;
     grid-template-columns: 1fr 380px;
     gap: 60px;
     align-items: center;
 }

 .hero-eyebrow {
     font-size: .78rem;
     font-weight: 500;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 18px;
 }

 .hero h1 {

     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     color: #fff;
     font-weight: 700;
     line-height: 1.05;
     margin-bottom: 20px;
 }

 .hero h1 em {
     font-style: normal;
     color: var(--accent-lt);
 }

 .hero-desc {
     color: rgb(255, 255, 255);
     font-size: 1.05rem;
     max-width: 520px;
     margin-bottom: 34px;
 }

 .btn-primary {
     display: inline-block;
     background: var(--accent);
     color: #fff;
     padding: 13px 30px;
     border-radius: var(--radius);
     font-weight: 600;
     font-size: .95rem;
     text-decoration: none;
     transition: background .2s, transform .15s;
 }

 .btn-primary:hover {
     background: var(--accent-lt);
     transform: translateY(-1px);
 }

 .hero-card {
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .12);
     border-radius: 14px;
     padding: 30px 28px;
     backdrop-filter: blur(8px);
 }

 .hero-card h3 {
     font-family: 'Syne', sans-serif;
     font-size: 1rem;
     color: var(--gold);
     margin-bottom: 18px;
     letter-spacing: .05em;
     text-transform: uppercase;
 }

 .hero-stat {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     padding: 12px 0;
     border-bottom: 1px solid rgba(255, 255, 255, .08);
 }

 .hero-stat:last-child {
     border-bottom: none;
 }

 .hero-stat .icon {
     width: 36px;
     height: 36px;
     background: rgba(26, 111, 168, .3);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 1rem;
 }

 .hero-stat .label {
     color: rgb(255, 255, 255);
     font-size: .9rem;
     font-weight: 500;
 }

 .hero-stat .sub {
     color: rgba(255, 255, 255, .45);
     font-size: .78rem;
 }

 /* ── SECTION COMMONS ── */
 section {
     padding: 80px 5vw;
 }

 .section-inner {
     max-width: 1100px;
     margin: auto;
 }

 .section-tag {
     display: inline-block;
     font-size: .72rem;
     font-weight: 600;
     letter-spacing: .16em;
     text-transform: uppercase;
     color: var(--accent);
     background: var(--accent-pale);
     padding: 4px 12px;
     border-radius: 30px;
     margin-bottom: 14px;
 }

 .section-title {
     font-family: 'Syne', sans-serif;
     font-weight: 700;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     color: var(--ink);
     letter-spacing: -0.025em;
     line-height: 1.2;
     margin-bottom: 14px;
 }

 .section-lead {
     color: var(--ink-soft);
     font-size: 1.02rem;
     max-width: 640px;
     margin-bottom: 48px;
 }

 /* ── OVERVIEW ── */
 #overview {
     background: var(--surface-2);
 }

 .overview-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: start;
 }

 .overview-body p {
     color: var(--ink-mid);
     margin-bottom: 18px;
 }

 .pillar-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .pillar-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 12px 16px;
     font-size: .93rem;
     color: var(--ink-mid);
     transition: border-color .2s, box-shadow .2s;
 }

 .pillar-list li:hover {
     border-color: var(--accent);
     box-shadow: 0 3px 14px rgba(26, 111, 168, .1);
 }

 .pillar-list li::before {
     content: '✓';
     color: var(--accent);
     font-weight: 700;
     flex-shrink: 0;
     margin-top: 1px;
 }

 /* ── FEATURES ── */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px;
 }

 .features-wrap {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     /* image + content */
     gap: 40px;
     align-items: center;
 }

 .features-image img {
     width: 100%;
     height: auto;
     border-radius: 12px;
     display: block;
 }

 .feat-card {
     background: var(--surface-2);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 26px 24px;
     transition: transform .2s, box-shadow .2s;
 }

 .feat-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 28px rgba(13, 27, 42, .09);
 }

 .feat-icon {
     font-size: 1.6rem;
     margin-bottom: 14px;
 }

 .feat-card h3 {
     font-family: 'Syne', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     color: var(--ink);
     margin-bottom: 8px;
 }

 .feat-card p {
     font-size: .88rem;
     color: var(--ink-soft);
 }

 /* ── METHODS ── */
 #methods {
     background: var(--ink);
 }

 #methods .section-title {
     color: #fff;
 }

 #methods .section-lead {
     color: rgba(255, 255, 255, .6);
 }

 #methods .section-tag {
     background: rgba(26, 111, 168, .3);
     color: var(--accent-lt);
 }

 .methods-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 18px;
 }

 .method-card {
     background: rgba(255, 255, 255, .05);
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: 12px;
     padding: 24px 22px;
     transition: background .2s, border-color .2s;
 }

 .method-card:hover {
     background: rgba(26, 111, 168, .18);
     border-color: rgba(43, 143, 212, .4);
 }

 .method-num {
     font-family: 'Syne', sans-serif;
     font-size: 2rem;
     font-weight: 800;
     color: rgba(255, 255, 255, .08);
     line-height: 1;
     margin-bottom: 10px;
 }

 .method-card h3 {
     font-family: 'Syne', sans-serif;
     font-size: .98rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 8px;
 }

 .method-card p {
     font-size: .83rem;
     color: rgba(255, 255, 255, .5);
 }

 /* ── INDUSTRIES ── */
 .industries-wrap {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
 }

 .ind-pill {
     display: flex;
     align-items: center;
     gap: 8px;
     background: var(--surface-2);
     border: 1px solid var(--border);
     border-radius: 50px;
     padding: 10px 20px;
     font-size: .88rem;
     font-weight: 500;
     color: var(--ink-mid);
     cursor: default;
     transition: background .2s, border-color .2s, color .2s;
 }

 .ind-pill:hover {
     background: var(--accent-pale);
     border-color: var(--accent);
     color: var(--accent);
 }

 .ind-pill .dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--accent);
 }

 /* ── INTEGRATIONS ── */
 #integrations {
     background: var(--surface-2);
 }

 .int-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
     gap: 16px;
 }

 .int-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: 10px;
     padding: 20px 18px;
     text-align: center;
     font-size: .88rem;
     font-weight: 500;
     color: var(--ink-mid);
     transition: box-shadow .2s, border-color .2s;
 }

 .int-card:hover {
     border-color: var(--accent);
     box-shadow: 0 4px 18px rgba(26, 111, 168, .1);
 }

 .int-card .int-icon {
     font-size: 1.5rem;
     margin-bottom: 10px;
 }

 /* ── FAQ ── */
 .faq-list {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .faq-item {
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
 }

 .faq-q {
     width: 100%;
     background: none;
     border: none;
     cursor: pointer;
     padding: 18px 22px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: 'Syne', sans-serif;
     font-size: .98rem;
     font-weight: 700;
     color: var(--ink);
     text-align: left;
     transition: background .2s;
 }

 .faq-q:hover {
     background: var(--accent-pale);
 }

 .faq-q .arrow {
     font-size: .8rem;
     color: var(--accent);
     transition: transform .25s;
     flex-shrink: 0;
     margin-left: 16px;
 }

 .faq-item.open .faq-q .arrow {
     transform: rotate(180deg);
 }

 .faq-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height .35s ease, padding .25s ease;
     font-size: .93rem;
     color: var(--ink-soft);
     padding: 0 22px;
     background: var(--surface-2);
 }

 .faq-item.open .faq-a {
     max-height: 200px;
     padding: 16px 22px;
 }

 /* ── CTA BANNER ── */
 .cta-banner {
     background: linear-gradient(130deg, var(--accent) 0%, #0d4d78 100%);
     padding: 70px 5vw;
     text-align: center;
 }

 .cta-banner h2 {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     font-weight: 800;
     color: #fff;
     margin-bottom: 14px;
     letter-spacing: -0.025em;
 }

 .cta-banner p {
     color: rgba(255, 255, 255, .75);
     margin-bottom: 30px;
     font-size: 1rem;
 }

 .btn-white {
     display: inline-block;
     background: #fff;
     color: var(--accent);
     padding: 14px 34px;
     border-radius: var(--radius);
     font-weight: 700;
     font-size: .95rem;
     text-decoration: none;
     transition: transform .15s, box-shadow .2s;
 }

 .btn-white:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
 }


 /* ── SCROLL REVEAL ── */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity .55s ease, transform .55s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: none;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 800px) {
     .hero-grid {
         grid-template-columns: 1fr;
     }

     .hero-card {
         display: none;
     }

     .overview-grid {
         grid-template-columns: 1fr;
         gap: 36px;
     }

 }

 @media (max-width: 992px) {
     .features-wrap {
         grid-template-columns: 1fr;
     }

     .features-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .features-grid {
         grid-template-columns: 1fr;
     }
 }