/* =====================================================================
   CLOUD LOCKER â€” Cloud Storage Platform
   Design system + component styles
   Palette: soft professional blue, light-first with dark rhythm sections
   Type: Space Grotesk (display) + Inter (body)
   ===================================================================== */

:root {
  /* Blues */
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --sky-500: #0ea5e9;
  --sky-400: #38bdf8;

  /* Dark */
  --navy-900: #060c1d;
  --navy-800: #0a1229;
  --navy-700: #0f1b3d;
  --navy-600: #16234d;

  /* Neutral / text */
  --ink: #0f1b33;
  --ink-soft: #2b3a55;
  --muted: #5b6b85;
  --muted-2: #8595ad;
  --line: #e5ecf7;
  --line-soft: #eef3fb;

  /* Backgrounds */
  --white: #ffffff;
  --tint: #f2f6ff;
  --tint-2: #eaf1ff;
  --tint-3: #e6effe;

  /* Effects */
  --grad-blue: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  --grad-blue-soft: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --grad-hero: radial-gradient(120% 120% at 15% 0%, #eef4ff 0%, #f6f9ff 45%, #ffffff 100%);
  --grad-dark: linear-gradient(160deg, #0a1229 0%, #0f1b3d 55%, #0a1229 100%);

  --shadow-sm: 0 2px 8px rgba(15, 27, 51, .05);
  --shadow-md: 0 12px 30px rgba(20, 40, 90, .08);
  --shadow-lg: 0 30px 70px rgba(20, 40, 90, .14);
  --shadow-blue: 0 18px 40px rgba(37, 99, 235, .28);

  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 800;
}

a { text-decoration: none; color: inherit; transition: color .2s ease; }

img { max-width: 100%; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 22px; }

section { position: relative; }
.container-fluid{
  max-width: 1400px;
}
/* Section rhythm helpers */
.sec, .section { padding: 96px 0; }
.sec-tight { padding: 72px 0; }

.bg-tint { background: var(--tint); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--navy-800); color: #d7e0f2; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

/* ---------- Typography scale ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600);
  padding: 7px 14px; border-radius: 100px;
  background: var(--tint-2); border: 1px solid #dbe6ff;
}
.bg-dark .eyebrow { background: rgba(59,130,246,.12); border-color: rgba(96,165,250,.25); color: var(--blue-300); }

.sec-title { font-size: clamp(30px, 4vw, 46px); margin: 18px 0 0; }
.sec-lead { font-size: 17px; color: var(--muted); max-width: 560px; margin: 16px 0 0; }
.bg-dark .sec-lead { color: #9fb0cf; }

.center-head { text-align: center; }
.center-head .sec-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bs-btn-focus-box-shadow: none;
  font-family: var(--font-body);
  font-weight: 800; font-size: 15px;
  border-radius: 100px; padding: 13px 26px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  display: inline-flex; align-items: center; gap: 9px;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue-600); border-color: var(--blue-600); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); color: #fff; transform: translateY(-2px); box-shadow: 0 22px 46px rgba(37,99,235,.34); }

.btn-ghost {background: transparent;color: var(--ink);border-color: var(--muted-2);}
.btn-ghost:hover { border-color: var(--blue-400); color: var(--blue-600); background: var(--tint); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #eef4ff; color: var(--blue-700); transform: translateY(-2px); }

.btn-dark-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.16); }
.btn-dark-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color:#fff; }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(20,40,90,.07);
  border-bottom: 1px solid rgba(229,236,247,.9);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; max-width:200px}
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad-blue);
  display: grid; place-items: center; box-shadow: 0 8px 18px rgba(37,99,235,.32);
  flex: 0 0 auto;
}
.brand-mark svg { width: 20px; height: 20px; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.main-nav a:hover { color: var(--blue-600); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; border-radius: 12px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  background: var(--grad-hero);
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(closest-side, rgba(59,130,246,.10), transparent 70%),
    radial-gradient(closest-side, rgba(14,165,233,.10), transparent 70%);
  background-position: 82% 8%, 8% 62%;
  background-size: 620px 620px, 520px 520px;
  background-repeat: no-repeat; pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(115% 90% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(115% 90% at 50% 0%, #000 30%, transparent 75%);
}
.hero-inner {position: relative;text-align: center;max-width: 900px;margin-inline: auto;z-index: 2;}
.hero h1 { font-size: clamp(38px, 6.2vw, 68px); font-weight: 800; }
.hero h1 .grad { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18.5px; color: var(--muted); max-width: 560px; margin: 22px auto 0; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.hero-note {margin-top: 16px;font-size: 15px;color: var(--ink-soft);display: flex;gap: 18px;justify-content: center;flex-wrap: wrap;}
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { color: var(--blue-500); }

/* Hero CTA glow halo */
.hero-cta { position: relative; }
.hero-cta .btn-primary { position: relative; z-index: 2; }
.hero-cta .btn-primary::before {
  content: ""; position: absolute; inset: -6px -10px; z-index: -1; border-radius: 100px;
  background: linear-gradient(90deg, #7c5cff, #2563eb, #0ea5e9, #22d3c5, #7c5cff);
  background-size: 300% 100%; filter: blur(11px); opacity: .55;
  animation: haloShift 6s linear infinite;
}
@keyframes haloShift { 0%{ background-position: 0% 50%;} 100%{ background-position: 300% 50%;} }

/* =====================================================================
   HERO BENTO ROW
   ===================================================================== */
.hero-bento {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 20px; margin-inline: auto; position: relative; z-index: 1;
}
@media (min-width:1200px){
  .hero-bento{
      margin-top: -50px; 
  }
}
.hero-bento .bg-img{
  position: absolute;
    max-width: 50vw;
    opacity: 0.5;
}
.bento-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }

.bento-tall { flex: 1.2 1 0; min-height: 400px; box-shadow: var(--shadow-lg); }
.bento-med  { flex: 0.85 1 0; min-height: 300px; box-shadow: var(--shadow-md); }

/* Dark cards */
.bento-dark { background: var(--grad-dark); border: 1px solid rgba(96,165,250,.14); padding: 22px 20px; display: flex; flex-direction: column; }
.bd-head { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff; margin-bottom: 14px; }
.bd-search {
  display: flex; align-items: center; gap: 9px; font-size: 13px; color: #9fb3d6;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 9px 15px; margin-bottom: 12px;
}
.bd-result {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 14px 15px;
}
.bd-result-title { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 800; font-size: 13.5px; color: #fff; margin-bottom: 6px; }
.bd-result-title svg { color: var(--sky-400); }
.bd-result p { margin: 0; font-size: 12.5px; line-height: 1.55; color: #b6c6e2; }
.bd-result p b { color: #e7eefb; font-weight: 800; }
.bd-result-teal .bd-result-title svg { color: #22d3c5; }
.bd-photo { margin-top: auto; border-radius: 16px; overflow: hidden; }
.bd-photo img { width: 100%; height: 190px; object-fit: cover; display: block; }
.bento-dark-alt { padding-top: 0; }
.bd-photo-top { margin-top: 0; margin-bottom: 14px; border-radius: 0; position: relative; }
.bd-photo-top img { height: 210px; border-radius: 0 0 16px 16px; }
.notif-card {
  margin: -28px 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 13px;
    padding: 10px 13px;
    box-shadow: var(--shadow-md);
}
.notif-ic { width: 32px; height: 32px; border-radius: 9px; background: var(--tint-2); display: grid; place-items: center; flex: 0 0 auto; }
.notif-card b { font-size: 12.5px; color: var(--ink); font-family: var(--font-display); display: block; }
.notif-card small { font-size: 11px; color: var(--muted-2); }
.bento-dark-alt .bd-result { margin-top: 22px; }

/* Light cards */
.bento-light { background: linear-gradient(165deg, #eef3ff 0%, #e6edff 100%); border: 1px solid #dde7ff; padding: 24px 22px; display: flex; flex-direction: column; }
.bl-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--ink); line-height: 1; }
.bl-head .stat-num { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 40px; }
.bl-head p { margin: 6px 0 0; font-size: 14px; color: var(--muted); }

/* app burst */
.app-burst { position: relative; flex: 1; display: flex; align-items: flex-end; justify-content: center; min-height: 130px; margin-top: 20px; }
.burst-box { position: relative; z-index: 2; }
.app-burst .chip {
  position: absolute; bottom: 18px; width: 38px; height: 38px; border-radius: 11px;
  background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; z-index: 3;
}
.chip svg { color: var(--blue-600); }
.chip-1 { left: 6%;  transform: translateY(-34px) rotate(-9deg); }
.chip-2 { left: 28%; transform: translateY(-64px) rotate(4deg); }
.chip-3 { left: 50%; margin-left: -19px; transform: translateY(-80px); }
.chip-4 { right: 26%; transform: translateY(-58px) rotate(-5deg); }
.chip-5 { right: 5%;  transform: translateY(-30px) rotate(10deg); }
.chip-1 svg { color: var(--sky-500); } .chip-3 svg { color: #7c5cff; } .chip-5 svg { color: #16a34a; }

/* uptime viz */
.uptime-viz { flex: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 10px; }
.cloud-badge { background: #fff; border-radius: 14px; padding: 12px; box-shadow: var(--shadow-sm); align-self: flex-end; }
.uptime-bars { flex: 1; display: flex; align-items: flex-end; gap: 6px; height: 90px; }
.uptime-bars span { flex: 1; background: var(--grad-blue-soft); border-radius: 6px 6px 3px 3px; opacity: .85; }
.uptime-bars span:last-child { background: var(--grad-blue); opacity: 1; }

/* Circular scroll badge */
.bento-circle { flex: 0 0 auto; width: 176px; height: 176px; align-self: center; position: relative; }
.circle-text { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.circle-text text { font-family: var(--font-body); font-size: 11.5px; font-weight: 800; letter-spacing: 2.5px; fill: var(--muted); text-transform: uppercase; }
.circle-arrow {
  position: absolute; inset: 0; margin: auto; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-blue); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-blue);
}
.circle-arrow svg { animation: nudge 1.8s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes nudge { 0%,100%{ transform: translateY(-2px);} 50%{ transform: translateY(3px);} }


/* =====================================================================
   TRUSTED LOGOS
   ===================================================================== */
.trusted { padding: 34px 0 8px; border-top: 1px solid var(--line-soft); }
.trusted p { text-align: center; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; margin-bottom: 26px; }
.logo-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.logo-item { display: flex; align-items: center; gap: 9px; color: var(--muted-2); font-family: var(--font-display); font-weight: 800; font-size: 19px; opacity: .72; transition: .25s; }
.logo-item:hover { opacity: 1; color: var(--ink-soft); }
.logo-item svg { width: 24px; height: 24px; }

/* =====================================================================
   FEATURES
   ===================================================================== */
.feat-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 54px; }
.feat-big {
  border-radius: var(--radius-lg); padding: 34px; position: relative; overflow: hidden;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}
.feat-big:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feat-big h3 { font-size: 24px; }
.feat-big p { color: var(--muted); margin: 12px 0 0; max-width: 380px; }
.feat-big .go { position: absolute; top: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: var(--tint-2); display: grid; place-items: center; color: var(--blue-600); transition: .25s; }
.feat-big:hover .go { background: var(--blue-600); color: #fff; transform: rotate(-45deg); }

.feat-visual { margin-top: 28px; border-radius: 18px; border: 1px solid var(--line-soft); background: var(--tint); padding: 20px; overflow: hidden; }

/* mini sync visual */
.sync-nodes { display: flex; align-items: center; justify-content: space-between; }
.sync-node { text-align: center; }
.sync-dev { width: 62px; height: 62px; border-radius: 16px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--blue-600); box-shadow: var(--shadow-sm); margin-inline: auto; }
.sync-node small { display: block; margin-top: 9px; font-size: 12px; color: var(--muted); font-weight: 800; }
.sync-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--blue-300), var(--blue-500)); position: relative; margin: 0 8px; margin-bottom: 24px; }
.sync-line::after { content:""; position:absolute; top:50%; left:0; width:8px; height:8px; border-radius:50%; background: var(--blue-600); transform: translateY(-50%); box-shadow: 0 0 0 4px rgba(37,99,235,.15); animation: dash 2.6s linear infinite; }
@keyframes dash { from { left: 0; } to { left: 100%; } }

/* collab visual */
.collab-rows > div { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line-soft); border-radius: 13px; padding: 11px 13px; margin-bottom: 10px; }
.collab-rows > div:last-child { margin-bottom: 0; }
.collab-av { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto; }
.av1 { background: var(--grad-blue); } .av2 { background: linear-gradient(135deg,#7c5cff,#a78bfa);} .av3 { background: linear-gradient(135deg,#16a34a,#4ade80);} 
.collab-rows p { margin: 0; font-size: 13px; color: var(--ink); font-weight: 500; }
.collab-rows small { color: var(--muted-2); font-size: 11.5px; }
.collab-tag { margin-left: auto; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 100px; background: var(--tint-2); color: var(--blue-600); }

/* feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.feat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: .3s; }
.feat-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feat-card .fi { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--tint-2); color: var(--blue-600); margin-bottom: 18px; }
.feat-card h4 { font-size: 18.5px; }
.feat-card p { color: var(--muted); font-size: 14.5px; margin: 10px 0 0; }

/* ===== How it works (scoped: hiw- / hm-) ===== */
.hiw-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:48px; align-items:center; margin-top:44px; }
.hiw-nav{ display:flex; flex-direction:column; gap:8px; }

.hiw-step{
  position:relative; width:100%; text-align:left; background:transparent; border:none;
  padding:26px 26px; border-radius:20px; cursor:pointer;
  transition:background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.hiw-step:focus-visible{ outline:2px solid var(--blue-500,#3b82f6); outline-offset:3px; }
.hiw-step.active{ background:#fff; box-shadow:var(--shadow-lg,0 30px 70px rgba(20,40,90,.14)); transform:translateY(-2px); }
.hiw-step:not(.active):hover{ background:rgba(37,99,235,.04); }

.hiw-progress{
  position:absolute; top:0; left:26px; right:26px; height:3px; border-radius:100px;
  background:#e7edf9; overflow:hidden; opacity:0; transition:opacity .3s;
}
.hiw-step.active .hiw-progress{ opacity:1; }
.hiw-progress i{ display:block; height:100%; width:0; border-radius:100px; background:var(--grad-blue,linear-gradient(135deg,#2563eb,#0ea5e9)); }
@keyframes hiwFill{ from{ width:0; } to{ width:100%; } }

.hiw-icon{ width:44px; height:44px; border-radius:13px; display:grid; place-items:center; margin-bottom:16px; }
.hiw-icon.icon-blue{ background:#e2ecff; color:#2563eb; }
.hiw-icon.icon-sky{ background:#dcf3fe; color:#0ea5e9; }
.hiw-icon.icon-teal{ background:#d6f6f0; color:#0ea597; }

.hiw-step h3{ font-family:var(--font-display,"Space Grotesk",sans-serif); font-size:20px; font-weight:600; color:var(--ink,#0f1b33); margin:0 0 8px; letter-spacing:-.01em; }
.hiw-step p{ font-size:14.5px; line-height:1.6; color:var(--muted,#5b6b85); margin:0; max-width:380px; }

/* Right visual panel */
.hiw-visual{
  border-radius:28px; padding:34px; min-height:420px;
  background:
    radial-gradient(circle, rgba(37,99,235,.10) 1px, transparent 1px) 0 0/16px 16px,
    linear-gradient(160deg,#eef2ff 0%,#e7edff 100%);
  border:1px solid #e0e8ff; display:flex; align-items:center;
}
.hiw-visual .tab-pane{ width:100%; }
.hiw-visual .tab-pane.fade{ transition:opacity .45s ease, transform .45s ease; transform:translateY(10px); }
.hiw-visual .tab-pane.fade.show{ transform:translateY(0); }

.hiw-mock{ background:#fff; border-radius:20px; box-shadow:0 20px 45px rgba(20,40,90,.10); padding:20px; }
.hm-head{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.hm-dot{ width:9px; height:9px; border-radius:50%; background:var(--grad-blue,#2563eb); }
.hm-head b{ font-family:var(--font-display,"Space Grotesk",sans-serif); font-size:15px; color:var(--ink,#0f1b33); }
.hm-tag{ margin-left:auto; font-size:11.5px; font-weight:600; color:var(--muted-2,#8595ad); background:#f1f5fd; padding:4px 10px; border-radius:100px; }
.hm-tag.ok{ color:#0ea597; background:#dbf6f1; display:inline-flex; align-items:center; gap:4px; }

.hm-drop{ border:1.5px dashed #cdd9f2; border-radius:14px; padding:18px; display:flex; flex-direction:column; align-items:center; gap:8px; color:var(--muted-2,#8595ad); font-size:13px; margin-bottom:12px; }
.hm-drop svg{ color:var(--blue-600,#2563eb); }

.hm-file, .hm-person{ display:flex; align-items:center; gap:12px; padding:11px 13px; border:1px solid var(--line,#e5ecf7); border-radius:13px; margin-top:9px; }
.hm-fic{ width:34px; height:34px; border-radius:10px; display:grid; place-items:center; flex:0 0 auto; }
.hm-fic.blue{ background:#e2ecff; color:#2563eb; } .hm-fic.teal{ background:#d6f6f0; color:#0ea597; }
.hm-fic.violet{ background:#eae4ff; color:#7c5cff; } .hm-fic.amber{ background:#fdf0d5; color:#d99a2b; } .hm-fic.green{ background:#dcf5e7; color:#16a34a; }
.hm-grow{ flex:1; min-width:0; }
.hm-name{ font-size:13.5px; font-weight:600; color:var(--ink,#0f1b33); }
.hm-meta{ font-size:12px; color:var(--muted-2,#8595ad); }
.hm-bar{ height:5px; border-radius:100px; background:#e7edf9; overflow:hidden; margin-top:6px; }
.hm-bar i{ display:block; height:100%; background:var(--grad-blue,linear-gradient(135deg,#2563eb,#0ea5e9)); border-radius:100px; }

.hm-folders{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.hm-folder{ border:1px solid var(--line,#e5ecf7); border-radius:14px; padding:14px; }
.hm-folder .hm-fic{ margin-bottom:10px; }
.hm-devices{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.hm-dev{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:var(--ink,#0f1b33); background:#f4f7fe; border:1px solid var(--line,#e5ecf7); border-radius:100px; padding:6px 12px; }
.hm-dev svg{ color:var(--blue-600,#2563eb); }
.hm-dev em{ font-style:normal; color:#0ea597; font-weight:600; }

.hm-share-link{ display:flex; align-items:center; gap:9px; border:1px solid var(--line,#e5ecf7); border-radius:12px; padding:9px 9px 9px 13px; font-size:13px; color:var(--muted,#5b6b85); margin-bottom:6px; }
.hm-share-link svg{ color:var(--blue-600,#2563eb); flex:0 0 auto; }
.hm-share-link span{ flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.hm-share-link button{ border:none; background:var(--tint-2,#eaf1ff); color:var(--blue-700,#1d4ed8); font-weight:600; font-size:12.5px; padding:6px 14px; border-radius:100px; }
.hm-av{ width:34px; height:34px; border-radius:50%; display:grid; place-items:center; color:#fff; font-weight:700; font-size:13px; flex:0 0 auto; }
.av1{ background:linear-gradient(135deg,#2563eb,#0ea5e9); } .av2{ background:linear-gradient(135deg,#7c5cff,#a78bfa); } .av3{ background:linear-gradient(135deg,#0ea597,#22d3c5); }
.hm-perm{ font-size:12px; font-weight:600; color:var(--muted,#5b6b85); background:#f4f7fe; border:1px solid var(--line,#e5ecf7); border-radius:100px; padding:5px 12px; }
.hm-send{ width:100%; margin-top:14px; border:none; border-radius:100px; padding:12px; font-weight:600; font-size:14px; color:#fff; background:var(--grad-blue,linear-gradient(135deg,#2563eb,#0ea5e9)); display:flex; align-items:center; justify-content:center; gap:8px; }
.fs-planpick { display:flex; flex-direction:column; gap:10px; }
.fs-pp {
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border: 1.5px solid var(--line);
  border-radius:11px;
  padding:13px 15px;
  transition: border-color .25s, box-shadow .25s;
}
.fs-pp .nm  { font-family:var(--fs-display); font-weight:600; font-size:.92rem; color:var(--fs-text); }
.fs-pp .amt { margin-left:auto; font-family:var(--fs-mono); font-weight:600; font-size:.95rem; color:var(--fs-text); }
.fs-pp .amt i {font-style:normal;font-size:.7rem;color: var(--muted-2);margin-left:2px;}
.fs-pp.is-sel {border-color: var(--blue-600);box-shadow:0 0 0 3px rgba(47,107,255,.12);}
.fs-pp .chk {width:20px;height:20px;border-radius:50%;background: var(--blue-600);color:#fff;display:grid;place-items:center;flex:none;}
.fs-pp .chk svg { width:12px; height:12px; }

@media (max-width:991px){
  .hiw-grid{ grid-template-columns:1fr; gap:26px; }
  .hiw-visual{ min-height:0; order:2; }
  .hiw-step p{ max-width:none; }
}
@media (prefers-reduced-motion:reduce){
  .hiw-progress i{ animation:none !important; width:100% !important; }
  .hiw-visual .tab-pane.fade{ transition:none; transform:none; }
}
/* =====================================================================
   BENEFITS / STATS
   ===================================================================== */
.bene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.stat-card { border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line); background: #fff; background-size: cover !important;}
.stat-card .big { font-family: var(--font-display); font-size: clamp(34px, 4vw, 46px); font-weight: 700; line-height: 1; color: var(--ink); }
.stat-card p { margin: 12px 0 0; font-size: 14px; color: var(--muted); }
.stat-blue { background: var(--grad-blue); border: 0; color: #fff; box-shadow: var(--shadow-blue); }
.stat-blue .big { color: #fff; }
.stat-blue p { color: rgba(255,255,255,.85); }
.stat-blue .si { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.stat-tint { background: var(--tint); }

.bene-wide { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; margin-top: 22px; }
.quote-card { background: var(--navy-800); border-radius: var(--radius); padding: 34px; color: #fff; position: relative; overflow: hidden; }
.quote-card::before { content:"\201C"; position:absolute; top: -20px; right: 22px; font-family: var(--font-display); font-size: 150px; color: rgba(96,165,250,.16); }
.quote-card p { font-size: 20px; line-height: 1.5; color: #eaf1ff; font-family: var(--font-display); font-weight: 500; position: relative; }
.quote-meta { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.quote-av { width: 46px;
    height: 46px;
    border-radius:50%;
    background: var(--grad-blue-soft);
    background-size: cover;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 21px;
    font-weight: 600; }
.quote-meta b { display: block; font-size: 15px; color: #fff; }
.quote-meta small { color: #9fb0cf; }

/* =====================================================================
   PRICING  (dark)
   ===================================================================== */
.pricing { background: var(--grad-dark); overflow: hidden; }
.pricing::before { content:""; position:absolute; top:-15%; left:50%; transform: translateX(-50%); width:700px; height:400px; background: var(--blue-600); filter: blur(160px); opacity:.16; }
.pricing .wrap { position: relative; z-index: 2; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.price-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column;
  transition: .3s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(96,165,250,.35); }
.price-card.featured { background: #fff; color: var(--ink); box-shadow: 0 40px 80px rgba(0,0,0,.4); border: 0; transform: scale(1.02); }
.price-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.price-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #cdd8ee; display: flex; align-items: center; justify-content: space-between; }
.price-card.featured .price-name { color: var(--ink); }
.price-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 5px 11px; border-radius: 100px; background: var(--grad-blue); color: #fff; }
.price-amt { font-family: var(--font-display); margin: 10px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.price-amt b { font-size: 48px; font-weight: 700; color: #fff; }
.price-card.featured .price-amt b { color: var(--ink); }
.price-amt span { font-size: 15px; color: #9fb0cf; }
.price-card.featured .price-amt span { color: var(--muted); }
.price-desc { font-size: 15px; color: #9fb0cf; margin-bottom: 22px; }
.price-card.featured .price-desc { color: var(--muted); }
.price-feats { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: #cdd8ee; padding: 8px 0; }
.price-card.featured .price-feats li { color: var(--ink-soft); }
.price-feats svg { flex: 0 0 auto; margin-top: 3px; color: var(--blue-400); }
.price-card.featured .price-feats svg { color: var(--blue-600); }
.price-toggle { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: 6px; margin-top: 24px; }
.pt-opt { padding: 8px 18px; border-radius: 100px; font-size: 14px; font-weight: 800; color: #9fb0cf; cursor: pointer; transition: .2s; }
.pt-opt.active { background: #fff; color: var(--navy-800); }
.pt-save { font-size: 12px; color: var(--blue-300); font-weight: 800; }

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

.faq-aside .btn { margin-top: 22px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink); cursor: pointer; }
.faq-q .chev { width: 34px; height: 34px; border-radius: 50%; background: var(--tint-2); display: grid; place-items: center; color: var(--blue-600); flex: 0 0 auto; transition: .3s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--blue-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--muted); font-size: 15px; margin: 0 4px 22px; max-width: 640px; }

/* =====================================================================
   SUPPORT CTA
   ===================================================================== */
.cta-banner {
    background: linear-gradient(135deg, rgb(37 99 235 / 80%) 0%, rgb(14 165 233 / 98%) 100%), url(../../images/cta-bg.jpg);
    border-radius: var(--radius-xl);
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-banner::before { content:""; position:absolute; inset:0; background-image: radial-gradient(closest-side, rgba(255,255,255,.16), transparent 70%); background-position: 90% 20%; background-size: 500px 500px; background-repeat:no-repeat; }
.cta-banner h2 { color: #fff; font-size: clamp(28px, 4vw, 60px); position: relative; }
.cta-banner p {color: rgba(255,255,255,.9);margin: 14px auto;position: relative;max-width: 580px;}
.cta-actions {display: flex;gap: 13px;justify-content: center;position: relative;flex-wrap: wrap;}

.support-row {display: grid;grid-template-columns: repeat(2, 1fr);gap: 22px;margin-top: 40px;}
.support-card {display: flex;align-items: center;gap: 15px;padding: 15px;border: 1px solid rgba(255,255,255,.16);/* max-width: 320px; */border-radius: var(--radius);background: rgb(255 255 255 / 20%);transition: .25s;}
.support-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); }
.support-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--tint-2); color: var(--blue-600); display: grid; place-items: center; flex: 0 0 auto; }
.support-card small { color: var(--line-soft); font-size: 15px; display: block; }
.support-card b { font-family: var(--font-display); font-size: 17px; color: var(--white); }

/* =====================================================================
   FOOTER  (dark)
   ===================================================================== */
.site-footer { background: var(--navy-900); color: #9fb0cf; padding: 76px 0 0; overflow: hidden; }
.foot-top { display: grid; grid-template-columns: 1.6fr 0.8fr 0.8fr 1.4fr; gap: 40px; padding-bottom: 54px; }
.foot-brand .brand { color: #fff; margin-bottom: 18px; }
.foot-brand p { font-size: 14.5px; color: #8595ad; max-width: 300px; }
.foot-social { display: flex; gap: 11px; margin-top: 22px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cdd8ee; transition: .25s; }
.foot-social a:hover { background: var(--blue-600); color: #fff; transform: translateY(-3px); }
.foot-col h5 { color: #fff; font-family: var(--font-display); font-size: 18px; margin-bottom: 18px; }
.foot-col a { display: block; font-size: 14.5px; color: #8595ad; padding: 7px 0; }
.foot-col a:hover { color: #fff; }

.foot-word { text-align: center; line-height: .8; padding-top: 20px; }
.foot-word span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(70px, 20vw, 190px);
  letter-spacing: -.03em; line-height: .8;
  background: linear-gradient(180deg, rgba(96,165,250,.35), rgba(96,165,250,0));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: -10px; }
.foot-bottom p { margin: 0; font-size: 13.5px; color: #8595ad; }
.foot-bottom .links { display: flex; gap: 22px; }
.foot-bottom .links a { font-size: 13.5px; color: #8595ad; }
.foot-bottom .links a:hover { color: #fff; }


/* General Pages */

  .page-title {
        background: #ecf6ff;
    border-bottom: 1px solid var(--bs-border-color);
    background-size: cover;
    padding: 160px 0 80px;
  }
  .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;
  }

/* =====================================================================
   AOS-lite reveal (fallback if AOS lib fails)
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px) {
  .sec, .section { padding: 72px 0; }
  .main-nav, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .main-nav {
    display: flex; position: absolute; top: 100%; left: 14px; right: 14px;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 14px; box-shadow: var(--shadow-lg); margin-top: 10px;
  }
  .site-header.open .main-nav a { width: 100%; padding: 12px 10px; border-radius: 10px; }
  .site-header.open .main-nav a:hover { background: var(--tint); }

  .hero-bento { flex-wrap: wrap; align-items: stretch; margin-top: 56px; }
  .bento-tall, .bento-med { flex: 1 1 calc(50% - 10px); min-height: 300px; }
  .bento-tall { min-height: 340px; }
  .bento-circle { order: -1; flex: 1 1 100%; width: auto; height: auto; display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 6px; }
  .bento-circle .circle-text { width: 120px; height: 120px; }

  .feat-duo { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
  .bene-wide { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .faq-layout { grid-template-columns: 1fr; gap: 26px; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px; }
  .cta-actions { justify-content: flex-start; }
  .support-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 18px; }
  .hero { padding: 128px 0 64px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-bento { gap: 14px; }
  .bento-tall, .bento-med { flex: 1 1 100%; min-height: 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .bene-grid { grid-template-columns: 1fr; }
  .logo-row { justify-content: center; gap: 26px 34px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

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