 :root {
     --sky: #1a4fa0;
     --sky-deep: #0d2d6b;
     --sky-pale: #e0f2fe;
     --sky-xpale: #f0f9ff;
     --slate: #0f172a;
     --slate-mid: #334155;
     --slate-soft: #64748b;
     --slate-line: #e2e8f0;
     --amber: #f59e0b;
     --white: #ffffff;
     --surface: #f8fafc;
     --radius: 12px;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }


 /* ── HERO ── */
 .hero {
     position: relative;
     overflow: hidden;
     padding: 10px 5vw 0;
     background:
         linear-gradient(rgba(8, 33, 61, 0.171), rgba(26, 79, 160, 0.26)),
         url(/assete/images/page-banner/cloud.webp);
     background-size: cover;
     background-position: center;
 }

 /* Geometric cloud grid decoration */
 .hero::before {
     content: '';
     position: absolute;
     right: -120px;
     top: -60px;
     width: 700px;
     height: 700px;
     background:
         radial-gradient(circle at 60% 40%, rgba(14, 165, 233, .12) 0%, transparent 55%),
         radial-gradient(circle at 30% 70%, rgba(245, 158, 11, .07) 0%, transparent 50%);
     border-radius: 50%;
     pointer-events: none;
 }

 .hero-inner {
     max-width: 1100px;
     margin: auto;
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 60px;
     align-items: end;
 }

 .hero-text {
     padding-top: 50px;
 }

 .hero-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: .75rem;
     font-weight: 700;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: #fff;
     margin-bottom: 22px;
 }

 .hero-eyebrow::before {
     content: '';
     display: inline-block;
     width: 24px;
     height: 2px;
     background: var(--sky);
     border-radius: 2px;
 }

 h1 {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     line-height: 1.08;
     color: #fff;
     margin-bottom: 22px;
     letter-spacing: -0.01em;
 }

 h1 em {
     font-style: italic;
     color: #fff;
 }

 .hero-desc {
     font-size: 1.05rem;
     color: #fff;
     max-width: 500px;
     margin-bottom: 36px;
     font-weight: 400;
 }

 .btn-sky {
     display: inline-block;
     background: var(--sky);
     color: #fff;
     padding: 13px 30px;
     border-radius: var(--radius);
     font-weight: 700;
     font-size: .9rem;
     text-decoration: none;
     transition: background .2s, transform .15s;
 }

 .btn-sky:hover {
     background: var(--sky-deep);
     transform: translateY(-2px);
 }

 /* Hero visual — service cards stacked */
 .hero-visual {
     position: relative;
     align-self: end;
 }

 .service-stack {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .svc-bar {
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 18px 22px;
     border-left: 3px solid transparent;
     transition: background .2s, border-color .2s;
     cursor: default;
 }

 .svc-bar:first-child {
     border-radius: 14px 14px 0 0;
     background: var(--sky-pale);
     border-color: var(--sky);
 }

 .svc-bar:nth-child(2) {
     background: #f1f5f9;
     border-color: transparent;
 }

 .svc-bar:nth-child(3) {
     background: #f8fafc;
     border-color: transparent;
     border-radius: 0 0 14px 14px;
 }

 .svc-bar:hover {
     background: var(--sky-pale);
     border-color: var(--sky);
 }

 .svc-ico {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     flex-shrink: 0;
 }

 .svc-ico.blue {
     background: rgba(14, 165, 233, .15);
 }

 .svc-ico.slate {
     background: rgba(100, 116, 139, .12);
 }

 .svc-ico.amber {
     background: rgba(245, 158, 11, .12);
 }

 .svc-bar h3 {
     font-size: .93rem;
     font-weight: 700;
     color: var(--slate);
 }

 .svc-bar p {
     font-size: .78rem;
     color: var(--slate-soft);
     font-weight: 400;
 }

 .svc-tag {
     margin-left: auto;
     font-size: .68rem;
     font-weight: 700;
     letter-spacing: .1em;
     text-transform: uppercase;
     color: var(--sky-deep);
     background: var(--sky-pale);
     padding: 3px 10px;
     border-radius: 20px;
     white-space: nowrap;
 }

 /* ── SECTION COMMONS ── */
 section {
     padding: 88px 5vw;
 }

 .inner {
     max-width: 1100px;
     margin: auto;
 }

 .s-tag {
     display: inline-block;
     font-size: .7rem;
     font-weight: 700;
     letter-spacing: .16em;
     text-transform: uppercase;
     color: var(--sky-deep);
     background: var(--sky-pale);
     padding: 4px 12px;
     border-radius: 30px;
     margin-bottom: 14px;
 }

 .s-title {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     color: var(--slate);
     letter-spacing: -0.01em;
     line-height: 1.15;
     margin-bottom: 14px;
 }

 .s-lead {
     color: var(--slate-soft);
     font-size: 1rem;
     max-width: 600px;
     margin-bottom: 52px;
 }

 /* ── OVERVIEW ── */
 #overview {
     background: var(--surface);
 }

 .overview-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 64px;
     align-items: start;
 }

 .overview-body p {
     color: var(--slate-mid);
     margin-bottom: 18px;
     font-size: .97rem;
 }

 .service-types {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .stype {
     display: flex;
     gap: 16px;
     align-items: flex-start;
     padding: 18px 20px;
     background: var(--white);
     border: 1px solid var(--slate-line);
     border-radius: var(--radius);
     transition: border-color .2s, box-shadow .2s;
 }


 .stype-img {
     width: 100%;
     overflow: hidden;
 }

 .stype-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 10px;
 }

 .stype:hover {
     border-color: var(--sky);
     box-shadow: 0 4px 18px rgba(14, 165, 233, .1);
 }

 .stype-badge {
     font-size: .68rem;
     font-weight: 800;
     letter-spacing: .08em;
     color: #fff;
     background: var(--sky-deep);
     padding: 4px 9px;
     border-radius: 6px;
     white-space: nowrap;
     margin-top: 2px;
     flex-shrink: 0;
 }

 .stype h4 {
     font-size: .92rem;
     font-weight: 700;
     color: var(--slate);
     margin-bottom: 4px;
 }

 .stype p {
     font-size: .82rem;
     color: var(--slate-soft);
 }

 /* ── FEATURES / SaaS DEEP DIVE ── */
 #features {
     background: var(--white);
 }

 .features-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
 }

 .saas-prose p {
     color: var(--slate-mid);
     font-size: .96rem;
     margin-bottom: 18px;
 }

 .saas-prose strong {
     color: var(--slate);
 }

 .saas-caps {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 28px;
 }

 .saas-cap {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: .88rem;
     color: var(--slate-mid);
     padding: 10px 14px;
     background: var(--sky-xpale);
     border-radius: 8px;
     border-left: 3px solid var(--sky);
 }

 .saas-cap .ck {
     color: var(--sky);
     font-weight: 700;
 }

 .other-services {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .os-card {
     padding: 26px 24px;
     border: 1px solid var(--slate-line);
     border-radius: var(--radius);
     transition: box-shadow .2s, border-color .2s, transform .2s;
 }

 .os-card:hover {
     border-color: var(--sky);
     box-shadow: 0 6px 24px rgba(14, 165, 233, .1);
     transform: translateY(-2px);
 }

 .os-card .os-icon {
     font-size: 1.6rem;
     margin-bottom: 12px;
 }

 .os-card h3 {
     font-family: 'Syne', sans-serif;
     font-size: 1.2rem;
     color: var(--slate);
     margin-bottom: 8px;
 }

 .os-card p {
     font-size: .87rem;
     color: var(--slate-soft);
 }

 /* ── BENEFITS ── */
 #benefits {
     background: var(--sky-deep);
 }

 #benefits .s-tag {
     background: rgba(255, 255, 255, .15);
     color: #fff;
 }

 #benefits .s-title {
     color: #fff;
 }

 #benefits .s-lead {
     color: rgba(255, 255, 255, .65);
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
 }

 .ben-card {
     background: rgba(255, 255, 255, .08);
     border: 1px solid rgba(255, 255, 255, .14);
     border-radius: var(--radius);
     padding: 24px 22px;
     display: flex;
     align-items: flex-start;
     gap: 14px;
     transition: background .2s;
 }

 .ben-card:hover {
     background: rgba(255, 255, 255, .14);
 }

 .ben-num {
     font-family: 'Syne', sans-serif;
     font-size: 2rem;
     color: rgba(255, 255, 255, .2);
     line-height: 1;
     flex-shrink: 0;
     min-width: 36px;
 }

 .ben-card h4 {
     font-size: .92rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 4px;
 }

 .ben-card p {
     font-size: .8rem;
     color: rgba(255, 255, 255, .55);
 }

 /* ── INDUSTRIES ── */
 #industries {
     background: var(--surface);
 }

 .ind-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
     gap: 14px;
 }

 .ind-card {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 16px 18px;
     background: var(--white);
     border: 1px solid var(--slate-line);
     border-radius: var(--radius);
     font-size: .88rem;
     font-weight: 500;
     color: var(--slate-mid);
     transition: border-color .2s, background .2s, color .2s;
 }

 .ind-card:hover {
     background: var(--sky-pale);
     border-color: var(--sky);
     color: var(--sky-deep);
 }

 .ind-card .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--sky);
     flex-shrink: 0;
 }

 /* ── INTEGRATIONS ── */
 #integrations {
     background: var(--white);
 }

 .int-band {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
 }

 .int-chip {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 20px;
     border: 1.5px solid var(--slate-line);
     border-radius: 50px;
     font-size: .87rem;
     font-weight: 600;
     color: var(--slate-mid);
     background: var(--surface);
     transition: border-color .2s, background .2s, color .2s;
 }

 .int-chip:hover {
     border-color: var(--sky);
     background: var(--sky-pale);
     color: var(--sky-deep);
 }

 .int-chip .ico {
     font-size: 1.1rem;
 }

 /* ── FAQ ── */
 #faq {
     background: var(--surface);
 }

 .faq-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
     max-width: 780px;
 }

 .faq-item {
     border: 1px solid var(--slate-line);
     border-radius: var(--radius);
     overflow: hidden;
     background: var(--white);
 }

 .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: .95rem;
     font-weight: 700;
     color: var(--slate);
     text-align: left;
     transition: background .2s;
 }

 .faq-q:hover {
     background: var(--sky-xpale);
 }

 .faq-q .arr {
     font-size: .75rem;
     color: var(--sky);
     transition: transform .25s;
     flex-shrink: 0;
     margin-left: 16px;
 }

 .faq-item.open .faq-q .arr {
     transform: rotate(180deg);
 }

 .faq-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height .35s ease, padding .25s ease;
     font-size: .9rem;
     color: var(--slate-soft);
     padding: 0 22px;
     background: var(--sky-xpale);
 }

 .faq-item.open .faq-a {
     max-height: 200px;
     padding: 16px 22px;
 }

 /* ── CTA ── */
 .cta-strip {
     background: var(--sky);
     padding: 72px 5vw;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-strip::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse 80% 100% at 50% 120%, rgba(245, 158, 11, .2) 0%, transparent 60%);
     pointer-events: none;
 }

 .cta-strip h2 {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2.2rem, 4.5vw, 44px);
     color: #fff;
     margin-bottom: 14px;
     position: relative;
 }

 .cta-strip p {
     color: rgba(255, 255, 255, .8);
     margin-bottom: 32px;
     font-size: 1rem;
     position: relative;
 }

 .btn-white {
     display: inline-block;
     background: #fff;
     color: var(--sky-deep);
     padding: 14px 34px;
     border-radius: var(--radius);
     font-weight: 800;
     font-size: .9rem;
     text-decoration: none;
     position: relative;
     transition: transform .15s, box-shadow .2s;
 }

 .btn-white:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
 }



 /* ── SCROLL REVEAL ── */
 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity .5s ease, transform .5s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: none;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 860px) {
     .hero-inner {
         grid-template-columns: 1fr;
     }

     .hero-visual {
         display: none;
     }

     .overview-grid {
         grid-template-columns: 1fr;
         gap: 36px;
     }

     .features-layout {
         grid-template-columns: 1fr;
     }

     .benefits-grid {
         grid-template-columns: 1fr 1fr;
     }

 }

 @media (max-width: 540px) {
     .benefits-grid {
         grid-template-columns: 1fr;
     }
 }