/* ============================================================
   ALIF INFO TECH — DESIGN SYSTEM
   Microsoft-inspired: clean light theme, Segoe UI type stack,
   restrained blue palette, motion instead of stock photography.
   ============================================================ */

:root{
  /* Brand palette — refined from the existing logo (teal → navy) */
  --navy-900:#0b1440;
  --navy-800:#101c56;
  --navy-700:#16226a;
  --blue-600:#0067b8;   /* Microsoft-style action blue */
  --blue-500:#0f7fd1;
  --teal-400:#19abcb;   /* brand accent, from logo */
  --teal-300:#4fc7e0;
  --cyan-200:#b7ecf7;

  --ink-900:#12141c;
  --ink-700:#3a3d4a;
  --ink-500:#5f6373;
  --ink-300:#8b90a0;

  --surface-0:#ffffff;
  --surface-1:#f6f8fb;
  --surface-2:#eef2f8;
  --border-1:#e3e7ef;
  --border-2:#d6dbe6;

  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:16px;

  --shadow-sm:0 1px 2px rgba(16,28,86,.06), 0 1px 1px rgba(16,28,86,.04);
  --shadow-md:0 8px 24px rgba(16,28,86,.10);
  --shadow-lg:0 20px 48px rgba(16,28,86,.14);

  --container:1240px;
  --font-heading:'Plus Jakarta Sans','Segoe UI',-apple-system,BlinkMacSystemFont,'Helvetica Neue',Arial,sans-serif;
  --font-ui:'Inter','Segoe UI',-apple-system,BlinkMacSystemFont,'Helvetica Neue',Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-ui);
  color:var(--ink-700);
  background:var(--surface-0);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
button{font-family:inherit;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
section{position:relative;}

h1,h2,h3,h4{
  font-family:var(--font-heading);
  color:var(--navy-900);
  font-weight:800;
  line-height:1.12;
  margin:0 0 18px;
  letter-spacing:-.02em;
}
h1{font-size:clamp(2.6rem,5vw,4.2rem);font-weight:800;}
h2{font-size:clamp(2rem,3.2vw,2.75rem);}
h3{font-size:1.4rem;font-weight:700;}
p {
    line-height: 1.7;
    color: var(--ink-500);
    margin: 0 0 14px;
}

.lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink-700);

    /* Keep the paragraph to exactly 2 lines */
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.8rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--blue-600);margin-bottom:16px;
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--teal-400);display:inline-block;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 26px;border-radius:4px;font-weight:600;font-size:.95rem;
  border:1px solid transparent;cursor:pointer;transition:all .2s ease;white-space:nowrap;
}
.btn-primary{background:var(--blue-600);color:#fff;}
.btn-primary:hover{background:var(--navy-800);transform:translateY(-1px);box-shadow:var(--shadow-md);}
.btn-outline{background:transparent;color:var(--navy-800);border-color:var(--border-2);}
.btn-outline:hover{border-color:var(--blue-600);color:var(--blue-600);}
.btn-ghost-light{background:var(--surface-2);color:var(--navy-800);border-color:var(--border-2);}
.btn-ghost-light:hover{background:var(--navy-800);color:#fff;border-color:var(--navy-800);}
.btn-lg{padding:15px 32px;font-size:1rem;}
.btn svg{width:16px;height:16px;flex:none;}

/* ---------- Header / Nav ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;
  transition:all .25s ease;
}
.site-header.is-scrolled{border-bottom-color:var(--border-1);box-shadow:0 2px 16px rgba(16,28,86,.06);}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;height:76px;}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--navy-900);min-width:0;flex:1 1 auto;overflow:hidden;}
.brand img{height:40px;width:auto;flex:none;}
.brand-name{font-size:1.05rem;line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:0;}
.brand-name small{display:block;font-size:.62rem;font-weight:600;letter-spacing:.16em;color:var(--teal-400);}
.nav-cta{flex:none;}
@media (max-width:640px){
  .brand-name small{display:none;}
}
@media (max-width:360px){
  .brand img{height:34px;}
  .brand-name{font-size:.92rem;}
}

.nav{display:flex;align-items:center;gap:0;}
.nav>li{position:relative;}
.nav>li>a{
  display:flex;align-items:center;gap:4px;padding:9px 9px;border-radius:6px;
  font-size:.84rem;font-weight:600;color:var(--ink-700);transition:color .2s,background .2s;white-space:nowrap;
}
.nav>li>a:hover,.nav>li.current>a{color:var(--blue-600);background:var(--surface-1);}
.nav>li>a svg{width:12px;height:12px;transition:transform .2s;}
.nav>li:hover>a svg{transform:rotate(180deg);}

.mega{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);
  min-width:560px;background:#fff;border:1px solid var(--border-1);border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);padding:22px;opacity:0;visibility:hidden;transition:all .2s ease;
  display:grid;grid-template-columns:1fr 1fr;gap:4px 22px;
}
.nav>li:hover .mega{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.mega-col-title{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--ink-300);margin:10px 0 6px;}
.mega a.mega-link{
  display:flex;align-items:center;gap:12px;padding:9px 10px;border-radius:8px;color:var(--ink-700);font-size:.9rem;font-weight:600;
}
.mega a.mega-link:hover{background:var(--surface-1);color:var(--blue-600);}
.mega a.mega-link .ic{width:34px;height:34px;flex:none;border-radius:8px;background:var(--surface-2);display:flex;align-items:center;justify-content:center;color:var(--blue-600);}
.mega a.mega-link .ic svg{width:18px;height:18px;}
.mega a.mega-link .sub{display:block;font-weight:400;font-size:.76rem;color:var(--ink-300);}

/* Compact flowing chip layout for the Products dropdown (scales to many items) */
.mega-flow{display:flex;flex-wrap:wrap;gap:6px;}
.mega-flow .mega-col-title{width:100%;margin:14px 0 8px;}
.mega-flow .mega-col-title:first-child{margin-top:0;}
.mega-flow a.mega-chip{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:7px;
  width:100px;padding:10px 6px;border-radius:8px;color:var(--ink-700);
}
.mega-flow a.mega-chip:hover{background:var(--surface-1);color:var(--blue-600);}
.mega-flow a.mega-chip .ic{width:32px;height:32px;flex:none;border-radius:8px;background:var(--surface-2);display:flex;align-items:center;justify-content:center;color:var(--blue-600);}
.mega-flow a.mega-chip .ic svg{width:16px;height:16px;}
.mega-flow a.mega-chip span.name{font-size:.74rem;font-weight:700;line-height:1.25;}

.nav-cta{display:flex;align-items:center;gap:10px;}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;}
.nav-toggle span{display:block;width:22px;height:2px;background:var(--navy-900);margin:5px 0;border-radius:2px;}

@media (max-width:1500px){
  .nav-cta .btn-outline{display:none;}
}

@media (max-width:1080px){
  .nav-toggle{display:block;}
  .nav-cta .btn-outline{display:none;}
  .nav{
    position:fixed;top:76px;left:0;right:0;bottom:0;background:#fff;flex-direction:column;align-items:stretch;
    padding:10px 24px 40px;gap:0;overflow-y:auto;transform:translateX(100%);transition:transform .25s ease;
  }
  .nav.open{transform:translateX(0);}
  .nav>li>a{padding:14px 4px;border-bottom:1px solid var(--border-1);border-radius:0;justify-content:space-between;}
  .mega{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;display:none;grid-template-columns:1fr;min-width:0;padding:4px 4px 10px;}
  .nav>li.mega-open .mega{display:grid;}
  .nav>li:hover .mega{display:none;}
  .nav>li.mega-open .mega{display:grid;}
}
.nav-cta-mobile{display:none;}
.nav-cta-mobile .btn{justify-content:center;}
@media (max-width:1080px){
  .nav>li.nav-cta-mobile>a.btn{border-bottom:none;border-radius:4px;justify-content:center;padding:15px 26px;}
}
@media (max-width:640px){
  .nav-cta .btn-primary{display:none;}
  .nav-cta-mobile{display:block;list-style:none;padding-top:6px;}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;padding:172px 0 100px;
  background:linear-gradient(160deg,#eef6fb 0%,#f7fbfe 45%,#ffffff 100%);
  color:var(--navy-900);overflow:hidden;
  border-bottom:1px solid var(--border-1);
}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;}
@media (max-width:900px){.hero-grid{grid-template-columns:1fr;gap:40px;}.hero-grid .net-graphic{max-width:320px;}}
.hero h1{color:var(--navy-900);}
.hero .lead{color:var(--ink-500);max-width:520px;}
.hero-eyebrow{color:var(--blue-600);}
.hero-eyebrow::before{background:var(--teal-400);}
.hero-actions{display:flex;gap:14px;margin-top:30px;flex-wrap:wrap;}
.hero-stats{display:flex;gap:34px;margin-top:52px;flex-wrap:wrap;}
.hero-stats div b{display:block;font-family:var(--font-heading);font-size:1.9rem;font-weight:800;color:var(--navy-900);}
.hero-stats div span{font-size:.8rem;color:var(--ink-300);font-weight:600;}
@media (max-width:560px){
  .hero{padding-top:150px;}
  .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-stats{gap:22px;}
}

/* animated network graphic used across hero sections */
.net-graphic{position:relative;width:100%;aspect-ratio:1/1;max-width:480px;margin:0 auto;}
.net-graphic svg{width:100%;height:100%;}
.net-node{animation:netPulse 3.4s ease-in-out infinite;}
.net-node.d1{animation-delay:.2s;} .net-node.d2{animation-delay:.9s;} .net-node.d3{animation-delay:1.5s;}
.net-node.d4{animation-delay:.5s;} .net-node.d5{animation-delay:1.9s;} .net-node.d6{animation-delay:1.1s;}
@keyframes netPulse{0%,100%{opacity:.55;r:4;}50%{opacity:1;r:6.5;}}
.net-line{stroke-dasharray:6 6;animation:netFlow 6s linear infinite;}
@keyframes netFlow{to{stroke-dashoffset:-120;}}
.net-ring{animation:netSpin 40s linear infinite;transform-origin:center;}
.net-ring.rev{animation-direction:reverse;animation-duration:60s;}
@keyframes netSpin{to{transform:rotate(360deg);}}

.hero-blob{position:absolute;border-radius:50%;filter:blur(70px);opacity:.28;pointer-events:none;}
.hero-blob.b1{width:420px;height:420px;background:var(--teal-400);top:-140px;right:-100px;}
.hero-blob.b2{width:340px;height:340px;background:var(--blue-500);bottom:-160px;left:8%;opacity:.16;}
.hero-centered {position: relative; text-align: center;padding-bottom: 105px;background:linear-gradient(180deg,#eef6fb 0%,#f7fbfe 42%,#ffffff 100% );}
.hero-center {position: relative;z-index: 5;
    width: 100%;    max-width: 980px;
    margin: 0 auto;    display: flex;    flex-direction: column;    align-items: center;    text-align: center;
}


/* ------------------------------------------------------------
   CENTERED LABEL
   Short horizontal lines on BOTH sides
   ------------------------------------------------------------ */

.hero-eyebrow-center {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 24px;

    color: var(--blue-600);
}


/* Hide the original single eyebrow line */
.hero-eyebrow-center::before {
    display: none;
}


/* Left + right lines */
.hero-eyebrow-center::before,
.hero-eyebrow-center::after {
    content: "";
    display: inline-block;

    width: 32px;
    height: 1px;

    background: var(--blue-500);

    opacity: .65;

    flex: 0 0 auto;
}


/* ------------------------------------------------------------
   MAIN HEADLINE
   ------------------------------------------------------------ */

.hero-centered h1 {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    color: var(--navy-900);

    font-family: var(--font-heading);

    font-size: clamp(2.9rem, 5.1vw, 4.5rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.035em;

    text-align: center;
}


/* ------------------------------------------------------------
   INTELLIGENT — BRAND BLUE GRADIENT
   ------------------------------------------------------------ */

.hero-centered .text-gradient {
    background:
        linear-gradient(
            90deg,
            var(--blue-600) 0%,
            var(--blue-500) 50%,
            var(--teal-400) 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* ------------------------------------------------------------
   CENTERED DESCRIPTION
   ------------------------------------------------------------ */

.hero-lead-center {
    width: 100%;
    max-width: 650px;

    margin: 26px auto 0;

    color: var(--ink-500);

    font-size: 1.08rem;

    line-height: 1.7;

    text-align: center;
}


/* ------------------------------------------------------------
   CENTERED BUTTONS
   ------------------------------------------------------------ */

.hero-actions-center {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 30px;
}


/* Keep buttons at natural size */
.hero-actions-center .btn {
    width: auto;
    flex: 0 0 auto;
}


/* ------------------------------------------------------------
   STATISTICS — ONE BALANCED ROW
   ------------------------------------------------------------ */

.hero-stats-row {
    width: 100%;
    max-width: 900px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 0;

    margin: 58px auto 0;

    flex-wrap: nowrap;
}


/* Each statistic */
.hero-stats-row > div:not(.stat-sep) {

    flex: 1 1 0;

    min-width: 0;

    padding: 0 26px;

    text-align: center;
}


/* Numbers */
.hero-stats-row > div:not(.stat-sep) b {

    display: block;

    font-family: var(--font-heading);

    font-size: 1.85rem;

    font-weight: 800;

    line-height: 1.15;

    color: var(--navy-900);
}


/* Labels */
.hero-stats-row > div:not(.stat-sep) span {

    display: block;

    margin-top: 7px;

    font-size: .78rem;

    line-height: 1.4;

    font-weight: 600;

    color: var(--ink-300);

    white-space: nowrap;
}


/* Thin separators */
.hero-stats-row .stat-sep {

    width: 1px;

    height: 38px;

    flex: 0 0 1px;

    background: var(--border-2);

    opacity: .8;
}


/* ------------------------------------------------------------
   SOFT BOTTOM ARC
   Not glossy / not excessive
   ------------------------------------------------------------ */

.hero-glow-arc {

    position: absolute;

    left: 50%;
    bottom: -270px;

    width: 1150px;
    height: 440px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(25, 171, 203, .12) 0%,
            rgba(0, 103, 184, .055) 42%,
            transparent 70%
        );

    pointer-events: none;

    filter: blur(2px);

    z-index: 1;
}


/* ------------------------------------------------------------
   FLOATING PARTICLES
   ------------------------------------------------------------ */

.hero-particle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    background: var(--teal-400);

    opacity: .4;

    animation:
        particleFloat 7s ease-in-out infinite;

    z-index: 2;
}


.hero-particle.p1 {
    width: 6px;
    height: 6px;

    top: 22%;
    left: 14%;

    animation-delay: 0s;
}


.hero-particle.p2 {
    width: 4px;
    height: 4px;

    top: 38%;
    left: 82%;

    background: var(--blue-500);

    animation-delay: 1.2s;
}


.hero-particle.p3 {
    width: 5px;
    height: 5px;

    top: 65%;
    left: 8%;

    animation-delay: 2.4s;
}


.hero-particle.p4 {
    width: 3px;
    height: 3px;

    top: 18%;
    left: 70%;

    background: var(--navy-700);

    animation-delay: .6s;
}


.hero-particle.p5 {
    width: 5px;
    height: 5px;

    top: 72%;
    left: 88%;

    animation-delay: 1.8s;
}


/* Subtle movement */
@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: .3;
    }

    50% {
        transform: translateY(-12px);
        opacity: .6;
    }
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .hero-center {
        max-width: 760px;
    }

    .hero-centered h1 {
        max-width: 720px;
    }

    .hero-stats-row {
        max-width: 760px;
    }

    .hero-stats-row > div:not(.stat-sep) {
        padding: 0 18px;
    }

    .hero-glow-arc {
        width: 950px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {

    .hero-centered {
        padding-bottom: 70px;
    }


    /* Label */
    .hero-eyebrow-center {
        gap: 8px;

        font-size: .66rem;

        letter-spacing: .11em;

        margin-bottom: 20px;
    }


    .hero-eyebrow-center::before,
    .hero-eyebrow-center::after {
        width: 20px;
    }


    /* Headline */
    .hero-centered h1 {

        max-width: 500px;

        font-size: 2.35rem;

        line-height: 1.1;

        letter-spacing: -.025em;
    }


    /* Paragraph */
    .hero-lead-center {

        max-width: 430px;

        margin-top: 20px;

        font-size: .98rem;

        line-height: 1.65;
    }


    /* Buttons */

    .hero-actions-center {

        flex-direction: column;

        align-items: center;

        width: 100%;

        margin-top: 26px;
    }


    .hero-actions-center .btn {

        width: min(100%, 300px);

        flex: none;
    }


    /* Statistics */

    .hero-stats-row {

        display: grid;

        grid-template-columns: 1fr 1fr;

        width: 100%;

        margin-top: 45px;

        row-gap: 24px;
    }


    .hero-stats-row > div:not(.stat-sep) {

        padding: 0 8px;
    }


    .hero-stats-row > div:not(.stat-sep) b {

        font-size: 1.55rem;
    }


    .hero-stats-row > div:not(.stat-sep) span {

        font-size: .68rem;

        white-space: normal;
    }


    /* Hide desktop separators on mobile */
    .hero-stats-row .stat-sep {

        display: none;
    }


    /* Reduce visual effects */
    .hero-particle {
        display: none;
    }


    .hero-glow-arc {

        width: 700px;

        height: 330px;

        bottom: -210px;

        opacity: .75;
    }
}
.sub-hero-logobox{background:#fff;display:table;margin:18px auto 28px;padding:22px 34px;border-radius:20px;box-shadow:0 20px 48px rgba(0,0,0,.25);}
.sub-hero-logobox img{height:56px;object-fit:contain;display:block;}
.sub-hero-status{display:table;margin:0 auto 22px;padding:8px 18px;border-radius:30px;font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;}
.sub-hero-status-inner{display:flex;align-items:center;gap:8px;}
.sub-hero-dot{width:8px;height:8px;border-radius:50%;display:inline-block;animation:netPulse 1.8s ease-in-out infinite;}
@media (max-width:640px){
  .sub-hero{padding:150px 0 70px;}
  .sub-hero-logobox{padding:16px 22px;margin:14px 0 20px;border-radius:16px;}
  .sub-hero-logobox img{height:42px;}
  .sub-hero-status{font-size:.68rem;padding:7px 14px;margin-bottom:18px;}
}

/* ---------- Sections / layout ---------- */
.section{padding:96px 0;}
.section-tight{padding:64px 0;}
.section-alt{background:var(--surface-1);}
.section-navy{background:linear-gradient(160deg,var(--surface-1),#eef4fb);border-top:1px solid var(--border-1);border-bottom:1px solid var(--border-1);}
.section-navy h2,.section-navy h3{color:var(--navy-900);}
.section-navy p{color:var(--ink-500);}
.section-head{max-width:680px;margin:0 0 48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}

.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:900px){.grid-2,.grid-3,.grid-4{grid-template-columns:repeat(2,1fr);}}
@media (max-width:620px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}}

/* ---------- Cards ---------- */
.card{
  background:#fff;border:1px solid var(--border-1);border-radius:var(--radius-md);
  padding:30px;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:transparent;}
.card .icon{
  width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--teal-400),var(--blue-600));color:#fff;margin-bottom:18px;
}
.card .icon svg{width:26px;height:26px;}
.tile-logo{width:52px;height:52px;border-radius:12px;object-fit:contain;background:#fff;padding:6px;border:1px solid var(--border-1);margin-bottom:18px;transition:transform .25s;}
.tile:hover .tile-logo{transform:scale(1.06);}
.product-logo-badge{
  display:table;background:#fff;border:1px solid var(--border-1);
  border-radius:16px;padding:12px 20px 12px 12px;box-shadow:var(--shadow-sm);margin-bottom:22px;
}
.product-logo-badge-inner{display:flex;align-items:center;gap:14px;}
.product-logo-badge img{width:52px;height:52px;object-fit:contain;}
.product-logo-badge span{font-weight:700;color:var(--navy-900);font-size:.95rem;}
.card h3{margin-bottom:8px;font-size:1.1rem;}
.card p{margin:0;font-size:.93rem;}

.feature-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:16px 0;
  border-bottom:1px solid var(--border-1);
}
.feature-row .ic{
  width:38px;
  height:38px;
  border-radius:9px;
  background:var(--surface-2);
  color:var(--blue-600);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
}
.feature-row .ic svg{
  width:19px;
  height:19px;
}
.feature-row h4{
  margin:0 0 4px;
  font-size:.98rem;
  color:var(--navy-900);
  font-weight:600;
}
.feature-row p{
  margin:0;
  font-size:.88rem;
}

/* Product hub tiles */
.tile{
  display:flex;
  flex-direction:column;
  height:100%;
  border-radius:var(--radius-md);
  border:1px solid var(--border-1);
  background:#fff;
  padding:26px;
  transition:all .25s ease;
  position:relative;
  overflow:hidden;
}
.tile::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg,var(--teal-400),var(--blue-600));
  opacity:0;
  transition:opacity .25s;
  z-index:0;
}
.tile:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}
.tile:hover::after{
  opacity:1;
}

.tile>*{
  position:relative;
  z-index:1;
}

.tile:hover .tile-tag,
.tile:hover h3,
.tile:hover p,
.tile:hover .tile-link{
  color:#fff !important;
}

.tile:hover .icon{
  background:rgba(255,255,255,.2);
}

.tile-tag{
  display:inline-block;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--teal-400);
  background:var(--surface-2);
  padding:4px 10px;
  border-radius:20px;
  margin-bottom:14px;
}

.tile-link{
  display:flex;
  align-items:center;
  gap:6px;

  /* KEY FIX */
  margin-top:auto;

  padding-top:14px;

  font-weight:700;
  font-size:.86rem;
  color:var(--blue-600);
  white-space:nowrap;
}
.tile-link svg{
  width:14px;
  height:14px;
  flex:none;
  transition:transform .2s;
}

.tile:hover .tile-link svg{
  transform:translateX(4px);
}
.tile-venture::after{display:none;}
.tile-venture:hover{transform:translateY(-5px);box-shadow:0 20px 48px rgba(0,0,0,.28);}

/* Stats strip */
.stats-strip{display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px;padding:44px 0;border-top:1px solid var(--border-1);border-bottom:1px solid var(--border-1);}
.stat b{display:block;font-size:2.1rem;font-weight:700;color:var(--navy-900);}
.stat span{font-size:.85rem;color:var(--ink-500);}

/* Logos marquee */
.logo-strip{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);}
.logo-track{display:flex;gap:56px;align-items:center;width:max-content;animation:scrollX 34s linear infinite;}
.logo-track img{height:34px;width:auto;filter:grayscale(1);opacity:.6;object-fit:contain;transition:opacity .2s,filter .2s;}
.logo-track img:hover{filter:none;opacity:1;}
@keyframes scrollX{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* Timeline / process */
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;counter-reset:step;}
@media (max-width:900px){.process{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.process{grid-template-columns:1fr;}}
.process li{counter-increment:step;position:relative;padding:26px 20px 20px;border:1px solid var(--border-1);border-radius:var(--radius-md);background:#fff;}
.process li::before{content:counter(step,decimal-leading-zero);font-size:1.6rem;font-weight:700;color:var(--teal-400);display:block;margin-bottom:10px;}

/* CTA banner */
.cta-banner{
  border-radius:var(--radius-lg);background:linear-gradient(120deg,var(--surface-1),#eef6fb);
  border:1px solid var(--border-1);
  padding:56px;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;color:var(--navy-900);position:relative;overflow:hidden;
}
.cta-banner::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--teal-400),var(--blue-600));}
.cta-banner h2{color:var(--navy-900);margin-bottom:6px;}
.cta-banner p{color:var(--ink-500);margin:0;}

/* Reveal on scroll */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.reveal.in{opacity:1;transform:none;}

/* Breadcrumb / page hero (inner pages) */
.page-hero{
  padding:162px 0 68px;color:var(--navy-900);position:relative;overflow:hidden;
  background:linear-gradient(160deg,#eef6fb 0%,#f7fbfe 45%,#ffffff 100%);
  border-bottom:1px solid var(--border-1);
}
.page-hero h1{color:var(--navy-900);margin-bottom:10px;}
.page-hero .lead{color:var(--ink-500);max-width:640px;}
.crumb{font-size:.82rem;color:var(--ink-300);margin-bottom:14px;font-weight:600;}
.crumb a{color:var(--ink-500);}
.crumb a:hover{color:var(--blue-600);}

/* Table-ish comparison for products */
.spec-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px 30px;}
@media (max-width:620px){.spec-list{grid-template-columns:1fr;}}
.spec-list li{display:flex;gap:10px;align-items:flex-start;font-size:.94rem;color:var(--ink-700);padding:6px 0;}
.spec-list li svg{width:18px;height:18px;color:var(--blue-600);flex:none;margin-top:2px;}

/* Accordion (industries / faq) */
.acc-item{border-bottom:1px solid var(--border-1);}
.acc-item button{width:100%;display:flex;justify-content:space-between;align-items:center;padding:20px 4px;background:none;border:none;text-align:left;font-size:1rem;font-weight:600;color:var(--navy-900);cursor:pointer;}
.acc-item svg{width:16px;height:16px;transition:transform .25s;flex:none;color:var(--blue-600);}
.acc-item.open svg{transform:rotate(45deg);}
.acc-body{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.acc-item.open .acc-body{max-height:400px;}
.acc-body p{padding:0 4px 20px;margin:0;}

/* Contact */
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:50px;}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;}}
.info-card{display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--border-1);}
.info-card:last-child{border-bottom:none;}
.info-card .ic{width:44px;height:44px;border-radius:10px;background:var(--surface-2);color:var(--blue-600);display:flex;align-items:center;justify-content:center;flex:none;}
.info-card .ic svg{width:20px;height:20px;}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
@media (max-width:620px){.form-grid{grid-template-columns:1fr;}}
.form-grid .full{grid-column:1/-1;}
.field label{display:block;font-size:.82rem;font-weight:600;color:var(--navy-900);margin-bottom:6px;}
.field input,.field textarea,.field select{
  width:100%;padding:12px 14px;border:1px solid var(--border-2);border-radius:8px;font-family:inherit;font-size:.94rem;
  background:#fff;transition:border-color .2s,box-shadow .2s;
}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--blue-600);box-shadow:0 0 0 3px rgba(0,103,184,.12);}
.field textarea{resize:vertical;min-height:120px;}
.map-embed{border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--border-1);height:260px;}
.map-embed iframe{width:100%;height:100%;border:0;}

/* Footer */
.site-footer{background:var(--navy-900);color:rgba(255,255,255,.65);padding:70px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:50px;border-bottom:1px solid rgba(255,255,255,.1);}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-grid h4{color:#fff;font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:18px;}
.footer-grid ul li{margin-bottom:10px;}
.footer-grid a:hover{color:#fff;}
.foot-brand{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
.foot-brand img{height:36px;}
.foot-brand span{color:#fff;font-weight:700;}
.social-row{display:flex;gap:10px;margin-top:18px;}
.social-row a{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:background .2s;}
.social-row a:hover{background:var(--teal-400);}
.social-row svg{width:16px;height:16px;}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;padding:24px 0;font-size:.82rem;flex-wrap:wrap;gap:10px;}
.foot-bottom a:hover{color:#fff;}

/* Back to top / whatsapp */
.float-actions{position:fixed;right:22px;bottom:22px;display:flex;flex-direction:column;gap:10px;z-index:900;}
.float-actions a{
  width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-md);
  color:#fff;transition:transform .2s;
}
.float-actions a:hover{transform:translateY(-3px);}
.fa-wa{background:#25D366;}
.fa-top{background:var(--navy-800);opacity:0;visibility:hidden;transition:all .2s;}
.fa-top.show{opacity:1;visibility:visible;}
.float-actions svg{width:22px;height:22px;}

/* misc */
.badge-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px;}
.badge{font-size:.76rem;font-weight:700;letter-spacing:.03em;background:var(--surface-2);color:var(--navy-800);padding:6px 12px;border-radius:20px;}

.platform-badge{
  display:flex;align-items:center;justify-content:center;gap:20px;background:#fff;border:1px solid var(--border-1);
  border-radius:20px;padding:22px 34px;max-width:560px;margin:0 auto 40px;box-shadow:var(--shadow-sm);
}
.platform-badge img{height:76px;width:auto;flex:none;}
.platform-badge-text{text-align:left;border-left:1px solid var(--border-1);padding-left:20px;min-width:0;}
.platform-badge-title{font-family:var(--font-heading);font-weight:800;font-size:1.15rem;color:var(--navy-900);line-height:1.25;}
@media (max-width:540px){
  .platform-badge{flex-direction:column;text-align:center;padding:26px 24px;gap:14px;max-width:340px;}
  .platform-badge img{height:56px;}
  .platform-badge-text{text-align:center;border-left:none;border-top:1px solid var(--border-1);padding-left:0;padding-top:14px;width:100%;}
  .platform-badge-title{font-size:1.05rem;}
}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
@media (max-width:900px){.two-col{grid-template-columns:1fr;}}
.divider-graphic{width:100%;}

/* ============================================================
   MOBILE POLISH — scoped entirely to small screens.
   Desktop/tablet layout above these breakpoints is untouched.
   ============================================================ */
@media (max-width:900px){
  .section{padding:64px 0;}
  .section-tight{padding:44px 0;}
  .section-head{margin-bottom:34px;}
  .page-hero{padding:130px 0 50px;}
  .stats-strip{padding:30px 0;gap:26px 20px;}
  .stat b{font-size:1.6rem;}
}
@media (max-width:640px){
  h1{font-size:2.1rem;}
  h2{font-size:1.6rem;}
  .lead{font-size:1.05rem;}
  .card{padding:22px;}
  .tile{padding:20px;}
  .process li{padding:20px 16px 16px;}
  .cta-banner{padding:30px 24px;text-align:center;justify-content:center;flex-direction:column;align-items:stretch;}
  .stats-strip{justify-content:space-between;text-align:left;}
  .stat{min-width:42%;}
  .product-logo-badge{padding:9px 16px 9px 9px;gap:10px;}
  .product-logo-badge img{width:40px;height:40px;}
  .product-logo-badge span{font-size:.85rem;}
  .footer-grid{text-align:left;}
  .foot-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
  .contact-grid .info-card{padding:16px 0;}
  .map-embed{height:200px;}
}

/* Desktop safety override: guarantee buttons never stretch above the
   mobile breakpoint, regardless of any other rule in the cascade. */
@media (min-width:561px){
  .hero-actions .btn,
  .cta-banner .btn,
  .cta-banner > a{
    width:auto!important;
    flex:0 1 auto!important;
  }
}
/* ============================================================
   INTERACTIVE SERVICES
   EXACT PROPOSED DESIGN
   ============================================================ */

.svc-interactive {
    --svc-gap: 10px;
    --svc-strip-width: 92px;
    --svc-height: 445px;
    --svc-radius: 16px;

    display: flex;
    align-items: stretch;

    width: 100%;
    height: var(--svc-height);
    min-height: var(--svc-height);
    max-height: var(--svc-height);

    gap: var(--svc-gap);

    overflow: hidden;

    margin-top: 34px;

    box-sizing: border-box;
}


/* ============================================================
   SERVICE ITEM
   ============================================================ */

.svc-item {
    position: relative;

    flex: 0 0 var(--svc-strip-width);

    width: var(--svc-strip-width);
    height: var(--svc-height);
    min-height: var(--svc-height);

    min-width: 0;

    border-radius: var(--svc-radius);

    overflow: hidden;

    transition:
        flex-basis .5s cubic-bezier(.4, 0, .2, 1),
        width .5s cubic-bezier(.4, 0, .2, 1);

    box-sizing: border-box;
}


/* ============================================================
   ACTIVE SERVICE
   ============================================================ */

.svc-item.active {
    flex: 1 1 auto;
    width: auto;
}


/* ============================================================
   COLLAPSED SERVICE CARD
   ============================================================ */

.svc-strip {
    position: relative;

    width: 100%;
    height: var(--svc-height);
    min-height: var(--svc-height);

    padding: 18px 8px;

    border: 1px solid #dce6f2;
    border-radius: var(--svc-radius);

    background: #ffffff;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    gap: 0;

    cursor: pointer;

    color: #071b42;

    box-shadow:
        0 3px 12px rgba(25, 65, 110, .035);

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

    box-sizing: border-box;

    overflow: hidden;
}


.svc-strip:hover {
    background: #f9fcff;

    border-color: #bcd7f5;

    box-shadow:
        0 7px 18px rgba(25, 65, 110, .07);
}

/* ============================================================
   COLLAPSED ICON
   ============================================================ */

.svc-strip-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 50%;

    background: #eaf4ff;

    color: #1675e5;

    display: flex;

    align-items: center;
    justify-content: center;

    /*
       Space between icon and
       vertical title.
    */
    margin-bottom: 15px;

    box-sizing: border-box;
}


.svc-strip-icon svg {
    width: 21px;
    height: 21px;

    display: block;
}

/* ============================================================
   VERTICAL SERVICE TITLE
   LARGER + READABLE
   ============================================================ */

.svc-strip-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);

    display: block;

    color: #071b42;

    font-family:
        "Plus Jakarta Sans",
        Inter,
        sans-serif;

    font-size: .80rem;

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -.01em;

    white-space: nowrap;

    text-align: center;

    height: 145px;
    flex: 0 0 145px;

    box-sizing: border-box;
}


.svc-strip-label::after {
    content: none !important;
    display: none !important;
}




/* ============================================================
   CLOSED CARD BLUE LINE
   VERTICAL
   BETWEEN TITLE AND DESCRIPTION
   ============================================================ */

.svc-strip::after {
    content: "";

    position: absolute;

    /*
       IMPORTANT:
       Do NOT use 190px here.
       190px was cutting through the title.

       This position places the line
       AFTER the complete title area.
    */
    top: 224px;

    left: 50%;

    width: 2px;
    height: 25px;

    background: #4d9cf5;

    border-radius: 10px;

    transform: translateX(-50%);

    pointer-events: none;

    z-index: 5;

    box-sizing: border-box;
}
/* ============================================================
   VERTICAL DESCRIPTION
   LARGER + MORE READABLE
   ============================================================ */

.svc-strip-description {
    writing-mode: vertical-rl;

    transform: rotate(180deg);

    display: block;

    width: auto;

    height: 170px;
    max-height: 170px;

    overflow: hidden;

    margin-top: 20px;

    color: #65738a;

    font-family:
        "Inter",
        "Plus Jakarta Sans",
        sans-serif;

    font-size: .68rem;

    line-height: 1.42;

    font-weight: 500;

    text-align: left;

    white-space: normal;

    letter-spacing: 0;

    flex: 0 0 170px;

    box-sizing: border-box;
}


.svc-strip-description::before {
    content: none !important;
    display: none !important;
}


/* ============================================================
   DESKTOP
   EXACT PROPOSED DESIGN ALIGNMENT
   ============================================================ */

@media (min-width: 821px) {

    .svc-strip {
        position: relative;
    }


    /* ========================================================
       ICON
       ======================================================== */

    .svc-strip-icon {
        width: 46px;
        height: 46px;

        flex: 0 0 46px;

        margin-bottom: 15px;
    }


    /* ========================================================
       TITLE
       ======================================================== */

    .svc-strip-label {

        height: 145px;

        flex: 0 0 145px;

        font-size: .74rem;

        line-height: 1.05;
    }


    /* ========================================================
       BLUE LINE
       ======================================================== */

    .svc-strip::after {

        top: 224px;

        width: 2px;

        height: 25px;
    }


    /* ========================================================
       DESCRIPTION
       ======================================================== */

    .svc-strip-description {

        height: 170px;

        max-height: 170px;

        flex: 0 0 170px;

        margin-top: 20px;

        font-size: .62rem;

        line-height: 1.42;
    }
}
/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) and (min-width: 821px) {

    .svc-interactive {
        --svc-strip-width: 82px;
        --svc-height: 410px;
    }


    .svc-expanded {
        padding: 34px;
    }


    /* ICON */

    .svc-strip-icon {

        width: 42px;
        height: 42px;

        flex: 0 0 42px;

        margin-bottom: 14px;
    }


    /* TITLE */

    .svc-strip-label {

        font-size: .68rem;

        height: 125px;

        flex: 0 0 125px;

        line-height: 1.05;
    }


    /* BLUE LINE */

    .svc-strip::after {

        top: 200px;

        width: 2px;

        height: 23px;
    }


    /* DESCRIPTION */

    .svc-strip-description {

        height: 155px;

        max-height: 155px;

        flex: 0 0 155px;

        margin-top: 20px;

        font-size: .56rem;

        line-height: 1.4;
    }
}
/* ============================================================
   ACTIVE CARD
   ============================================================ */

.svc-item.active .svc-strip {
    display: none;
}


/* ============================================================
   EXPANDED CARD
   ============================================================ */

.svc-expanded {
    position: relative;

    width: 100%;
    height: var(--svc-height);
    min-height: var(--svc-height);

    padding: 42px;

    overflow: hidden;

    border: 1px solid #dce6f2;

    border-radius: var(--svc-radius);

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 70%,
            #f7fbff 100%
        );

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    box-shadow:
        0 5px 20px rgba(25, 65, 110, .045);

    box-sizing: border-box;
}


/* ============================================================
   DECORATIVE BLUE CURVE
   ============================================================ */

.svc-expanded::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 270px;

    right: -90px;
    bottom: -175px;

    border-radius: 50%;

    background: #e7f2ff;

    pointer-events: none;
}


.svc-expanded::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 190px;

    right: -80px;
    bottom: -145px;

    border-radius: 50%;

    border-top: 1px solid #d2e5fb;

    pointer-events: none;
}


/* ============================================================
   ACTIVE ICON
   ============================================================ */

.svc-expanded-icon {
    position: relative;

    z-index: 2;

    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    border-radius: 50%;

    background: #eaf4ff;

    color: #1675e5;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}


.svc-expanded-icon svg {
    width: 27px;
    height: 27px;

    display: block;
}


/* ============================================================
   ACTIVE TITLE
   ============================================================ */

.svc-expanded h3 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #071b42;

    font-family:
        "Plus Jakarta Sans",
        Inter,
        sans-serif;

    font-size: 1.45rem;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.035em;
}


.svc-expanded-divider {
    position: relative;

    z-index: 2;

    width: 34px;
    height: 2px;

    margin: 13px 0 14px;

    border-radius: 5px;

    background: #378fe9;

    flex: 0 0 2px;
}


/* ============================================================
   ACTIVE DESCRIPTION
   ============================================================ */

.svc-expanded p {
    position: relative;

    z-index: 2;

    max-width: 390px;

    margin: 0;

    color: #52627b;

    font-family:
        "Inter",
        sans-serif;

    font-size: .88rem;

    line-height: 1.65;

    font-weight: 500;
}



/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 820px) {

    .svc-interactive {

        --svc-height: auto;

        display: flex;

        flex-direction: column;

        gap: 8px;

        width: 100%;

        height: auto;

        min-height: 0;

        max-height: none;

        overflow: visible;

        margin-top: 26px;
    }


    .svc-item,
    .svc-item.active {

        flex: none;

        width: 100%;

        height: auto;

        min-height: 0;
    }


    /* ========================================================
       MOBILE CARD
       ======================================================== */

    .svc-strip {

        width: 100%;

        height: auto;

        min-height: 66px;

        padding: 10px 14px;

        flex-direction: row;

        align-items: center;

        justify-content: flex-start;

        gap: 13px;

        border-radius: 13px;
    }


    /* ========================================================
       MOBILE — HIDE VERTICAL BLUE LINE
       ======================================================== */

    .svc-strip::after {
        display: none;
    }


    /* ========================================================
       MOBILE ICON
       ======================================================== */

    .svc-strip-icon {

        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        margin-bottom: 0;
    }


    /* ========================================================
       MOBILE TITLE
       ======================================================== */

    .svc-strip-label {

        writing-mode: horizontal-tb;

        transform: none;

        display: block;

        width: auto;

        height: auto;

        flex: 0 0 auto;

        font-size: .86rem;

        text-align: left;

        white-space: normal;
    }


    /* ========================================================
       MOBILE DESCRIPTION
       ======================================================== */

    .svc-strip-description {

        writing-mode: horizontal-tb;

        transform: none;

        display: block;

        width: auto;

        height: auto;

        max-width: none;

        max-height: none;

        margin: 0;

        font-size: .68rem;

        line-height: 1.45;

        text-align: left;

        white-space: normal;

        overflow: visible;

        flex: 1;
    }


    /* ========================================================
       ACTIVE MOBILE
       ======================================================== */

    .svc-item.active .svc-strip {

        display: flex;

        background:
            linear-gradient(
                135deg,
                #f5faff,
                #edf6ff
            );

        border-color: #cfe3fa;
    }


    .svc-item.active .svc-strip-icon {

        background: #1675e5;

        color: #ffffff;
    }


    /* ========================================================
       MOBILE EXPANDED
       ======================================================== */

    .svc-expanded {

        height: auto;

        min-height: 0;

        margin-top: -8px;

        padding: 25px 18px 27px;

        border-top-left-radius: 0;
        border-top-right-radius: 0;

        border-top: 0;

        box-shadow:
            0 5px 18px rgba(25, 65, 110, .04);
    }


    .svc-expanded::before {

        width: 280px;
        height: 200px;

        right: -150px;
        bottom: -130px;
    }


    .svc-expanded::after {
        display: none;
    }


    .svc-expanded-icon {
        display: none;
    }


    .svc-expanded h3 {
        font-size: 1.15rem;
    }


    .svc-expanded p {

        max-width: none;

        font-size: .86rem;

        line-height: 1.65;
    }


    /* OPEN STATE LINE REMAINS HORIZONTAL */

    .svc-expanded-divider {
        width: 34px;
        height: 2px;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .svc-strip {

        min-height: 62px;

        padding: 10px 12px;
    }


    .svc-strip-icon {

        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .svc-strip-label {
        font-size: .82rem;
    }


    .svc-strip-description {
        font-size: .64rem;
    }
}
/* Placeholder art card for products without a supplied photo yet */
.overview-image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
/* .product-placeholder-art{
  background:linear-gradient(150deg,var(--surface-1),#eef6fb);border:1px solid var(--border-1);
  border-radius:16px;padding:60px 30px;display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:18px;min-height:340px;text-align:center;
}
.product-placeholder-art img{max-width:140px;max-height:140px;object-fit:contain;}
.product-placeholder-art span{font-family:var(--font-heading);font-weight:800;font-size:1.1rem;color:var(--navy-900);} */
.product-placeholder-art {
    width: 100%;
    min-height: 340px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: none;
    border-radius: 0;

    text-align: center;

    overflow: hidden;
}
.product-placeholder-art img {
    width: 100%;
    max-width: 100%;

    height: auto;
    max-height: none;

    object-fit: contain;

    display: block;

    margin: 0;
}
.product-placeholder-art span {
    display: none;
}
.products-group-label{
  text-align:center;font-family:var(--font-heading);font-weight:800;font-size:1.05rem;color:var(--navy-900);
  margin-bottom:24px;position:relative;
}
.products-group-label::before,.products-group-label::after{
  content:"";display:inline-block;width:40px;height:2px;background:var(--teal-400);vertical-align:middle;margin:0 14px;
}

.partner-logo-box{
  height:52px;display:flex;align-items:center;margin-bottom:18px;
}
.partner-logo-box img{max-height:100%;max-width:150px;object-fit:contain;}

.product-logo-badge img.partner-badge-logo{width:auto;height:32px;max-width:130px;object-fit:contain;}

.partner-badge-pill{padding:6px 16px 6px 10px!important;display:inline-flex;align-items:center;gap:8px;}
.partner-badge-pill img{height:26px;width:auto;max-width:90px;object-fit:contain;}

/* Mobile app screen showcase gallery */
.screens-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
@media (max-width:900px){.screens-gallery{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.screens-gallery{grid-template-columns:1fr;max-width:280px;margin:0 auto;}}
.screen-card{text-align:center;}
.screen-card img{
  width:100%;border-radius:18px;box-shadow:var(--shadow-lg);border:1px solid var(--border-1);
  margin-bottom:16px;display:block;
}
.screen-card h4{font-size:.95rem;color:var(--navy-900);margin:0 0 6px;font-weight:700;}
.screen-card p{font-size:.84rem;margin:0;color:var(--ink-500);}

.screens-gallery.tablet-gallery{grid-template-columns:repeat(2,1fr);}
@media (max-width:820px){.screens-gallery.tablet-gallery{grid-template-columns:1fr;max-width:480px;margin:0 auto;}}
.screens-gallery.tablet-gallery .screen-card img{border-radius:12px;}

.mobile-hero-shot{max-width:300px;margin:0 auto;}
.mobile-hero-shot img{width:100%;border-radius:22px;box-shadow:var(--shadow-lg);border:1px solid var(--border-1);display:block;}
.mobile-hero-shot.tablet-shot{max-width:100%;}
.mobile-hero-shot.tablet-shot img{border-radius:14px;}

.mobile-app-thumb{
  height:180px;display:flex;align-items:flex-start;justify-content:center;overflow:hidden;
  margin-bottom:16px;border-radius:10px;background:rgba(255,255,255,.06);
}
.mobile-app-thumb img{width:auto;height:220px;max-width:none;border-radius:10px 10px 0 0;box-shadow:0 12px 30px rgba(0,0,0,.35);}
.section-navy .tile{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.12);}
.section-navy .tile h3{color:#fff;}
.section-navy .tile p{color:rgba(255,255,255,.65);}
.section-navy .tile .tile-tag{background:rgba(255,255,255,.1);color:var(--teal-300);}
.section-navy .tile .tile-link{color:var(--teal-300);}
.section-navy .tile:hover{border-color:var(--teal-400);}

/* Mobile app screenshot showcase */
.mobile-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;align-items:start;}
@media (max-width:900px){.mobile-gallery{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.mobile-gallery{grid-template-columns:1fr;max-width:320px;margin:0 auto;}}
.mobile-shot{text-align:center;}
.mobile-shot img{width:100%;height:auto;border-radius:16px;box-shadow:var(--shadow-lg);margin-bottom:16px;}
.mobile-shot h4{font-size:.98rem;margin-bottom:4px;color:var(--navy-900);}
.mobile-shot p{font-size:.85rem;margin:0;}
.mobile-tag{
  display:inline-flex;align-items:center;gap:6px;background:var(--surface-2);color:var(--blue-600);
  font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:5px 12px;
  border-radius:20px;margin-bottom:24px;
}
.app-card-mini{
  display:block;background:#fff;border:1px solid var(--border-1);border-radius:16px;padding:22px;
  transition:transform .25s ease,box-shadow .25s ease;text-align:center;
}
.app-card-mini:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.app-card-mini img{width:100%;height:240px;object-fit:cover;object-position:top;border-radius:10px;margin-bottom:14px;box-shadow:0 8px 20px rgba(16,28,86,.12);}
.app-card-mini h4{margin:0 0 6px;font-size:1rem;color:var(--navy-900);}
.app-card-mini p{margin:0;font-size:.85rem;}
/* ============================================================
   ALIF INFO TECH
   PLATFORM CAPABILITIES
   REFERENCE MATCHED — CLEAN WHITE VERSION
   ============================================================ */

.platform-capabilities-section {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 70px 0 85px;

    /* PURE WHITE BACKGROUND */
    background: #ffffff;
}


/* ============================================================
   MAIN 3-COLUMN LAYOUT
   ============================================================ */

.platform-capabilities-container {
    width: min(1480px, calc(100% - 120px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        360px
        minmax(560px, 1fr)
        360px;

    column-gap: 65px;

    align-items: start;
}


/* ============================================================
   LEFT + RIGHT FEATURE COLUMNS
   ============================================================ */

.platform-feature-column {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* ============================================================
   FEATURE CARD
   ============================================================ */

.platform-feature-card {
    position: relative;
    width: 100%;
    height: 86px;
    min-height: 86px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #dce8f7;
    border-radius: 15px;
    box-shadow:
        0 4px 14px rgba(25, 95, 175, 0.045);

    z-index: 3;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}
.platform-feature-column-left
.platform-feature-card::after {

    content: "";

    position: absolute;

    top: 50%;
    right: -65px;

    width: 65px;
    height: 1px;

    transform: translateY(-50%);

    background: linear-gradient(
        90deg,
        rgba(125, 181, 235, 0),
        rgba(125, 181, 235, 0.25)
    );

    pointer-events: none;
}


.platform-feature-column-right
.platform-feature-card::before {

    content: "";

    position: absolute;

    top: 50%;
    left: -65px;

    width: 65px;
    height: 1px;

    transform: translateY(-50%);

    background: linear-gradient(
        90deg,
        rgba(125, 181, 235, 0.25),
        rgba(125, 181, 235, 0)
    );

    pointer-events: none;
}


/* ============================================================
   CARD HOVER
   ============================================================ */

.platform-feature-card:hover {

    transform: translateY(-2px);

    border-color: #cbdff5;

    box-shadow:
        0 10px 24px rgba(25, 105, 205, 0.075);
}
.platform-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0869df;
    background: #f1f7ff;
    border: 1px solid #d3e5fb;
    border-radius: 13px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95);
}
.platform-feature-icon svg {
    width: 29px;
    height: 29px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
  }
.platform-feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #142c62;
    font-family:
        'Inter',
        'Segoe UI',
        Arial,
        sans-serif;
    font-size: 15px;
    line-height: 1.42;
    font-weight: 600;
    letter-spacing: -0.15px;
}
.platform-capabilities-center {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;
    position: relative;
    z-index: 2;
}
.platform-3d-image {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 405px;
    margin: -5px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    isolation: isolate;
}

.platform-3d-image::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 47%;
    width: 600px;
    height: 360px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse at center,
            rgba(100, 175, 245, 0.09) 0%,
            rgba(100, 175, 245, 0.04) 40%,
            rgba(100, 175, 245, 0) 72%
        );
    filter: blur(15px);
    z-index: -1;
    pointer-events: none;
}
.platform-3d-image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 72%;
    height: 65px;
    transform: translateX(-50%);
    background:
    radial-gradient(
      ellipse,
            rgba(50, 135, 225, 0.10),
            rgba(50, 135, 225, 0)
    );
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}
.platform-3d-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 620px;
    height: 405px;
    object-fit: contain;
    background: transparent;
    border: none;
    box-shadow: none;
    filter:
        drop-shadow(
            0 18px 28px rgba(35, 105, 210, 0.06)
        );
}
.platform-capabilities-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: -3px auto 0;
    text-align: center;
    z-index: 5;
}
.platform-capabilities-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #126edb;
    font-family:
        'Inter',
        'Segoe UI',
        sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 5;
    letter-spacing: .085em;
    text-transform: uppercase;
}
.platform-capabilities-eyebrow span {
    width: 22px;
    height: 2px;
    display: inline-block;
    border-radius: 10px;
    background: #176bd8;
  }
.platform-capabilities-content h2 {
    margin: 0;
    color: #10285c;
    font-family:
        'Plus Jakarta Sans',
        'Segoe UI',
        Arial,
        sans-serif;
    font-size: 42px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -1.7px;
}
.platform-capabilities-content p {
    width: 100%;
    max-width: 475px;
    margin: 18px auto 0;
    color: #687a9f;
    font-family:
        'Inter',
        'Segoe UI',
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.62;
    font-weight: 400;
    letter-spacing: -0.05px;
  }
@media (min-width: 1600px) {
    .platform-capabilities-section {

        padding-top: 72px;
        padding-bottom: 90px;
    }
    .platform-capabilities-container {

        width: min(
            1500px,
            calc(100% - 100px)
        );

        grid-template-columns:
            360px
            minmax(600px, 1fr)
            360px;

        column-gap: 70px;
    }
    .platform-feature-column {

        gap: 22px;
    }
    .platform-feature-card {

        height: 88px;
        min-height: 88px;

        padding: 10px 22px;

        gap: 20px;
    }

    .platform-3d-image,
    .platform-3d-image img {

        height: 420px;
    }

    .platform-capabilities-content h2 {

        font-size: 44px;
    }
  }
@media (max-width: 1599px) {
    .platform-capabilities-container {
        width: calc(100% - 70px);
        grid-template-columns:
            340px
            minmax(520px, 1fr)
            340px;
        column-gap: 60px;
    }
    .platform-feature-column {
        gap: 19px;
    }
    .platform-feature-card {
        height: 84px;
        min-height: 84px;
        padding: 10px 20px;
        gap: 18px;
      }
    .platform-feature-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        flex-basis: 56px;
    }
    .platform-feature-icon svg {
        width: 28px;
        height: 28px;
    }
    .platform-3d-image,
    .platform-3d-image img {
        height: 400px;
    }
    .platform-capabilities-content h2 {
        font-size: 41px;
    }
    .platform-feature-column-left
    .platform-feature-card::after {
        right: -60px;
        width: 60px;
    }
    .platform-feature-column-right
    .platform-feature-card::before {
        left: -60px;
        width: 60px;
    }
  }
@media (max-width: 1399px) {
    .platform-capabilities-container {
        width: calc(100% - 50px);
        grid-template-columns:
            310px
            minmax(450px, 1fr)
            310px;
        column-gap: 42px;
    }
    .platform-feature-column {
        gap: 16px;
    }
    .platform-feature-card {
        height: 80px;
        min-height: 80px;
        padding: 9px 16px;
        gap: 14px;
    }
    .platform-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        flex-basis: 52px;
        border-radius: 12px;
    }
    .platform-feature-icon svg {
        width: 26px;
        height: 26px;
    }
    .platform-feature-text {
        font-size: 13px;
    }
    .platform-3d-image,
    .platform-3d-image img {
        height: 365px;
    }
    .platform-capabilities-content h2 {
        font-size: 37px;
    }
    .platform-capabilities-content p {
        font-size: 14px;
    }
    .platform-feature-column-left
    .platform-feature-card::after {
        right: -42px;
        width: 42px;
    }
    .platform-feature-column-right
    .platform-feature-card::before {
        left: -42px;
        width: 42px;
    }
  }
@media (max-width: 1050px) {
    .platform-capabilities-section {
        padding: 60px 0;
    }
    .platform-capabilities-container {
        width: calc(100% - 40px);
        grid-template-columns: 1fr 1fr;
        column-gap: 22px;
        row-gap: 28px;
    }
    .platform-capabilities-center {
        grid-column: 1 / -1;
        grid-row: 1;
        padding-top: 0;
    }
    .platform-feature-column-left {
        grid-column: 1;
        grid-row: 2;
    }
    .platform-feature-column-right {
        grid-column: 2;
        grid-row: 2;
    }
    .platform-feature-column-left
    .platform-feature-card::after,
    .platform-feature-column-right
    .platform-feature-card::before {
        display: none;
    }
    .platform-3d-image {
        height: 390px;
        max-width: 650px;
    }
    .platform-3d-image img {
        height: 390px;
    }
    .platform-capabilities-content h2 {
        font-size: 35px;
    }
  }
@media (max-width: 700px) {
    .platform-capabilities-section {
        padding: 45px 0 60px;
        background: #ffffff;
    }
    .platform-capabilities-container {
        width: calc(100% - 24px);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .platform-capabilities-center {
        order: 1;
        width: 100%;
    }
    .platform-feature-column-left {
        order: 2;
    }
    .platform-feature-column-right {
        order: 3;
    }
    .platform-feature-column {
        gap: 11px;
    }
    .platform-3d-image {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .platform-3d-image img {
        width: 100%;
        height: auto;
        max-width: 650px;
    }
    .platform-3d-image::before {
        width: 110%;
        height: 90%;
        filter: blur(10px);
    }
    .platform-capabilities-content {
        margin-top: 0;
    }
    .platform-capabilities-content h2 {
        font-size: 29px;
        line-height: 1.2;
        letter-spacing: -.8px;
    }
    .platform-capabilities-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 14px;
    }
    .platform-capabilities-eyebrow {
        font-size: 11px;
        letter-spacing: .07em;
    }
    .platform-feature-card {
        height: 74px;
        min-height: 74px;
        padding: 9px 12px;
        gap: 12px;
        border-radius: 14px;
        background: #ffffff;
    }
    .platform-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        flex-basis: 48px;
        border-radius: 12px;
    }
    .platform-feature-icon svg {
        width: 24px;
        height: 24px;
    }
    .platform-feature-text {
        font-size: 13px;
    }
    .platform-feature-column-left
    .platform-feature-card::after,
    .platform-feature-column-right
    .platform-feature-card::before {
        display: none;
    }
  }
@media (max-width: 420px) {
    .platform-capabilities-container {
        width: calc(100% - 18px);
    }
    .platform-capabilities-content h2 {
        font-size: 25px;
    }
    .platform-feature-card {
        height: 68px;
        min-height: 68px;
    }
    .platform-feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        flex-basis: 44px;
    }
    .platform-feature-icon svg {
        width: 22px;
        height: 22px;
    }
    .platform-feature-text {
        font-size: 12px;
    }
  }

/* =========================================================
   ABOUT PAGE — STORY SECTION
   Exact wide-card + globe composition
   ========================================================= */

.story-section {
    position: relative;
    width: 100%;
    padding: 34px 0 60px;
    overflow: hidden;
    background: #ffffff;
}

/* Override the normal 1240px site container only here */
.story-section > .container {
    width: 100%;
    max-width: 1500px;
    padding: 0 18px;
    margin: 0 auto;
}

/* Main Story Card */
.story-card {
    position: relative;
    width: 100%;
    height: 665px;
    overflow: hidden;

    border-radius: 42px;

    background:
        radial-gradient(
            circle at 73% 48%,
            rgba(102, 184, 255, 0.25),
            transparent 34%
        ),
        linear-gradient(
            115deg,
            #ffffff 0%,
            #f9fcff 43%,
            #edf7ff 100%
        );

    border: 1px solid rgba(215, 232, 248, 0.8);

    box-shadow:
        0 18px 55px rgba(28, 105, 170, 0.10);

    isolation: isolate;
}

/* Soft blue glow behind globe */
.story-card::after {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;

    right: -60px;
    top: -35px;

    border-radius: 50%;

    background: rgba(73, 163, 255, 0.14);

    filter: blur(65px);

    z-index: 0;
    pointer-events: none;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.story-content {
    position: absolute;

    left: 10%;
    top: 82px;

    width: 510px;

    z-index: 10;
}

.story-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;

    color: #176fb9;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 15px;
    font-weight: 700;
}

.story-eyebrow .eyebrow-line {
    width: 22px;
    height: 2px;

    display: block;

    background: #1688cf;

    border-radius: 10px;
}

.story-title {
    margin: 0;

    color: #10256f;

    font-family:
        "Plus Jakarta Sans",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 45px;
    line-height: 1.23;

    font-weight: 800;

    letter-spacing: -1.8px;
}

.story-title .title-line {
    display: block;
    white-space: nowrap;
}

.story-title .blue-dot {
    color: #167ed0;
}

.story-paragraph {
    width: 500px;

    margin: 27px 0 0;

    color: #273d61;

    font-family:
        "Inter",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 15px;
    line-height: 1.72;
}

.story-paragraph.second-paragraph {
    margin-top: 24px;
}


/* =========================================================
   GLOBE
   ========================================================= */

.story-globe-wrapper {
    position: absolute;

    right: -20px;
    top: 0;

    width: 700px;
    height: 665px;

    overflow: hidden;

    z-index: 3;

    pointer-events: none;
}

.story-globe {
    position: absolute;

    /*
       Source image is 1280 × 1280.
       Display it around 730px.
    */
    width: 735px;
    height: 735px;

    max-width: none;

    object-fit: contain;

    right: -5px;
    top: -28px;

    display: block;

    filter:
        drop-shadow(
            0 0 15px rgba(0, 132, 255, 0.38)
        )
        drop-shadow(
            0 0 35px rgba(0, 132, 255, 0.18)
        );
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1600px) {

    .story-section > .container {
        max-width: 1840px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .story-card {
        height: 700px;
        border-radius: 44px;
    }

    .story-content {
        left: 9.5%;
        top: 105px;
        width: 535px;
    }

    .story-title {
        font-size: 48px;
    }

    .story-paragraph {
        width: 520px;
        font-size: 15px;
    }

    .story-globe-wrapper {
        width: 760px;
        height: 700px;
        right: 10px;
    }

    .story-globe {
        width: 770px;
        height: 770px;
        right: -5px;
        top: -35px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .story-card {
        height: 620px;
    }

    .story-content {
        left: 6%;
        top: 70px;
        width: 450px;
    }

    .story-title {
        font-size: 38px;
    }

    .story-paragraph {
        width: 440px;
        font-size: 14px;
    }

    .story-globe-wrapper {
        width: 560px;
        height: 620px;
        right: -35px;
    }

    .story-globe {
        width: 620px;
        height: 620px;
        top: 5px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .story-section {
        padding: 20px 0 40px;
    }

    .story-section > .container {
        padding: 0 12px;
    }

    .story-card {
        height: auto;
        min-height: 0;

        padding: 42px 25px 0;

        border-radius: 28px;

        display: flex;
        flex-direction: column;
    }

    .story-content {
        position: relative;

        left: auto;
        top: auto;

        width: 100%;

        z-index: 10;
    }

    .story-eyebrow {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .story-title {
        font-size: 30px;
        line-height: 1.2;

        letter-spacing: -1px;
    }

    .story-title .title-line {
        white-space: normal;
    }

    .story-paragraph {
        width: 100%;

        margin-top: 20px;

        font-size: 14px;
        line-height: 1.65;
    }

    .story-paragraph.second-paragraph {
        margin-top: 18px;
    }

    .story-globe-wrapper {
        position: relative;

        width: 100%;
        height: 390px;

        right: auto;
        top: auto;

        margin-top: 15px;
    }

    .story-globe {
        width: 430px;
        height: 430px;

        max-width: none;

        left: 50%;
        right: auto;

        transform: translateX(-50%);

        top: -5px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .story-card {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 24px;
    }

    .story-title {
        font-size: 27px;
    }

    .story-globe-wrapper {
        height: 320px;
    }

    .story-globe {
        width: 360px;
        height: 360px;
    }
}