:root{
  --navy:#013186; --navy-hover:#012270; --blue:#006fe0; --blue-hover:#0059b3;
  --deep:#061a4a; --sky:#7cbaff;
  --ink:#000; --body:#475467; --muted:#5b6472;
  --bg:#fff; --tint:#f5f9ff; --tint-2:#eaf1ff; --neutral:#f8fafc;
  --line:#e7eaf0; --line-brand:rgba(1,49,134,.07);
  --sh-card:0 18px 50px rgba(16,24,40,.08);
  --sh-brand:0 20px 50px rgba(1,49,134,.25);
  --ease:200ms;
  --g-social:linear-gradient(135deg,#1E73FF,#0A3D98);
  --g-video:linear-gradient(135deg,#7C4DFF,#4A1FB8);
  --g-web:linear-gradient(135deg,#00A9A5,#007D7A);
  --g-orange:linear-gradient(135deg,#f59e0b,#d9480f);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--body);
  background:var(--bg);
  font-size:15px;
  line-height:1.7;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
p{margin:0 0 18px}
h1,h2,h3{margin:0;color:var(--ink);letter-spacing:-.02em}
h1{font-size:clamp(32px,4.4vw,56px);font-weight:600;line-height:1.15}
h2{font-size:clamp(28px,3.6vw,46px);font-weight:600;line-height:1.15}
h3{font-size:clamp(18px,1.6vw,21px);font-weight:600;line-height:1.3}
strong{color:var(--ink);font-weight:600}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line-brand);
}
.header-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  font-size:20px;
  font-weight:700;
  letter-spacing:-.02em;
}
.brand-logo{
  width:40px;
  height:40px;
  object-fit:contain;
  flex:0 0 auto;
}
.brand-mark{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:9999px;
  color:#fff;
  background:var(--g-social);
  box-shadow:0 8px 18px -6px rgba(1,49,134,.45);
  font-size:17px;
}
.nav{display:none;align-items:center;gap:28px}
.nav a{
  color:#111;
  font-size:15px;
  font-weight:500;
  transition:color var(--ease);
}
.nav a:hover,.nav a[aria-current="page"]{color:var(--navy)}
.header-cta{display:none}
.menu-toggle{
  border:0;
  background:var(--tint-2);
  color:var(--navy);
  width:42px;
  height:42px;
  border-radius:9999px;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}
.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
}
.mobile-nav.open{display:block}
.mobile-nav a{
  display:block;
  padding:15px 20px;
  border-bottom:1px solid var(--line);
  color:#111;
  font-size:16px;
  font-weight:600;
}

.container{
  max-width:1440px;
  margin:0 auto;
  padding:0 20px;
}
.container.narrow{max-width:900px}
.section{padding:60px 0}
.section.tint{background:var(--tint)}
.section-head{
  max-width:820px;
  margin:0 auto 40px;
  text-align:center;
}
.section-head p,.lead{
  margin-top:16px;
  font-size:clamp(16px,1.5vw,20px);
  line-height:1.7;
}
.accent{color:var(--blue)}
.row{
  display:flex;
  flex-direction:column;
  gap:40px;
  align-items:center;
}
.col-copy{flex:1.05;min-width:0}
.col-visual{flex:1;width:100%;min-width:0}
.marketing-text{font-size:clamp(16px,1.3vw,17px);line-height:1.85}
.section-note{padding-top:32px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 26px;
  border-radius:9999px;
  border:1px solid transparent;
  font-size:16px;
  font-weight:500;
  gap:10px;
  cursor:pointer;
  transition:background-color var(--ease),color var(--ease),border-color var(--ease),transform var(--ease),box-shadow var(--ease);
}
.btn-primary{background:var(--blue);color:#fff;box-shadow:0 10px 28px rgba(0,111,224,.28)}
.btn-primary:hover{background:var(--blue-hover)}
.btn-outline{background:#fff;color:var(--navy);border-color:#cfe0ff}
.btn-outline:hover{border-color:var(--navy);transform:translateY(-1px)}
.btn-white{background:#fff;color:var(--deep);font-weight:600;box-shadow:0 18px 46px rgba(0,0,0,.18)}
.btn-lg{min-height:56px}
.btn-sm{min-height:42px;padding:0 18px;font-size:14px}
.btn .arrow{transition:transform var(--ease)}
.btn:hover .arrow{transform:translateX(3px)}
.btn:focus-visible,.menu-toggle:focus-visible{outline:3px solid var(--sky);outline-offset:3px}
.cta-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.cta-note{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
}
.tick{
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  border-radius:9999px;
  background:#dcfce7;
  color:#16a34a;
  font-weight:800;
  font-size:12px;
}

.hero{
  position:relative;
  overflow:hidden;
  background:radial-gradient(60% 60% at 90% 10%,#eaf1ff 0%,transparent 70%);
}
.hero-subhead{
  margin-top:16px;
  color:#000;
  font-size:18px;
  font-weight:600;
  line-height:1.5;
}
.hero-image{
  width:100%;
  height:auto;
  border-radius:22px;
  box-shadow:0 30px 80px -24px rgba(1,49,134,.3);
}
.about-hero-title{
  margin-bottom:28px;
}
.about-hero-image{
  margin-top:34px;
}
.dashboard-mock{
  border:1px solid rgba(1,49,134,.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 30px 80px -24px rgba(1,49,134,.3);
  overflow:hidden;
}
.browser-bar{
  display:flex;
  gap:7px;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
}
.browser-bar span{
  width:10px;
  height:10px;
  border-radius:9999px;
  background:var(--line);
}
.mock-board{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:18px;
}
.mock-col{
  min-height:190px;
  border-radius:18px;
  background:var(--neutral);
  padding:14px;
}
.mock-col h3{
  margin-bottom:14px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.mock-card{
  height:72px;
  margin-bottom:12px;
  border-radius:14px;
  background:var(--g-social);
  box-shadow:0 12px 26px rgba(1,49,134,.16);
}
.mock-card.video{background:var(--g-video)}
.mock-card.web{background:var(--g-web)}
.mock-card.orange{background:var(--g-orange)}

.grid{
  display:grid;
  gap:22px;
}
.center-last-card .card:last-child:nth-child(3n + 1){
  grid-column:2;
}
.center-last-card-four .card:last-child:nth-child(4){
  grid-column:2;
}
.card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:26px;
  transition:transform var(--ease),box-shadow var(--ease);
}
.card:hover{transform:translateY(-3px);box-shadow:var(--sh-card)}
.icon-tile,.number-tile{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  margin-bottom:20px;
  border-radius:14px;
  color:#fff;
  background:var(--g-social);
  box-shadow:0 8px 18px -6px rgba(1,49,134,.45);
  font-weight:700;
  font-size:22px;
  line-height:1;
}
.card:nth-child(2) .icon-tile{background:var(--g-video)}
.card:nth-child(3) .icon-tile{background:var(--g-web)}
.card:nth-child(4) .icon-tile{background:var(--g-orange)}
.card p{margin-top:10px;margin-bottom:0}

.pricing-card .price{
  margin:8px 0 18px;
  color:var(--ink);
  font-size:44px;
  font-weight:700;
  letter-spacing:-.03em;
}
.pricing-card.featured{
  color:rgba(255,255,255,.78);
  background:radial-gradient(120% 130% at 22% 12%,#2870d8 0%,#1146a5 42%,#061a4a 100%);
  box-shadow:var(--sh-brand);
}
.pricing-card.featured h3,.pricing-card.featured .price,.pricing-card.featured strong{color:#fff}
.pricing-card ul{padding:0;margin:18px 0 24px;list-style:none}
.pricing-card li{padding:9px 0;border-top:1px solid rgba(231,234,240,.7)}
.pricing-table-wrap{
  width:100%;
  overflow-x:auto;
  border:1px solid rgba(207,224,255,.9);
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 50px rgba(16,24,40,.06);
}
.pricing-table{
  width:100%;
  border-collapse:collapse;
  color:var(--body);
  font-size:15px;
}
.pricing-table caption{
  padding:18px 22px;
  color:var(--ink);
  font-size:18px;
  font-weight:700;
  text-align:left;
}
.pricing-table th{
  padding:16px 18px;
  background:var(--navy);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-align:left;
  text-transform:uppercase;
}
.pricing-table td{
  padding:18px;
  border-top:1px solid var(--line);
  vertical-align:top;
}
.pricing-table tbody tr:nth-child(even){
  background:var(--neutral);
}
.pricing-table strong{
  color:var(--navy);
}

.dark-cta{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  padding:42px 24px;
  color:rgba(255,255,255,.78);
  background:radial-gradient(120% 130% at 22% 12%,#2870d8 0%,#1146a5 42%,#061a4a 100%);
  box-shadow:0 44px 100px -32px rgba(6,26,74,.6);
}
.dark-cta h2{color:#fff}
.dark-cta .accent{color:var(--sky)}
.dark-cta p{max-width:720px;margin-top:16px}
.dark-cta.centered{
  text-align:center;
}
.dark-cta.centered p{
  margin-left:auto;
  margin-right:auto;
}
.dark-cta.centered .cta-row{
  justify-content:center;
}

.footer{
  border-top:1px solid var(--line-brand);
  padding:34px 0;
}
.footer-top{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:flex-start;
  justify-content:space-between;
}
.footer-links{display:flex;gap:20px;flex-wrap:wrap}
.footer-links a{color:#111;font-weight:500}
.copyright{
  margin-top:24px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

.blog-hero{text-align:center;background:radial-gradient(60% 60% at 50% 0%,#eaf1ff 0%,transparent 70%)}
.blog-grid{grid-template-columns:1fr}
.blog-card{
  overflow:hidden;
  padding:0;
  border-radius:22px;
}
.thumb{
  aspect-ratio:16/10;
  background:linear-gradient(135deg,#eaf1ff,#f8fafc);
  overflow:hidden;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.thumb-art{
  width:100%;
  height:100%;
  background:
    radial-gradient(circle at 22% 20%,rgba(0,111,224,.24),transparent 24%),
    radial-gradient(circle at 78% 74%,rgba(1,49,134,.22),transparent 25%),
    linear-gradient(135deg,#f5f9ff,#dfeaff);
  transition:transform var(--ease);
}
.blog-card:hover .thumb-art{transform:scale(1.04)}
.blog-card-body{padding:24px}
.blog-card h2{font-size:20px;line-height:1.25}
.read-link{color:var(--blue);font-weight:600}
.read-link strong{color:inherit}
.blog-grid.one-blog-grid{
  grid-template-columns:minmax(0,420px);
  justify-content:start;
  max-width:100%;
  margin:0 auto;
}

.article{
  max-width:820px;
  margin:0 auto;
}
.breadcrumb{
  margin-bottom:18px;
  color:var(--muted);
  font-size:14px;
}
.article h1{
  color:var(--navy);
  font-size:clamp(28px,3.4vw,42px);
  font-weight:700;
}
.article-hero-image{
  margin:28px 0 34px;
}
.article .lead{color:#000}
.article-body{
  font-size:17px;
  line-height:1.85;
}
.article-body h2{
  margin-top:52px;
  margin-bottom:14px;
  font-size:clamp(24px,2.6vw,32px);
}
.article-body h3{
  margin-top:26px;
  margin-bottom:8px;
  color:var(--ink);
  font-size:20px;
}
.article-body ul{
  margin:0 0 24px;
  padding-left:22px;
}
.article-body li{
  margin:8px 0;
}
.article-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.callout{
  margin:28px 0;
  padding:18px 20px;
  border-left:3px solid var(--blue);
  border-radius:0 12px 12px 0;
  background:var(--tint);
  color:#000;
  font-weight:500;
}
.faq{
  margin-top:42px;
  border:1px solid #d5dae3;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
}
.faq details{border-bottom:1px solid #ececec}
.faq details:last-child{border-bottom:0}
.faq summary{
  display:flex;
  gap:16px;
  align-items:center;
  padding:20px;
  color:#000;
  cursor:pointer;
  font-weight:600;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq-num{color:var(--muted);font-size:13px}
.faq p{padding:0 20px 20px 54px;margin:0}

@media (min-width:560px){
  .mock-board{grid-template-columns:repeat(4,1fr)}
}
@media (min-width:640px){
  .steps-grid{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:700px){
  .blog-grid{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:768px){
  .container{padding:0 40px}
  .section{padding:80px 0}
  .header-inner{min-height:72px}
  .nav,.header-cta{display:flex}
  .menu-toggle,.mobile-nav{display:none}
  .footer-top{flex-direction:row;align-items:center}
}
@media (min-width:900px){
  .services-grid{grid-template-columns:repeat(3,1fr)}
}
@media (min-width:960px){
  .pricing-grid{grid-template-columns:repeat(3,1fr)}
}
@media (min-width:1024px){
  .container{padding:0 60px}
  .row{flex-direction:row;gap:60px}
  #pricing .row{align-items:flex-start}
}
@media (min-width:1100px){
  .steps-grid{grid-template-columns:repeat(4,1fr)}
  .blog-grid{grid-template-columns:repeat(3,1fr)}
}
@media (min-width:1560px){
  .container{padding:0}
}
@media (max-width:449px){
  .btn,.cta-row{width:100%}
  .brand-mark{width:34px;height:34px;font-size:15px}
  .brand-logo{width:34px;height:34px}
}
@media (max-width:899px){
  .center-last-card .card:last-child:nth-child(3n + 1),
  .center-last-card-four .card:last-child:nth-child(4){
    grid-column:auto;
  }
}
@media (max-width:767px){
  .brand{font-size:18px}
  .hero .row{align-items:flex-start}
  .pricing-table-wrap{
    overflow:visible;
    border:0;
    background:transparent;
    box-shadow:none;
  }
  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td{
    display:block;
    width:100%;
  }
  .pricing-table caption{
    display:block;
    width:100%;
    padding:0 0 14px;
  }
  .pricing-table thead{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
  }
  .pricing-table tr{
    margin-bottom:16px;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(16,24,40,.05);
  }
  .pricing-table tbody tr:nth-child(even){
    background:#fff;
  }
  .pricing-table td{
    display:grid;
    grid-template-columns:minmax(110px,38%) 1fr;
    gap:12px;
    padding:14px 16px;
    border-top:1px solid var(--line);
  }
  .pricing-table td:first-child{
    border-top:0;
    background:var(--navy);
  }
  .pricing-table td:first-child strong{
    color:#fff;
  }
  .pricing-table td::before{
    content:attr(data-label);
    color:var(--muted);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
  }
  .pricing-table td:first-child::before{
    color:rgba(255,255,255,.75);
  }
}
@media (max-width:1023px){
  .header-cta{display:none!important}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}
