/* =========================================
   Bareeq Digital Services
   Professional Landing Page Styles
========================================= */

:root{
  --ds-navy:#0b1c2d;
  --ds-navy-2:#10263a;
  --ds-navy-3:#16324b;

  --ds-green:#0f8f5b;
  --ds-green-2:#19a36a;

  --ds-gold:#d4af37;
  --ds-gold-2:#f0d77a;

  --ds-text:#f5f7fa;
  --ds-text-soft:#c8d3dd;
  --ds-muted:#90a2b5;

  --ds-border:rgba(212,175,55,.26);
  --ds-border-strong:rgba(212,175,55,.42);
  --ds-shadow:0 24px 60px rgba(0,0,0,.34);
  --ds-shadow-soft:0 18px 38px rgba(0,0,0,.22);

  --ds-radius-xl:28px;
  --ds-radius-lg:22px;
  --ds-radius-md:16px;
  --ds-radius-sm:12px;

  --ds-container:min(1180px, calc(100% - 32px));

  --ds-header-h:84px;
  --ds-livebar-h:42px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body.digital-services-page{
  margin:0;
  font-family:"Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ds-text);
  line-height:1.75;
  overflow-x:hidden;
  min-height:100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(15,143,91,.26), transparent 0 28%),
    radial-gradient(circle at 85% 14%, rgba(212,175,55,.16), transparent 0 20%),
    radial-gradient(circle at 50% 78%, rgba(25,163,106,.14), transparent 0 26%),
    linear-gradient(135deg, #06111d 0%, var(--ds-navy) 34%, #0c2430 60%, #071018 100%);
  padding-top:calc(var(--ds-header-h) + var(--ds-livebar-h));
}

body.digital-services-page::selection{
  background:rgba(212,175,55,.28);
  color:#fff;
}

.container{
  width:var(--ds-container);
  margin-inline:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* =========================================
   Header
========================================= */

.ds-topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:9999;
  backdrop-filter:blur(18px);
  background:rgba(6,17,29,.92);
  border-bottom:1px solid rgba(212,175,55,.14);
}

.ds-topbar__inner{
  min-height:var(--ds-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.ds-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}

.ds-brand__mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:54px;
  height:44px;
  padding-inline:14px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--ds-gold) 0%, var(--ds-gold-2) 100%);
  color:#08131d;
  box-shadow:0 12px 28px rgba(212,175,55,.22);
}

.ds-brand__text{
  color:#fff;
  font-size:1.08rem;
}

.ds-nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.ds-nav a{
  color:var(--ds-text-soft);
  font-weight:600;
  transition:.25s ease;
  position:relative;
}

.ds-nav a::after{
  content:"";
  position:absolute;
  inset-inline-start:0;
  bottom:-8px;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--ds-gold), var(--ds-green-2));
  transition:.25s ease;
}

.ds-nav a:hover{
  color:#fff;
}

.ds-nav a:hover::after{
  width:100%;
}

.ds-topbar__actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.ds-topbar__link{
  color:var(--ds-text-soft);
  font-weight:700;
  transition:.25s ease;
}

.ds-topbar__link:hover{
  color:#fff;
}

.ds-topbar__cta,
.ds-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}

.ds-topbar__cta{
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--ds-gold) 0%, var(--ds-gold-2) 100%);
  color:#08131d;
  font-weight:800;
  box-shadow:0 14px 30px rgba(212,175,55,.18);
}

.ds-topbar__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(212,175,55,.24);
}

.ds-menu-toggle{
  display:none;
  width:52px;
  height:52px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:0;
}

.ds-menu-toggle span{
  display:block;
  width:28px;
  height:3px;
  margin:5px auto;
  border-radius:999px;
  background:#fff;
  transition:.25s ease;
}

.ds-mobile-menu{
  position:fixed;
  top:var(--ds-header-h);
  left:0;
  right:0;
  z-index:9990;
  background:#08131d;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 40px rgba(0,0,0,.32);
}

.ds-mobile-nav{
  display:flex;
  flex-direction:column;
  padding:8px 0;
}

.ds-mobile-nav a{
  padding:14px 20px;
  color:#fff;
  font-weight:700;
  border-bottom:1px solid rgba(255,255,255,.05);
}

.ds-mobile-nav a:last-child{
  border-bottom:none;
}

/* =========================================
   Live Bar
========================================= */

.ds-livebar{
  position:fixed;
  top:var(--ds-header-h);
  left:0;
  right:0;
  height:var(--ds-livebar-h);
  background:#0f2230;
  border-bottom:1px solid rgba(212,175,55,.28);
  overflow:hidden;
  z-index:9000;
  backdrop-filter:none;
}

.ds-livebar__track{
  display:flex;
  align-items:center;
  width:max-content;
  min-width:200%;
  height:100%;
  animation:dsLivebarMove 34s linear infinite;
}

.ds-livebar__items{
  display:flex;
  align-items:center;
  gap:38px;
  padding-inline:20px;
  min-width:max-content;
}

.ds-livebar__items span{
  position:relative;
  white-space:nowrap;
  color:var(--ds-gold-2);
  font-size:.95rem;
  font-weight:800;
  line-height:1;
}

.ds-livebar__items span::before{
  content:"•";
  color:rgba(212,175,55,.72);
  margin-inline-end:10px;
}

@keyframes dsLivebarMove{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* =========================================
   Hero
========================================= */

.ds-hero{
  position:relative;
  padding:96px 0 54px;
  overflow:hidden;
}

.ds-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size:auto, 36px 36px, 36px 36px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.68), transparent 92%);
  pointer-events:none;
}

.ds-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(300px, .8fr);
  gap:32px;
  align-items:center;
}

.ds-eyebrow,
.ds-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.18);
  background:rgba(212,175,55,.08);
  color:var(--ds-gold-2);
  font-weight:700;
  font-size:.94rem;
}

.ds-eyebrow::before,
.ds-section__eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--ds-gold), var(--ds-green-2));
  box-shadow:0 0 14px rgba(212,175,55,.4);
}

.ds-hero h1{
  margin:18px 0 18px;
  font-size:clamp(2.3rem, 5vw, 4.5rem);
  line-height:1.12;
  letter-spacing:-.02em;
  font-weight:900;
  max-width:12ch;
}

.ds-hero__lead{
  margin:0;
  max-width:720px;
  color:var(--ds-text-soft);
  font-size:1.08rem;
}

.ds-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.ds-btn{
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  font-size:1rem;
}

.ds-btn--primary{
  background:linear-gradient(135deg, var(--ds-gold) 0%, var(--ds-gold-2) 100%);
  color:#08131d;
  box-shadow:0 16px 34px rgba(212,175,55,.18);
}

.ds-btn--primary:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 42px rgba(212,175,55,.24);
}

.ds-btn--ghost{
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
}

.ds-btn--ghost:hover{
  transform:translateY(-3px);
  background:rgba(25,163,106,.08);
  border-color:rgba(25,163,106,.36);
  box-shadow:0 18px 36px rgba(15,143,91,.14);
}

.ds-trust{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:0;
  margin:28px 0 0;
}

.ds-trust li{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  color:#e9eef3;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:700;
}

.ds-proofbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.ds-proofbar span{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:700;
  font-size:.93rem;
}

.ds-hero__panel{
  position:relative;
}

.ds-panel-card{
  position:relative;
  min-height:420px;
  padding:28px;
  border-radius:32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(22,50,75,.94), rgba(9,25,39,.92));
  border:1px solid var(--ds-border);
  box-shadow:var(--ds-shadow);
  overflow:hidden;
  isolation:isolate;
}

.ds-panel-card::before{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,.32) 0%, rgba(212,175,55,0) 68%);
  inset-inline-end:-60px;
  top:-60px;
  pointer-events:none;
}

.ds-panel-card::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(25,163,106,.24) 0%, rgba(25,163,106,0) 70%);
  inset-inline-start:-70px;
  bottom:-70px;
  pointer-events:none;
}

.ds-panel-card__line{
  height:12px;
  width:100%;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(212,175,55,.95), rgba(25,163,106,.72));
  box-shadow:0 6px 20px rgba(0,0,0,.16);
}

.ds-panel-card__line--short{
  width:68%;
  margin-top:14px;
  opacity:.82;
}

.ds-panel-card__metrics{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:36px;
}

.ds-panel-card__metrics span{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  font-size:1.04rem;
  font-weight:800;
  color:#fff;
  text-align:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.ds-panel-card__footer{
  position:absolute;
  inset-inline:28px;
  bottom:28px;
  min-height:86px;
  display:flex;
  align-items:center;
  padding:18px 20px;
  border-radius:22px;
  color:var(--ds-text-soft);
  font-weight:600;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

/* =========================================
   Sections
========================================= */

.ds-section{
  position:relative;
  padding:34px 0 26px;
}

.ds-intro{
  padding-top:10px;
}

.ds-section__head{
  max-width:860px;
  margin-bottom:28px;
}

.ds-section__head h2{
  margin:16px 0 12px;
  font-size:clamp(1.8rem, 3.2vw, 3rem);
  line-height:1.2;
  font-weight:900;
}

.ds-section__head p{
  margin:0;
  color:var(--ds-text-soft);
  font-size:1.02rem;
}

.ds-grid{
  display:grid;
  gap:18px;
}

/* =========================================
   Services Cards
========================================= */

.ds-grid--services{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.ds-card{
  position:relative;
  min-height:244px;
  padding:24px;
  border-radius:var(--ds-radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(18,38,58,.96), rgba(7,18,29,.96));
  border:1px solid rgba(212,175,55,.18);
  box-shadow:var(--ds-shadow-soft);
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease, opacity .45s ease;
  overflow:hidden;
  opacity:1;
}

.ds-card::before{
  content:"";
  position:absolute;
  inset-inline-start:-40px;
  top:-40px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(25,163,106,.18), transparent 72%);
  pointer-events:none;
}

.ds-card:hover{
  transform:translateY(-8px);
  border-color:var(--ds-border-strong);
  box-shadow:0 24px 46px rgba(0,0,0,.28), 0 0 0 1px rgba(25,163,106,.14) inset;
}

.ds-card__icon{
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  margin-bottom:18px;
  font-size:1.45rem;
  font-weight:900;
  color:#07111a;
  background:linear-gradient(135deg, var(--ds-gold), var(--ds-gold-2));
  box-shadow:0 14px 30px rgba(212,175,55,.2);
}

.ds-card h3{
  margin:0 0 10px;
  font-size:1.32rem;
  line-height:1.28;
  font-weight:800;
}

.ds-card p{
  margin:0;
  color:var(--ds-text-soft);
  font-size:.99rem;
}

.ds-card--featured{
  position:relative;
  overflow:hidden;
}

.ds-card__tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:12px;
  padding:6px 12px;
  border:1px solid rgba(212,175,55,.28);
  border-radius:999px;
  background:rgba(212,175,55,.08);
  color:#f3d46b;
  font-size:.82rem;
  font-weight:700;
  line-height:1;
}

.ds-card__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:20px;
  flex-wrap:wrap;
}

.ds-card__meta{
  color:rgba(245,247,250,.72);
  font-size:.92rem;
  font-weight:600;
}

.ds-card__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border-radius:14px;
  background:linear-gradient(135deg,#d4af37 0%, #f0d76a 100%);
  color:#0b1220;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(212,175,55,.22);
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.ds-card__link span{
  font-size:1rem;
  line-height:1;
}

.ds-card__link:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(212,175,55,.3);
  opacity:.96;
}

.ds-card__link:focus-visible{
  outline:2px solid #f0d76a;
  outline-offset:3px;
}

/* =========================================
   Steps
========================================= */

.ds-process{
  padding-top:22px;
}

.ds-grid--steps{
  grid-template-columns:repeat(4, minmax(0,1fr));
}

.ds-grid--steps-3{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.ds-step{
  position:relative;
  min-height:200px;
  padding:24px;
  border-radius:var(--ds-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(11,28,45,.96), rgba(7,17,28,.98));
  border:1px solid rgba(25,163,106,.18);
  box-shadow:var(--ds-shadow-soft);
  transition:opacity .45s ease, transform .28s ease;
  opacity:1;
}

.ds-step__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:38px;
  padding-inline:12px;
  border-radius:999px;
  background:rgba(25,163,106,.12);
  color:var(--ds-green-2);
  border:1px solid rgba(25,163,106,.24);
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:16px;
}

.ds-step h3{
  margin:0 0 8px;
  font-size:1.18rem;
  font-weight:800;
}

.ds-step p{
  margin:0;
  color:var(--ds-text-soft);
  font-size:.98rem;
}

/* =========================================
   Tags
========================================= */

.ds-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.ds-tags span{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:999px;
  color:#f8fbfd;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(212,175,55,.18);
  font-weight:700;
  transition:.25s ease;
}

.ds-tags span:hover{
  transform:translateY(-2px);
  border-color:rgba(25,163,106,.38);
  background:rgba(25,163,106,.08);
}

/* =========================================
   Why
========================================= */

.ds-grid--why{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.ds-why-card{
  min-height:180px;
  padding:24px;
  border-radius:var(--ds-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(13,31,49,.96), rgba(8,19,30,.98));
  border:1px solid rgba(212,175,55,.16);
  box-shadow:var(--ds-shadow-soft);
  transition:opacity .45s ease, transform .28s ease;
  opacity:1;
}

.ds-why-card h3{
  margin:0 0 10px;
  font-size:1.22rem;
  font-weight:800;
}

.ds-why-card p{
  margin:0;
  color:var(--ds-text-soft);
}

/* =========================================
   Testimonials
========================================= */

.ds-grid--testimonials{
  grid-template-columns:repeat(4, minmax(0,1fr));
}

.ds-testimonial-card{
  min-height:200px;
  padding:22px;
  border-radius:var(--ds-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(13,31,49,.96), rgba(8,19,30,.98));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--ds-shadow-soft);
  transition:opacity .45s ease, transform .28s ease, border-color .28s ease;
  opacity:1;
}

.ds-testimonial-card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,55,.24);
}

.ds-stars{
  color:#f0d77a;
  margin-bottom:10px;
  letter-spacing:.08em;
  font-size:1.1rem;
}

.ds-testimonial-card p{
  margin:0 0 14px;
  color:var(--ds-text-soft);
}

.ds-testimonial-card strong{
  color:#fff;
  font-size:.96rem;
}

/* =========================================
   FAQ
========================================= */

.ds-faq-list{
  max-width:900px;
}

.ds-faq-item{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ds-faq-question{
  width:100%;
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:none;
  border:none;
  color:#fff;
  font-size:1rem;
  font-weight:800;
  text-align:right;
  cursor:pointer;
}

.ds-faq-icon{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(212,175,55,.08);
  border:1px solid rgba(212,175,55,.2);
  color:var(--ds-gold-2);
  font-weight:900;
}

.ds-faq-answer{
  padding:0 0 18px;
}

.ds-faq-answer p{
  margin:0;
  color:var(--ds-text-soft);
}

/* =========================================
   CTA
========================================= */

.ds-cta{
  padding:40px 0 64px;
}

.ds-cta__box{
  position:relative;
  padding:34px;
  border-radius:32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    linear-gradient(135deg, rgba(11,28,45,.98), rgba(10,35,33,.96));
  border:1px solid rgba(212,175,55,.22);
  box-shadow:var(--ds-shadow);
  overflow:hidden;
  transition:opacity .45s ease;
  opacity:1;
}

.ds-cta__box::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,175,55,.18), transparent 70%);
  inset-inline-end:-90px;
  top:-90px;
  pointer-events:none;
}

.ds-cta__box h2{
  margin:16px 0 10px;
  font-size:clamp(1.7rem, 3vw, 2.6rem);
  line-height:1.2;
  font-weight:900;
}

.ds-cta__box p{
  margin:0 0 22px;
  color:var(--ds-text-soft);
  max-width:760px;
}

/* =========================================
   Footer
========================================= */

.ds-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(5, 12, 19, .88);
}

.ds-footer__inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:24px;
  padding:32px 0 18px;
}

.ds-footer__brand{
  max-width:520px;
}

.ds-footer__col h3{
  margin:0 0 12px;
  font-size:1rem;
  color:#fff;
}

.ds-footer__inner strong{
  display:block;
  margin-bottom:8px;
  font-size:1.08rem;
}

.ds-footer__inner p{
  margin:0;
  color:var(--ds-muted);
}

.ds-footer__links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.ds-footer__links a{
  color:var(--ds-text-soft);
  transition:.25s ease;
}

.ds-footer__links a:hover{
  color:var(--ds-gold-2);
}

.ds-footer__links--stack{
  align-items:flex-start;
}

.ds-footer__bottom{
  padding:0 0 20px;
}

.ds-footer__copy{
  color:var(--ds-muted);
  font-size:.95rem;
  font-weight:700;
  text-align:center;
}

/* =========================================
   Sticky Mobile CTA
========================================= */

.ds-sticky-cta{
  display:none;
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  transform:none;
  z-index:9500;
  min-height:54px;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--ds-gold),var(--ds-gold-2));
  color:#08131d;
  font-weight:900;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* =========================================
   Reveal Helper
========================================= */

.ds-card,
.ds-step,
.ds-why-card,
.ds-testimonial-card,
.ds-cta__box{
  will-change:transform, opacity;
}

.is-visible{
  opacity:1 !important;
  transform:none !important;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1100px){
  .ds-hero__grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .ds-grid--services{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .ds-grid--steps,
  .ds-grid--steps-3{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .ds-grid--why{
    grid-template-columns:1fr;
  }

  .ds-grid--testimonials{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .ds-panel-card{
    min-height:360px;
  }

  .ds-footer__inner{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 860px){
  :root{
    --ds-header-h:78px;
    --ds-livebar-h:40px;
  }

  .ds-topbar__inner{
    min-height:var(--ds-header-h);
    padding:0;
  }

  .ds-nav,
  .ds-topbar__actions{
    display:none;
  }

  .ds-menu-toggle{
    display:block;
  }

  .ds-hero{
    padding-top:72px;
  }

  .ds-hero__grid{
    grid-template-columns:1fr;
  }

  .ds-panel-card{
    min-height:320px;
  }

  .ds-grid--services,
  .ds-grid--steps,
  .ds-grid--steps-3,
  .ds-grid--testimonials{
    grid-template-columns:1fr;
  }

  .ds-footer__inner{
    grid-template-columns:1fr;
  }

  .ds-footer__copy{
    text-align:right;
  }
}

@media (max-width: 640px){
  :root{
    --ds-header-h:74px;
    --ds-livebar-h:38px;
  }

  .container{
    width:min(100% - 20px, 100%);
  }

  body.digital-services-page{
    padding-bottom:90px;
  }

  .ds-topbar__inner{
    gap:10px;
  }

  .ds-brand__mark{
    min-width:48px;
    height:42px;
    padding-inline:12px;
  }

  .ds-brand__text{
    font-size:1rem;
  }

  .ds-menu-toggle{
    width:48px;
    height:48px;
  }

  .ds-livebar__items{
    gap:26px;
    padding-inline:14px;
  }

  .ds-livebar__items span{
    font-size:.88rem;
  }

  .ds-btn{
    width:100%;
  }

  .ds-hero h1{
    max-width:none;
    font-size:clamp(2rem, 9vw, 3rem);
  }

  .ds-trust,
  .ds-proofbar{
    gap:10px;
  }

  .ds-card,
  .ds-step,
  .ds-why-card,
  .ds-cta__box,
  .ds-panel-card,
  .ds-testimonial-card{
    padding:20px;
  }

  .ds-card__footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .ds-card__link{
    width:100%;
    justify-content:center;
  }

  .ds-panel-card{
    min-height:auto;
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .ds-panel-card__line{
    height:10px;
  }

  .ds-panel-card__line--short{
    width:72%;
    margin-top:10px;
  }

  .ds-panel-card__metrics{
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:18px;
  }

  .ds-panel-card__metrics span{
    min-height:64px;
    font-size:1rem;
    padding:10px;
  }

  .ds-panel-card__footer{
    position:static;
    inset:auto;
    min-height:auto;
    margin-top:4px;
    padding:14px 16px;
    font-size:.95rem;
    line-height:1.75;
    text-align:center;
    justify-content:center;
  }

  .ds-sticky-cta{
    display:flex;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }
}
