/* ==========================================================================
   Locker 4 Data — Cloud Storage Platform
   Design system + section styles
   Heading face: Bricolage Grotesque · Body: Inter
   ========================================================================== */

/* ---------- 1. Tokens --------------------------------------------------- */
:root {
  /* Soft professional blue palette */
  --l4d-blue:        #2f6bed;
  --l4d-blue-600:    #2559d4;
  --l4d-blue-700:    #1d43a8;
  --l4d-indigo:      #5b7cfa;
  --l4d-sky:         #77a9ff;
  --l4d-blue-tint:   #eef3ff;
  --l4d-blue-tint-2: #f5f8ff;

  /* Neutral / ink */
  --l4d-ink:         #0d1424;
  --l4d-ink-2:       #131c30;
  --l4d-heading:     #101827;
  --l4d-body:        #4a5568;
  --l4d-muted:       #7b8698;
  --l4d-line:        #e7ecf4;
  --l4d-line-soft:   #eef1f7;

  /* Surfaces */
  --l4d-bg:          #ffffff;
  --l4d-bg-alt:      #f6f8fc;
  --l4d-bg-alt-2:    #f2f5fb;

  /* Accents used sparingly */
  --l4d-green:       #1faa6b;
  --l4d-amber:       #e08a2b;
  --l4d-rose:        #d9556b;

  /* Gradients */
  --grad-blue:  linear-gradient(135deg, #2f6bed 0%, #5b7cfa 55%, #77a9ff 100%);
  --grad-ink:   linear-gradient(160deg, #101a30 0%, #0c1220 100%);
  --grad-soft:  linear-gradient(180deg, #f7faff 0%, #ffffff 100%);

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(16, 24, 39, .05);
  --shadow-sm: 0 2px 8px rgba(20, 32, 61, .06);
  --shadow-md: 0 12px 30px -12px rgba(24, 43, 92, .18);
  --shadow-lg: 0 30px 60px -24px rgba(20, 40, 96, .30);
  --shadow-blue: 0 18px 40px -14px rgba(47, 107, 237, .45);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Base ----------------------------------------------------- */
*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--l4d-body);
  background: var(--l4d-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,.font-display{
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  color: var(--l4d-heading);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
}

a{ color: var(--l4d-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover{ color: var(--l4d-blue-700); }

img{ max-width: 100%; }

::selection{ background: rgba(47,107,237,.18); }

.container{ max-width: var(--maxw); }
.container-fluid{
  max-width: 1500px;
}
/* ---------- 3. Reusable atoms ------------------------------------------ */
.section{ padding: 104px 0; position: relative; }
.section-sm{ padding: 72px 0; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--l4d-blue);
  background: var(--l4d-blue-tint);
  border: 1px solid #dbe6ff;
  padding: 7px 14px 7px 12px;
  border-radius: 100px;
}
.eyebrow .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--l4d-blue); box-shadow: 0 0 0 4px rgba(47,107,237,.14); }
.eyebrow--light{ color: #bcd0ff; background: rgba(94,124,250,.14); border-color: rgba(120,150,255,.25); }
.eyebrow--light .dot{ background: var(--l4d-sky); box-shadow: 0 0 0 4px rgba(119,169,255,.2); }

.h-display{ font-size: clamp(2.1rem, 5.5vw, 4.5rem) }
.h-section{ font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
.h-cta{
   font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}
.text-grad{
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lead-muted{ color: var(--l4d-muted); font-size: 1.06rem; max-width: 600px; }

/* Buttons */
.btn{
  font-weight: 600;
  border-radius: 100px;
  padding: .78rem 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  display: inline-flex; align-items: center; gap: .55rem;
  border: 0;
  white-space: nowrap;
}
.btn:focus-visible{ outline: 3px solid rgba(47,107,237,.4); outline-offset: 2px; }
.btn svg{ transition: transform .25s var(--ease); }
.btn-primary{
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover{ color:#fff; transform: translateY(-2px); box-shadow: 0 24px 46px -14px rgba(47,107,237,.55); }
.btn-primary:hover svg{ transform: translateX(3px); }
.btn-dark{ background: var(--l4d-ink); color:#fff; }
.btn-dark:hover{ background: #1b263f; color:#fff; transform: translateY(-2px); }
.btn-ghost{
  background: #fff; color: var(--l4d-heading);
  border: 1px solid var(--l4d-line);
  box-shadow: var(--shadow-xs);
}
.btn-ghost:hover{ border-color: #c9d6ee; color: var(--l4d-heading); transform: translateY(-2px); }
.btn-light{ background:#fff; color: var(--l4d-ink); }
.btn-light:hover{ color: var(--l4d-ink); transform: translateY(-2px); background:#f2f5fb; }
.btn-outline-light{ background: transparent; border:1px solid rgba(255,255,255,.22); color:#eaf0ff; }
.btn-outline-light:hover{ color:#fff; border-color: rgba(255,255,255,.5); }
.btn-lg{ padding: .95rem 1.8rem; font-size: 1.02rem; }

/* Bracket-corner accent (signature detail echoing the references) */
.bracket{ position: relative; }
.bracket::before,.bracket::after{
  content:""; position:absolute; width:16px; height:16px; pointer-events:none;
  border-color: rgba(47,107,237,.5); border-style: solid; border-width:0;
}
.bracket::before{ top:-6px; left:-6px; border-top-width:2px; border-left-width:2px; border-top-left-radius:4px; }
.bracket::after{ bottom:-6px; right:-6px; border-bottom-width:2px; border-right-width:2px; border-bottom-right-radius:4px; }

/* Dot grid + mesh backgrounds */
.dotgrid{
  background-image: radial-gradient(rgba(47,107,237,.11) 1px, transparent 1px);
  background-size: 22px 22px;
}
.mesh-soft{
  background:
    radial-gradient(60% 55% at 85% 0%, rgba(94,124,250,.14), transparent 60%),
    radial-gradient(50% 50% at 8% 12%, rgba(119,169,255,.12), transparent 60%),
    var(--grad-soft);
}

/* ---------- 4. Navbar --------------------------------------------------- */
.l4d-nav{
  position: sticky; top: 0; z-index: 1030;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
  padding: 16px 0;
}
.l4d-nav.scrolled{
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--l4d-line-soft), var(--shadow-sm);
  padding: 10px 0;
  position: fixed;
    width: 100%;
}
.brand{ display:flex; align-items:center; gap:10px; font-family:'Bricolage Grotesque'; font-weight:700; font-size:1.28rem; color:var(--l4d-heading); letter-spacing:-.02em; max-width: 200px;}
.brand:hover{ color: var(--l4d-heading); }
.brand-mark{
  width:38px; height:38px; border-radius:11px;
  background: var(--grad-blue);
  display:grid; place-items:center;
  box-shadow: var(--shadow-blue);
  flex: 0 0 auto;
}
.l4d-nav .nav-link{
  color: var(--l4d-body); font-weight:500; font-size:.96rem; padding:.4rem .9rem; border-radius: 8px;
}
.l4d-nav .nav-link:hover,.l4d-nav .nav-link.active{ color: var(--l4d-heading); }
.navbar-toggler{ border:1px solid var(--l4d-line); padding:.4rem .55rem; border-radius:10px; }
.navbar-toggler:focus{ box-shadow:none; }

/* ---------- 5. Hero ----------------------------------------------------- */
.hero{ padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--l4d-line); }
.hero-badges{ display:flex; flex-wrap:wrap; gap: 15px 30px; margin-top: 6px; }
.hero-check{ display:flex; align-items:center; gap:9px; font-weight:500; color:var(--l4d-heading); font-size:.96rem; }
@media (min-width: 1200px){
  .hero-check{
        flex: 0 0 44%;
  }
}
.hero-check .ic{ width:22px; height:22px; border-radius:50%; background:var(--l4d-blue-tint); color:var(--l4d-blue); display:grid; place-items:center; flex:0 0 auto; }

.trust-row{ margin-top: 46px; }
.trust-row .label{ font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--l4d-muted); font-weight:600; }
.trust-logos{ display:flex; flex-wrap:wrap; align-items:center; gap: 26px 34px; margin-top:14px; opacity:.72; }
.trust-logos .tl{ display:flex; align-items:center; gap:8px; font-weight:700; color:#8b96a8; font-size:1.02rem; letter-spacing:-.01em; }

/* Hero product mockup */
.hero-visual{ position: relative; }
.mock{
  background:#fff; border:1px solid var(--l4d-line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow:hidden;
}
.mock-bar{ display:flex; align-items:center; gap:7px; padding:13px 16px; border-bottom:1px solid var(--l4d-line-soft); background:#fbfcfe; }
.mock-dot{ width:10px; height:10px; border-radius:50%; }
.mock-body{ padding: 18px; }

.float-badge{
  position:absolute; background:#fff; border:1px solid var(--l4d-line);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-md);
  display:flex; align-items:center; gap:11px; font-size:.86rem;
}
.float-badge .fb-ic{ width:34px; height:34px; border-radius:10px; display:grid; place-items:center; color:#fff; flex:0 0 auto; }
.float-badge .fb-title{ font-weight:700; color:var(--l4d-heading); line-height:1.1; }
.float-badge .fb-sub{ color:var(--l4d-muted); font-size:.76rem; }
.fb-top{ top: -24px; left: -30px; }
.fb-bottom{ bottom: -20px; right: -26px; }
@media (max-width: 991px){ .fb-top,.fb-bottom{ display:none; } }

.blob{ position:absolute; border-radius:50%; filter: blur(60px); opacity:.6; z-index:-1; }
.blob-a{ width:420px; height:420px; background: rgba(94,124,250,.28); top:-80px; right:-120px; }
.blob-b{ width:360px; height:360px; background: rgba(119,169,255,.24); bottom:-120px; left:-100px; }

/* ---------- 6. Features grid ------------------------------------------- */

.fx-card{
  background:#fff; border:1px solid var(--l4d-line); border-radius: var(--r-lg);
  height:100%; overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.fx-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); border-color:#dbe6ff; }

.fx-canvas{
  position:relative; padding: 34px 30px; min-height: 278px;
  display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(120% 130% at 50% -20%, rgba(94,124,250,.18), transparent 62%),
    linear-gradient(180deg,#eef3ff 0%, #f5f8ff 100%);
  border-bottom:1px solid var(--l4d-line-soft);
  overflow:hidden;
}
.fx-canvas::before{  /* concentric rings echoing the reference */
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image: repeating-radial-gradient(circle at 50% 18%, rgba(47,107,237,.06) 0 1px, transparent 1px 28px);
  opacity:.75;
}
.fx-canvas > *{ position:relative; z-index:1; }

.fx-body{ padding: 26px 30px 30px; }
.fx-body h3{ font-size:1.3rem; margin-bottom:8px; }
.fx-body p{ color:var(--l4d-muted); font-size:.96rem; margin:0; }

/* ---- shared mini window ---- */
.fx-win{
  width:100%; max-width:330px; background:#fff; border:1px solid var(--l4d-line);
  border-radius:14px; box-shadow: var(--shadow-md); overflow:hidden;
}
.fx-win-head{
  padding:11px 14px; border-bottom:1px solid var(--l4d-line-soft);
  display:flex; align-items:center; justify-content:space-between;
  font-family:'Bricolage Grotesque'; font-weight:700; color:var(--l4d-heading); font-size:.92rem;
}
.fx-win-body{ padding:12px 14px; }
.fx-tabs{ display:flex; gap:6px; }
.fx-tab{ font-size:.68rem; font-weight:600; padding:3px 9px; border-radius:100px; color:var(--l4d-muted); background:var(--l4d-bg-alt); }
.fx-tab.on{ background:var(--l4d-blue-tint); color:var(--l4d-blue); }

.fx-search{
  display:flex; align-items:center; gap:8px; border:1px solid var(--l4d-line);
  border-radius:9px; padding:9px 11px; font-size:.82rem; color:var(--l4d-body);
  background:#fbfcfe; margin-bottom:10px;
}
.fx-search .cur{ width:1px; height:14px; background:var(--l4d-blue); margin-left:-2px; animation:fxcaret 1.1s steps(1) infinite; }
@keyframes fxcaret{ 50%{ opacity:0; } }

.fx-row{ display:flex; align-items:center; gap:10px; padding:8px 9px; border-radius:9px; font-size:.82rem; color:var(--l4d-heading); font-weight:500; }
.fx-row + .fx-row{ margin-top:2px; }
.fx-row.hl{ background:var(--l4d-blue-tint); }
.fx-row .meta{ margin-left:auto; font-size:.72rem; color:var(--l4d-muted); font-weight:500; }
.fx-ic{ width:28px; height:28px; border-radius:8px; display:grid; place-items:center; flex:0 0 auto; }
.fx-mark{ background:rgba(47,107,237,.14); border-radius:3px; padding:0 2px; color:var(--l4d-blue-700); }

/* ---- encryption pill ---- */
.fx-pill{
  display:inline-flex; align-items:center; gap:13px;
  background:var(--grad-blue); color:#fff;
  font-family:'Bricolage Grotesque'; font-weight:700; font-size:1.3rem; letter-spacing:-.01em;
  padding:19px 38px; border-radius:100px;
  box-shadow: 0 22px 46px -14px rgba(47,107,237,.6), inset 0 1px 0 rgba(255,255,255,.45);
}
.fx-pill::after{  /* soft outer ring */
  content:""; position:absolute; width:280px; height:280px; border-radius:50%;
  border:1.5px solid rgba(47,107,237,.14); z-index:-1;
}

/* ---- transfer / plan tiles ---- */
.fx-panel{
  width:100%; max-width:440px; background:#fff; border:1px solid var(--l4d-line);
  border-radius:14px; box-shadow: var(--shadow-md); padding:16px;
}
.fx-tile{ flex:1; border:1px solid var(--l4d-line-soft); border-radius:12px; padding:13px 14px; background:#fbfcfe; }
.fx-tile .lbl{ display:flex; align-items:center; gap:7px; font-size:.76rem; color:var(--l4d-muted); font-weight:600; }
.fx-tile .val{ font-family:'Bricolage Grotesque'; font-weight:700; font-size:1.35rem; color:var(--l4d-heading); margin:6px 0 9px; line-height:1; }
.fx-tile .val small{ font-size:.72rem; font-weight:600; color:var(--l4d-muted); }

.fx-plan-row{ display:flex; align-items:center; gap:11px; padding:10px 11px; border-radius:10px; border:1px solid var(--l4d-line-soft); }
.fx-plan-row + .fx-plan-row{ margin-top:8px; }
.fx-plan-row.current{ border-color:transparent; background:var(--l4d-blue-tint); }
.fx-plan-row .nm{ font-weight:600; color:var(--l4d-heading); font-size:.86rem; }
.fx-plan-row .pr{ margin-left:auto; font-family:'Bricolage Grotesque'; font-weight:700; color:var(--l4d-heading); font-size:.9rem; }
.fx-plan-row .state{ font-size:.66rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:3px 9px; border-radius:100px; }
.fx-state-cur{ background:var(--grad-blue); color:#fff; }
.fx-state-up{ background:#fff; border:1px solid var(--l4d-line); color:var(--l4d-blue); }

.fx-mini-toggle{ display:inline-flex; background:var(--l4d-bg-alt); border-radius:100px; padding:3px; gap:2px; }
.fx-mini-toggle span{ font-size:.7rem; font-weight:600; color:var(--l4d-muted); padding:3px 11px; border-radius:100px; }
.fx-mini-toggle span.on{ background:#fff; color:var(--l4d-heading); box-shadow: var(--shadow-xs); }

@media (max-width: 575px){ .fx-panel .d-flex.gap-2{ flex-direction:column; } }

/* ---------- 7. How it works (steps) ------------------------------------ */
.hw-grid{ position:relative; }

/* layout: stacked on mobile, 2x2 with centre hub on desktop */
.hw-rows{ display:flex; flex-direction:column; gap:20px; position:relative; z-index:1; }

.hw-hub{ display:none; }
.hw-hub .mark{
  width: 75px;
    height: 75px;
    border-radius: 16px;
    background: var(--grad-blue);
    display: flex;
    place-items: center;
    box-shadow: var(--shadow-blue);
    padding: 1.15rem;
}

@media (min-width: 992px){
  .hw-rows{
    display:grid;
    grid-template-columns: 1fr minmax(110px, auto) 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 54px; row-gap: 46px;
  }
  .hw-cell:nth-child(1){ grid-column:1; grid-row:1; }
  .hw-cell:nth-child(2){ grid-column:3; grid-row:1; }
  .hw-cell:nth-child(3){ grid-column:1; grid-row:2; }
  .hw-cell:nth-child(4){ grid-column:3; grid-row:2; }
  .hw-hub{
    display:grid; place-items:center; grid-column:2; grid-row:1 / 3; place-self:center;
    width:104px; height:104px; border-radius:24px; background:#fff;
    border:1px solid var(--l4d-line); box-shadow:var(--shadow-lg); z-index:3;
  }
}

/* dashed connectors (desktop only) */
.hw-lines{ display:none; }
@media (min-width: 992px){
  .hw-lines{
    display:block; position:absolute; inset:0; width:100%; height:100%;
    z-index:0; pointer-events:none;
  }
  .hw-lines path{
    fill:none; stroke:#c4d3f2; stroke-width:1.6; stroke-dasharray:5 7;
    stroke-linecap:round; vector-effect:non-scaling-stroke;
  }
  .hw-lines circle{ fill:#8fabec; }
}

/* card */
.hw-card{
  position:relative; z-index:2; background:#fff; border:1px solid var(--l4d-line);
  border-radius:var(--r-lg); padding:26px 26px 24px; height:100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.hw-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:#dbe6ff; }
.hw-step{
  display:inline-flex; align-items:center; gap:9px; margin-bottom:12px;
  font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--l4d-blue);
}
.hw-step .n{
  width:24px; height:24px; border-radius:8px; background:var(--l4d-blue-tint);
  display:grid; place-items:center; font-family:'Bricolage Grotesque'; font-size:.82rem;
}
.hw-card h3{ font-size:1.22rem; margin-bottom:6px; }
.hw-card p{ color:var(--l4d-muted); font-size:.94rem; margin:0 0 18px; }

/* mockups */
.hw-mock{
  border:1px solid var(--l4d-line-soft); border-radius:14px;
  background:linear-gradient(180deg,#f5f8ff 0%, #fbfcff 100%); padding:16px;
}
.hw-field{
  display:flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--l4d-line);
  border-radius:9px; padding:9px 11px; font-size:.82rem; color:var(--l4d-muted); margin-bottom:9px;
}
.hw-btn{
  display:block; width:100%; text-align:center; background:var(--grad-blue); color:#fff;
  font-weight:600; font-size:.82rem; border-radius:9px; padding:10px; box-shadow:var(--shadow-blue);
}
.hw-opt{
  flex:1; text-align:center; border:1px solid var(--l4d-line); border-radius:10px;
  padding:11px 6px; font-size:.74rem; font-weight:600; color:var(--l4d-body); background:#fff;
}
.hw-opt .pr{ display:block; font-family:'Bricolage Grotesque'; font-weight:700; color:var(--l4d-heading); font-size:1.02rem; margin-top:3px; }
.hw-opt.sel{ border-color:var(--l4d-blue); background:var(--l4d-blue-tint); color:var(--l4d-blue); box-shadow:inset 0 0 0 1px var(--l4d-blue); }
.hw-bar{ height:8px; border-radius:5px; background:var(--l4d-line); overflow:hidden; }
.hw-bar span{ display:block; height:100%; border-radius:5px; background:var(--grad-blue); }
.hw-line{ display:flex; align-items:center; gap:9px; font-size:.8rem; color:var(--l4d-heading); font-weight:500; padding:7px 0; }
.hw-line .meta{ margin-left:auto; font-size:.72rem; color:var(--l4d-muted); font-weight:500; }
.hw-drop{
  border:1.6px dashed #bccdee; border-radius:12px; background:#fff; padding:16px;
  text-align:center; color:var(--l4d-muted); font-size:.82rem; font-weight:500;
}
.hw-chip{
  display:inline-flex; align-items:center; gap:7px; background:#fff; border:1px solid var(--l4d-line);
  border-radius:100px; padding:5px 11px; font-size:.76rem; color:var(--l4d-heading); font-weight:500; margin:10px 6px 0 0;
}
/* ---------- 8. Benefits (dark) ----------------------------------------- */
.benefits{ background: var(--grad-ink); color:#cdd6e6; position:relative; overflow:hidden; }
.benefits h2{ color:#fff; }
.benefits .lead-muted{ color:#9aa6bd; }
.benefits::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(50% 60% at 90% 8%, rgba(94,124,250,.22), transparent 60%),
    radial-gradient(45% 55% at 6% 100%, rgba(47,107,237,.18), transparent 60%);
  pointer-events:none;
}
.benefit-item{ display:flex; gap:16px; padding: 20px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.benefit-item:last-child{ border-bottom:0; }
.benefit-ic{ width:46px; height:46px; border-radius:13px; flex:0 0 auto; display:grid; place-items:center; background: rgba(94,124,250,.16); color:#9fbaff; border:1px solid rgba(120,150,255,.2); }
.benefit-item h3{ color:#fff; font-size:1.12rem; margin-bottom:4px; }
.benefit-item p{ color:#96a2ba; font-size:.93rem; margin:0; }

.storage-card{
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); overflow: hidden;
}
.storage-card .sc-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.storage-card .sc-title{ color:#fff; font-weight:600; }
.ring-wrap{ position:relative; width:190px; height:190px; margin: 0 auto 6px; }
.ring-center{ position:absolute; inset:0; display:grid; place-items:center; text-align:center; }
.ring-center .rv{ font-family:'Bricolage Grotesque'; font-weight:700; font-size:2rem; color:#fff; line-height:1; }
.ring-center .rl{ font-size:.78rem; color:#8f9cb5; margin-top:4px; }
.legend{ display:flex; flex-direction:column; gap:12px; margin-top:6px; }
.legend .lg{ display:flex; align-items:center; justify-content:space-between; font-size:.9rem; }
.legend .lg .nm{ display:flex; align-items:center; gap:9px; color:#c3ccdd; }
.legend .sw{ width:10px; height:10px; border-radius:3px; }
.legend .vv{ color:#fff; font-weight:600; }

/* ---------- 9. Pricing -------------------------------------------------- */
.billing-toggle{
  display:inline-flex; background:#fff; border:1px solid var(--l4d-line);
  border-radius:100px; padding:5px; box-shadow: var(--shadow-xs); gap:4px;
}
.billing-toggle button{
  border:0; background:transparent; font-weight:600; color:var(--l4d-muted);
  padding:.5rem 1.2rem; border-radius:100px; cursor:pointer; font-size:.92rem;
  transition: all .25s var(--ease); display:inline-flex; align-items:center; gap:8px;
}
.billing-toggle button.active{ background: var(--grad-blue); color:#fff; box-shadow: var(--shadow-blue); }
.save-pill{ font-size:.66rem; background:rgba(31,170,107,.15); color:var(--l4d-green); padding:2px 7px; border-radius:100px; font-weight:700; }
.billing-toggle button.active .save-pill{ background: rgba(255,255,255,.24); color:#fff; }

.price-card{
  background:#fff; border:1px solid var(--l4d-line); border-radius: var(--r-lg);
  padding: 34px 30px; height:100%; position:relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card .pc-name{ font-family:'Bricolage Grotesque'; font-weight:700; font-size:1.4rem; color:var(--l4d-heading); }
.price-card .pc-desc{ color:var(--l4d-muted); font-size:.9rem; margin: 8px 0 22px; }
.price-amt{ display:flex; align-items:baseline; gap:6px; margin-bottom:4px; }
.price-amt .cur{ font-family:'Bricolage Grotesque'; font-weight:700; font-size:1.4rem; color:var(--l4d-heading); }
.price-amt .num{ font-family:'Bricolage Grotesque'; font-weight:700; font-size:3rem; color:var(--l4d-heading); line-height:1; letter-spacing:-.03em; }
.price-amt .per{ color:var(--l4d-muted); font-size:.9rem; }
.price-feat{ list-style:none; padding:0; margin: 24px 0 0; }
.price-feat li{ display:flex; gap:11px; align-items:flex-start; padding:9px 0; font-size:.94rem; color:var(--l4d-body); }
.price-feat .ck{ width:20px; height:20px; border-radius:50%; background:var(--l4d-blue-tint); color:var(--l4d-blue); display:grid; place-items:center; flex:0 0 auto; margin-top:1px; }

.price-card.featured{
  background: var(--grad-ink); border-color: transparent; color:#c8d2e4;
  box-shadow: var(--shadow-lg);
}
.price-card.featured .pc-name,.price-card.featured .price-amt .cur,.price-card.featured .price-amt .num{ color:#fff; }
.price-card.featured .pc-desc{ color:#9aa6bd; }
.price-card.featured .per{ color:#9aa6bd; }
.price-card.featured .price-feat li{ color:#c3ccdd; }
.price-card.featured .ck{ background: rgba(94,124,250,.2); color:#9fbaff; }
.pc-tag{
  position:absolute; top:20px; right:22px; font-size:.7rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; color:#fff; background: var(--grad-blue); padding:5px 11px; border-radius:100px;
}

/* ---------- 10. FAQ ----------------------------------------------------- */
.faq-wrap .accordion-item{
  border:1px solid var(--l4d-line); border-radius: var(--r-md) !important;
  margin-bottom:14px; overflow:hidden; background:#fff;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-wrap .accordion-item:has(.accordion-button:not(.collapsed)){
  border-color: transparent; box-shadow: var(--shadow-md);
}
.faq-wrap .accordion-button{
  font-family:'Bricolage Grotesque'; font-weight:600; font-size:1.26rem; color:var(--l4d-heading);
  padding: 22px 24px; background:#fff;
}
.faq-wrap .accordion-button:not(.collapsed){
  color:#fff; background: var(--grad-ink); box-shadow:none;
}
.faq-wrap .accordion-button:focus{ box-shadow:none; }
.faq-wrap .accordion-button::after{
  background:none; width:auto; height:auto; content:"+"; font-size:1.5rem; font-weight:400;
  transform:none; transition: transform .25s var(--ease); color:var(--l4d-muted); line-height:1;
}
.faq-wrap .accordion-button:not(.collapsed)::after{ content:"−"; color:#fff; }
.faq-wrap .accordion-body{ padding: 4px 24px 24px; color:var(--l4d-body); font-size:.96rem; }
.faq-wrap .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body{
  background: var(--grad-ink); color:#aab5cb;
}

/* ---------- 11. Support CTA -------------------------------------------- */
.cta-band{
  background: var(--grad-ink); border-radius: var(--r-xl); color:#fff;
  padding: 64px 56px; position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(45% 120% at 100% 0%, rgba(94,124,250,.35), transparent 55%),
    radial-gradient(40% 120% at 0% 100%, rgba(47,107,237,.28), transparent 55%);
}
.cta-band .cta-inner{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; }
.cta-band p{ color:#a9b4cb; }
.cta-grid-lines{
  position:absolute; inset:0; opacity:.5;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 100% 46px; z-index:0;
}
/* ============================ INTEGRATIONS CTA (ig-) ============================ */
.ig-sec{
  position:relative; overflow:hidden;
  background:
    radial-gradient(60% 60% at 50% 120%, rgba(94,124,250,.10), transparent 60%),
    radial-gradient(50% 50% at 50% -10%, rgba(119,169,255,.10), transparent 60%),
    #fff;
}
.ig-grid{
  display:grid; grid-template-columns:repeat(9, 1fr); gap:16px;
  max-width:1120px; margin:0 auto;
}
.ig-tile{ aspect-ratio:1; border-radius:16px; display:grid; place-items:center; }
.ig-logo{
  background:#fff; border:1px solid var(--l4d-line); box-shadow:var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ig-logo:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.ig-logo svg{ width:46%; height:46%; }
.ig-tint{ background:linear-gradient(145deg, rgba(94,124,250,.16), rgba(47,107,237,.05)); }

/* collapse to a centred cluster of logos on smaller screens (flex ignores grid-area) */
@media (min-width: 1200px){
  .ig-grid{
    margin: -120px auto 0;
  }
}
@media (max-width: 991px){
  .ig-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; max-width:520px; }
  .ig-tint{ display:none; }
  .ig-logo{ width:74px; }
}
@media (max-width: 400px){
  .ig-grid{ max-width:320px; gap:12px; }
  .ig-logo{ width:64px; }
}
/* ---------- 12. Footer -------------------------------------------------- */
.footer{ background: var(--l4d-ink); color:#8794aa; padding: 74px 0 20px; }
.footer .brand{ color:#fff; }
.footer h5{ color:#fff; font-family:'Inter'; font-weight:600; font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:18px; }
.footer a{ color:#8794aa; font-size:.95rem; display:block; padding:5px 0; }
.footer a:hover{ color:#fff; }
.footer .ftxt{ color:#7c889e; font-size:.95rem; max-width:300px; }
.social{ display:flex; gap:10px; margin-top:22px; }
.social a{
  width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); color:#aab4c8; padding:0;
}
.social a:hover{ background: var(--l4d-blue); border-color: var(--l4d-blue); color:#fff; transform: translateY(-2px); }
.footer-newsletter .form-control{
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); color:#fff;
  border-radius: 100px 0 0 100px; padding:.75rem 1.1rem;
}
.footer-newsletter .form-control::placeholder{ color:#6d798f; }
.footer-newsletter .form-control:focus{ background: rgba(255,255,255,.08); border-color: var(--l4d-blue); box-shadow:none; color:#fff; }
.footer-newsletter .btn{ border-radius: 0 100px 100px 0; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); margin-top:52px; padding-top:20px; font-size:.9rem; }

/* General Pages */

  .page-title {
        background: #ecf6ff;
    border-bottom: 1px solid var(--bs-border-color);
    background-size: cover;
    padding: 80px 0;
  }
  .page-title h1 {
    text-align: center;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.025em;
  }
  .order-summary {
    padding: 27px !important;
    border-radius: 16px;
    background: var(--dark-text);
    border: 1px solid #d1d1d1;
  }
  
  .checkout_area select {
    padding: 12px;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    appearance: auto;
    width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color);
    margin-bottom: 15px;
    min-height: 50px;
  }
  .checkout_area .form-control {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-shadow: none;
    outline: none;
  }
  
  .contact_info_section .contact_info_box {
    background: linear-gradient(180deg, #4f7cff22 0%, transparent 100%);
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
    display: flex;
        align-items: center;
    gap: 20px;
  }

/* ---------- 13. Reveal / motion ---------------------------------------- */
[data-aos]{ pointer-events:none; }
.aos-animate{ pointer-events:auto; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  [data-aos]{ opacity:1 !important; transform:none !important; }
}

/* ---------- 14. Responsive --------------------------------------------- */
@media (max-width: 991px){
  .section{ padding: 72px 0; }
  .cta-band{ padding: 48px 30px; }
  .hero{ padding: 30px 0 64px; }
}
@media (max-width: 575px){
  .cta-band{ padding: 40px 22px; }
  .price-amt .num{ font-size:2.5rem; }
}
