:root{
  --bg: #F6F8FF;
  --surface: #FFFFFF;
  --text: #0B1220;
  --muted: rgba(11,18,32,.72);
  --muted2: rgba(11,18,32,.56);
  --stroke: rgba(11,18,32,.10);
  --primary: #0B5FFF;
  --primary2: #1D9BF0;
  --accent: #19C37D;
  --amber: #FFB020;
  --shadow: 0 18px 60px rgba(11,18,32,.12);
  --shadow2: 0 10px 30px rgba(11,18,32,.10);
  --radius: 18px;
  --radius2: 28px;
  --max: 1160px;
  --focus: 0 0 0 4px rgba(11,95,255,.20);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 380px at 20% -10%, rgba(11,95,255,.10), transparent 55%),
    radial-gradient(800px 360px at 85% 8%, rgba(25,195,125,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), #FFFFFF 55%, var(--bg));
  line-height:1.45;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;height:auto}

.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}

.skip{
  position:absolute;
  left:12px;
  top:12px;
  transform:translateY(-140%);
  background:var(--surface);
  border:1px solid var(--stroke);
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
  text-decoration:none;
  box-shadow:var(--shadow2);
  z-index:9999;
}
.skip:focus{transform:translateY(0); outline:none; box-shadow:var(--shadow2), var(--focus)}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(246,248,255,.75);
  border-bottom:1px solid rgba(11,18,32,.08);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  min-width: 170px;
}
.brand__mark{
  width:36px;
  height:36px;
  border-radius:12px;
  background:
    radial-gradient(10px 10px at 30% 30%, rgba(255,255,255,.8), transparent 65%),
    linear-gradient(135deg, var(--primary), #2E7BFF 55%, var(--accent));
  box-shadow:0 12px 30px rgba(11,95,255,.22);
}
.brand__text{font-weight:760; letter-spacing:-.02em}
.brand__sub{font-weight:650; color:rgba(11,18,32,.75)}

.nav{display:flex; align-items:center; gap:12px}
.nav__toggle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.7);
  color:var(--text);
  box-shadow:0 8px 24px rgba(11,18,32,.06);
}
.nav__toggle:focus{outline:none; box-shadow:0 8px 24px rgba(11,18,32,.06), var(--focus)}
.nav__toggleIcon{
  width:18px;
  height:12px;
  display:inline-block;
  background:
    linear-gradient(var(--text), var(--text)) 0 0/18px 2px,
    linear-gradient(var(--text), var(--text)) 0 5px/18px 2px,
    linear-gradient(var(--text), var(--text)) 0 10px/18px 2px;
  background-repeat:no-repeat;
  opacity:.9;
}
.nav__toggleText{font-weight:650; font-size:14px}
.nav__menu{
  position:absolute;
  left:20px;
  right:20px;
  top:70px;
  display:none;
  background:rgba(255,255,255,.92);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:10px;
  box-shadow:var(--shadow);
}
.nav__menu.is-open{display:grid; gap:4px}
.nav__link{
  padding:12px 12px;
  border-radius:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:650;
}
.nav__link:hover{background:rgba(11,95,255,.06)}
.nav__link:focus{outline:none; box-shadow:var(--focus)}

.header__cta{display:none}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:750;
  text-decoration:none;
  color:var(--text);
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:focus{outline:none; box-shadow:var(--focus)}
.btn:hover{transform:translateY(-1px)}

.btn--primary{
  color:#fff;
  background:linear-gradient(135deg, var(--primary), #2E7BFF 55%, var(--primary2));
  box-shadow:0 16px 40px rgba(11,95,255,.24);
}
.btn--primary:hover{box-shadow:0 18px 46px rgba(11,95,255,.28)}

.btn--ghost{
  background:rgba(255,255,255,.72);
  border-color:var(--stroke);
  box-shadow:0 12px 30px rgba(11,18,32,.06);
}
.btn--ghost:hover{background:#fff; border-color:rgba(11,18,32,.14)}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(11,95,255,.08);
  border:1px solid rgba(11,95,255,.14);
  color:rgba(11,18,32,.82);
  font-weight:650;
  font-size:14px;
  margin:0 0 12px;
}

.hero{padding:28px 0 16px}
.hero__grid{display:grid; gap:24px; align-items:center}

h1{font-size:36px; line-height:1.05; margin:0 0 12px; letter-spacing:-.03em}
.lead{font-size:16px; color:var(--muted); margin:0 0 18px}

.hero__actions{display:flex; flex-wrap:wrap; gap:10px; margin:0 0 16px}

.storeRow{display:flex; flex-wrap:wrap; gap:10px; margin:6px 0 16px}
.store{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid var(--stroke);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.72);
  box-shadow:0 12px 30px rgba(11,18,32,.06);
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.store:hover{transform:translateY(-1px); background:#fff; box-shadow:0 14px 34px rgba(11,18,32,.08)}
.store:focus{outline:none; box-shadow:0 14px 34px rgba(11,18,32,.08), var(--focus)}
.store__icon{font-size:20px; width:22px; text-align:center}
.store__play{
  width:22px;
  height:22px;
  border-radius:7px;
  background:conic-gradient(from 90deg, #34A853, #4285F4, #EA4335, #FBBC05, #34A853);
}
.store__small{display:block; font-size:12px; color:var(--muted2); font-weight:650}
.store__big{display:block; font-size:14px; font-weight:800; letter-spacing:-.01em}

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.trust__item{
  background:rgba(255,255,255,.72);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:12px;
  box-shadow:0 12px 30px rgba(11,18,32,.06);
}
.trust__kpi{display:block; font-weight:850; letter-spacing:-.02em}
.trust__label{display:block; font-size:12px; color:var(--muted2); margin-top:4px; font-weight:650}

.hero__visual{display:grid; gap:12px; justify-items:center}

.phone{
  position:relative;
  width:min(430px, 100%);
}
.phone__frame{
  border-radius:38px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
  border:1px solid rgba(11,18,32,.12);
  box-shadow:var(--shadow);
  padding:12px;
}
.statusbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 10px 10px;
  color:rgba(11,18,32,.76);
  font-weight:750;
  font-size:12px;
}
.statusbar__dots{
  width:56px;
  height:12px;
  opacity:.7;
  background:
    radial-gradient(circle at 8px 6px, rgba(11,18,32,.6) 2px, transparent 3px),
    radial-gradient(circle at 22px 6px, rgba(11,18,32,.6) 2px, transparent 3px),
    radial-gradient(circle at 36px 6px, rgba(11,18,32,.6) 2px, transparent 3px),
    linear-gradient(rgba(11,18,32,.6), rgba(11,18,32,.6)) 46px 4px/10px 6px;
  background-repeat:no-repeat;
  border-radius:10px;
}

.screen{
  background:linear-gradient(180deg, rgba(11,95,255,.06), rgba(25,195,125,.06));
  border-radius:28px;
  padding:14px;
  border:1px solid rgba(11,18,32,.08);
}

.screen__top{display:flex; align-items:center; gap:10px; margin-bottom:12px}
.avatar{width:38px; height:38px; border-radius:14px; background:linear-gradient(135deg, rgba(11,95,255,.28), rgba(25,195,125,.28))}
.screen__hello{font-weight:850; letter-spacing:-.02em}
.screen__hint{font-size:12px; color:var(--muted2); font-weight:650; margin-top:2px}

.balanceCard{
  border-radius:22px;
  padding:14px;
  color:#fff;
  background:
    radial-gradient(220px 120px at 10% 10%, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(135deg, #0B5FFF, #2E7BFF 52%, #19C37D);
  box-shadow:0 18px 44px rgba(11,95,255,.26);
  margin-bottom:12px;
}
.balanceCard__row{display:flex; align-items:center; justify-content:space-between}
.balanceCard__label{font-weight:700; opacity:.9}
.chip{width:38px; height:28px; border-radius:10px; background:rgba(255,255,255,.20); border:1px solid rgba(255,255,255,.22)}
.balanceCard__amount{font-size:26px; font-weight:900; letter-spacing:-.02em; margin:8px 0}
.currency{opacity:.9; font-weight:850}
.balanceCard__meta{display:flex; justify-content:space-between; font-size:12px; opacity:.92; font-weight:650}

.quick{display:grid; grid-template-columns:repeat(4, 1fr); gap:8px; margin-bottom:12px}
.quick__btn{
  border-radius:18px;
  border:1px solid rgba(11,18,32,.10);
  background:rgba(255,255,255,.78);
  padding:10px 8px;
  display:grid;
  gap:6px;
  justify-items:center;
  font:inherit;
  color:var(--text);
  box-shadow:0 10px 24px rgba(11,18,32,.06);
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.quick__btn:hover{transform:translateY(-1px); background:#fff; box-shadow:0 14px 30px rgba(11,18,32,.08)}
.quick__btn:focus{outline:none; box-shadow:0 14px 30px rgba(11,18,32,.08), var(--focus)}
.quick__btn span:last-child{font-size:11px; font-weight:750; color:rgba(11,18,32,.78)}

.ico{width:22px; height:22px; border-radius:10px; background:rgba(11,95,255,.10); border:1px solid rgba(11,95,255,.18); position:relative}
.ico[data-ico="send"]{background:rgba(11,95,255,.10); border-color:rgba(11,95,255,.18)}
.ico[data-ico="pay"]{background:rgba(25,195,125,.12); border-color:rgba(25,195,125,.22)}
.ico[data-ico="cards"]{background:rgba(255,176,32,.14); border-color:rgba(255,176,32,.22)}
.ico[data-ico="save"]{background:rgba(29,155,240,.12); border-color:rgba(29,155,240,.22)}

.list{
  border-radius:22px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(11,18,32,.10);
  padding:12px;
}
.list__title{font-weight:850; letter-spacing:-.02em; margin-bottom:10px}
.txn{display:grid; grid-template-columns: 30px 1fr auto; gap:10px; align-items:center; padding:8px 0}
.txn + .txn{border-top:1px solid rgba(11,18,32,.06)}
.txn__ico{width:30px; height:30px; border-radius:12px; background:rgba(11,95,255,.10); border:1px solid rgba(11,95,255,.18)}
.txn__ico--blue{background:rgba(29,155,240,.12); border-color:rgba(29,155,240,.22)}
.txn__ico--green{background:rgba(25,195,125,.12); border-color:rgba(25,195,125,.22)}
.txn__name{font-weight:800; font-size:13px}
.txn__meta{font-size:11px; color:var(--muted2); font-weight:650}
.txn__amt{font-weight:850; font-size:13px; color:rgba(11,18,32,.86)}
.txn__amt--plus{color:#0B7A47}

.phone__float{position:absolute; width:220px; max-width:56%;}
.phone__float--one{left:-14px; top:70px}
.phone__float--two{right:-12px; bottom:50px}
.floatCard{
  border-radius:18px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(11,18,32,.10);
  box-shadow:0 18px 50px rgba(11,18,32,.12);
  padding:12px 12px;
  transform:translateZ(0);
}
.floatCard__top{display:flex; align-items:center; gap:8px; font-weight:850; font-size:12px; color:rgba(11,18,32,.78)}
.floatCard__value{margin-top:6px; font-weight:750; letter-spacing:-.01em}
.dot{width:10px; height:10px; border-radius:999px; display:inline-block}
.dot--blue{background:var(--primary)}
.dot--green{background:var(--accent)}
.dot--amber{background:var(--amber)}

.hero__note{display:flex; flex-wrap:wrap; gap:8px; justify-content:center}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--stroke);
  font-weight:750;
  font-size:12px;
  color:rgba(11,18,32,.78);
}

.section{padding:54px 0}
.sectionHead{display:grid; gap:10px; margin-bottom:18px}
.sectionHead h2{margin:0; font-size:28px; letter-spacing:-.03em; line-height:1.1}
.muted{margin:0; color:var(--muted); font-weight:600}

.featureGrid{display:grid; gap:14px}
.featureCard{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(11,18,32,.10);
  border-radius:var(--radius2);
  padding:18px;
  box-shadow:0 14px 40px rgba(11,18,32,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.featureCard:hover{transform:translateY(-2px); box-shadow:0 18px 56px rgba(11,18,32,.10); border-color:rgba(11,18,32,.14)}
.featureCard:focus-within{box-shadow:0 18px 56px rgba(11,18,32,.10), var(--focus)}
.featureCard__top{display:flex; align-items:center; gap:12px; margin-bottom:10px}
.featureCard h3{margin:0; letter-spacing:-.02em}

.icon{
  width:40px;
  height:40px;
  border-radius:16px;
  border:1px solid rgba(11,18,32,.10);
  background:rgba(11,95,255,.08);
  box-shadow:0 12px 30px rgba(11,18,32,.06);
}
.icon[data-icon="daily"]{background:rgba(11,95,255,.08)}
.icon[data-icon="transfers"]{background:rgba(29,155,240,.10)}
.icon[data-icon="cards"]{background:rgba(255,176,32,.12)}
.icon[data-icon="savings"]{background:rgba(25,195,125,.10)}
.icon[data-icon="credit"]{background:rgba(11,95,255,.06)}
.icon[data-icon="care"]{background:rgba(255,176,32,.10)}

.bullets{margin:0 0 14px; padding-left:18px; color:rgba(11,18,32,.84)}
.bullets li{margin:8px 0; font-weight:650}

.preview{
  border-radius:20px;
  border:1px solid rgba(11,18,32,.10);
  background:linear-gradient(180deg, rgba(246,248,255,.6), rgba(255,255,255,.9));
  padding:12px;
  box-shadow:0 12px 26px rgba(11,18,32,.06);
}
.preview__chip{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(11,95,255,.10);
  border:1px solid rgba(11,95,255,.14);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}
.preview__row{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 0}
.preview__row + .preview__row{border-top:1px solid rgba(11,18,32,.06)}
.preview__amount{font-size:22px; font-weight:900; letter-spacing:-.02em; margin:4px 0 8px}
.preview__cta{
  margin-top:10px;
  border-radius:16px;
  padding:12px;
  text-align:center;
  color:#fff;
  font-weight:850;
  background:linear-gradient(135deg, var(--primary), #2E7BFF 55%, var(--primary2));
}

.miniIco{width:18px; height:18px; border-radius:8px; background:rgba(11,95,255,.10); border:1px solid rgba(11,95,255,.16)}
.miniIco--blue{background:rgba(29,155,240,.12); border-color:rgba(29,155,240,.22)}
.miniIco--green{background:rgba(25,195,125,.12); border-color:rgba(25,195,125,.22)}
.miniIco--amber{background:rgba(255,176,32,.14); border-color:rgba(255,176,32,.22)}
.miniRight{width:10px; height:10px; border-right:2px solid rgba(11,18,32,.55); border-top:2px solid rgba(11,18,32,.55); transform:rotate(45deg)}
.miniAvatar{width:18px; height:18px; border-radius:8px; background:linear-gradient(135deg, rgba(11,95,255,.25), rgba(25,195,125,.22)); border:1px solid rgba(11,18,32,.10)}

.toggleRow{display:flex; align-items:center; justify-content:space-between; padding:10px 0}
.toggleRow + .toggleRow{border-top:1px solid rgba(11,18,32,.06)}
.toggle{width:44px; height:26px; border-radius:999px; background:rgba(25,195,125,.16); border:1px solid rgba(25,195,125,.22); position:relative}
.toggle::after{content:""; position:absolute; top:3px; left:22px; width:20px; height:20px; border-radius:999px; background:#fff; box-shadow:0 8px 18px rgba(11,18,32,.12)}

.tag{display:inline-flex; padding:6px 10px; border-radius:999px; border:1px solid rgba(11,18,32,.10); background:rgba(255,255,255,.8); font-weight:800; font-size:12px; color:rgba(11,18,32,.72)}

.bar{height:10px; border-radius:999px; background:rgba(11,18,32,.08); overflow:hidden; border:1px solid rgba(11,18,32,.06); margin:8px 0 8px}
.bar span{display:block; height:100%; background:linear-gradient(90deg, var(--primary), var(--accent)); border-radius:999px}

.friendly{padding:26px 0 18px}
.friendly__grid{display:grid; gap:14px; align-items:center}
.friendly h2{margin:0 0 10px; font-size:26px; letter-spacing:-.03em}
.friendly__chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
.chip2{display:inline-flex; padding:8px 10px; border-radius:999px; background:rgba(255,255,255,.72); border:1px solid var(--stroke); font-weight:750; color:rgba(11,18,32,.74)}

.friendly__card{
  border-radius:var(--radius2);
  background:linear-gradient(135deg, rgba(11,95,255,.10), rgba(25,195,125,.10));
  border:1px solid rgba(11,18,32,.10);
  box-shadow:0 18px 60px rgba(11,18,32,.10);
  padding:18px;
}
.friendly__cardTop{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px}
.friendly__cardTitle{font-weight:900; font-size:20px; letter-spacing:-.02em}
.friendly__cardText{margin-top:8px; color:rgba(11,18,32,.78); font-weight:650}
.friendly__cardFooter{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}

.steps{display:grid; gap:12px}
.step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  align-items:start;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(11,18,32,.10);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:0 14px 40px rgba(11,18,32,.08);
}
.step__num{width:44px; height:44px; border-radius:16px; display:grid; place-items:center; font-weight:950; background:rgba(11,95,255,.10); border:1px solid rgba(11,95,255,.18)}
.step__top{display:flex; align-items:center; gap:10px; margin-bottom:6px}
.step h3{margin:0; letter-spacing:-.02em; font-size:16px}
.step__ico{width:30px; height:30px; border-radius:14px; border:1px solid rgba(11,18,32,.10); background:rgba(25,195,125,.10)}
.step__ico[data-step="download"]{background:rgba(11,95,255,.10)}
.step__ico[data-step="verify"]{background:rgba(25,195,125,.10)}
.step__ico[data-step="card"]{background:rgba(255,176,32,.14)}

.centerCta{display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:18px}

.emotional{padding:54px 0}
.emotional__grid{display:grid; gap:18px; align-items:center}
.emotional h2{margin:0 0 12px; font-size:28px; letter-spacing:-.03em; line-height:1.1}
.emotional__bullets{display:grid; gap:10px; margin:14px 0 18px}
.check{display:flex; gap:10px; align-items:flex-start; font-weight:700; color:rgba(11,18,32,.84)}
.check::before{content:""; width:18px; height:18px; border-radius:7px; background:rgba(25,195,125,.18); border:1px solid rgba(25,195,125,.26); margin-top:2px}

.phone--mini{width:min(360px, 100%)}

.chart{display:grid; grid-template-columns:repeat(6, 1fr); gap:8px; align-items:end; margin:10px 0 12px; height:110px}
.chart__bar{border-radius:12px; background:linear-gradient(180deg, rgba(11,95,255,.25), rgba(25,195,125,.22)); border:1px solid rgba(11,18,32,.10)}

.insights{
  border-radius:22px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(11,18,32,.10);
  padding:10px;
}
.insights__row{display:grid; grid-template-columns: 14px 1fr auto; gap:10px; align-items:center; padding:8px 4px}
.insights__row + .insights__row{border-top:1px solid rgba(11,18,32,.06)}
.insights__amt{font-weight:900; letter-spacing:-.01em; color:rgba(11,18,32,.84)}

.emotional__stamp{
  margin-top:12px;
  display:inline-flex;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--stroke);
  font-weight:800;
  color:rgba(11,18,32,.76);
  box-shadow:0 12px 30px rgba(11,18,32,.06);
}

.docs{display:grid; gap:10px}
.doc{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  border-radius:22px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(11,18,32,.10);
  text-decoration:none;
  color:var(--text);
  box-shadow:0 14px 40px rgba(11,18,32,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.doc:hover{transform:translateY(-2px); background:#fff; box-shadow:0 18px 56px rgba(11,18,32,.10); border-color:rgba(11,18,32,.14)}
.doc:focus{outline:none; box-shadow:0 18px 56px rgba(11,18,32,.10), var(--focus)}
.doc__ico{width:42px; height:42px; border-radius:16px; border:1px solid rgba(11,18,32,.10); background:rgba(11,95,255,.08); flex:0 0 auto}
.doc__text{display:grid; gap:2px; min-width:0}
.doc__title{font-weight:900; letter-spacing:-.01em}
.doc__meta{font-size:13px; color:var(--muted2); font-weight:650}
.doc__go{width:10px; height:10px; border-right:2px solid rgba(11,18,32,.55); border-top:2px solid rgba(11,18,32,.55); transform:rotate(45deg)}
.docs__footer{display:flex; justify-content:center; margin-top:16px}

.support{padding:54px 0 60px}
.support__grid{display:grid; gap:16px; align-items:start}
.support h2{margin:0 0 10px; font-size:28px; letter-spacing:-.03em; line-height:1.1}
.support__cards{display:grid; grid-template-columns:1fr; gap:10px; margin-top:14px}
.supportCard{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(11,18,32,.10);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:0 14px 40px rgba(11,18,32,.08);
}
.supportCard__title{font-weight:850; color:rgba(11,18,32,.76)}
.supportCard__value{display:inline-block; margin-top:6px; font-weight:950; font-size:18px; text-decoration:none; color:var(--text)}
.supportCard__value:focus{outline:none; box-shadow:var(--focus); border-radius:10px}
.supportCard__meta{margin-top:4px; color:var(--muted2); font-weight:650}

.supportPanel{
  background:linear-gradient(135deg, rgba(11,95,255,.10), rgba(255,255,255,.78), rgba(25,195,125,.10));
  border:1px solid rgba(11,18,32,.10);
  border-radius:var(--radius2);
  padding:18px;
  box-shadow:0 18px 60px rgba(11,18,32,.10);
}
.supportPanel__title{font-weight:950; font-size:18px; letter-spacing:-.02em}
.supportPanel__text{margin-top:8px; color:rgba(11,18,32,.76); font-weight:650}

.social{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.social__link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  color:rgba(11,18,32,.86);
  background:rgba(255,255,255,.72);
  border:1px solid var(--stroke);
  font-weight:750;
  box-shadow:0 12px 30px rgba(11,18,32,.06);
}
.social__link:hover{background:#fff; transform:translateY(-1px)}
.social__link:focus{outline:none; box-shadow:0 12px 30px rgba(11,18,32,.06), var(--focus)}
.social__ico{width:18px; height:18px; border-radius:7px; background:rgba(11,95,255,.12); border:1px solid rgba(11,95,255,.18)}
.social__ico[data-social="ig"]{background:rgba(255,176,32,.14); border-color:rgba(255,176,32,.22)}
.social__ico[data-social="yt"]{background:rgba(29,155,240,.12); border-color:rgba(29,155,240,.22)}

.footer{
  padding:28px 0 18px;
  border-top:1px solid rgba(11,18,32,.10);
  background:rgba(246,248,255,.65);
}
.footer__grid{display:grid; gap:16px}
.footer__title{font-weight:900; letter-spacing:-.01em; margin-bottom:8px}
.footer__link{display:block; text-decoration:none; color:rgba(11,18,32,.86); font-weight:700; margin:8px 0}
.footer__link:hover{text-decoration:underline}
.footer__link:focus{outline:none; box-shadow:var(--focus); border-radius:10px}
.footer__meta{color:var(--muted2); font-weight:650; font-size:13px; margin:6px 0}
.footer__bottom{display:flex; flex-direction:column; gap:8px; padding-top:14px; margin-top:14px; border-top:1px solid rgba(11,18,32,.08)}
.footer__copy{font-weight:750}
.footer__mini{color:var(--muted2); font-weight:650; font-size:13px}

.reveal{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1; transform:translateY(0)}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn,.store,.featureCard,.doc,.quick__btn,.social__link{transition:none}
  .reveal{transition:none; opacity:1; transform:none}
}

@media (min-width: 720px){
  .hero{padding:52px 0 26px}
  h1{font-size:46px}
  .lead{font-size:18px}
  .hero__grid{grid-template-columns: 1.1fr .9fr; gap:24px}
  .hero__visual{justify-items:end}
  .nav__toggle{display:none}
  .nav__menu{
    position:static;
    display:flex;
    gap:8px;
    padding:0;
    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;
  }
  .nav__link{padding:10px 12px; border-radius:14px; font-weight:750; color:rgba(11,18,32,.82)}
  .nav__link:hover{background:rgba(11,95,255,.08)}
  .header__cta{display:block}
  .featureGrid{grid-template-columns:repeat(2, 1fr)}
  .friendly__grid{grid-template-columns: 1.1fr .9fr; gap:18px}
  .steps{grid-template-columns:repeat(3, 1fr)}
  .step{grid-template-columns: 1fr; gap:10px}
  .step__num{width:52px; height:52px; border-radius:18px}
  .support__grid{grid-template-columns: 1.05fr .95fr; gap:18px}
  .support__cards{grid-template-columns:repeat(2, 1fr)}
  .footer__grid{grid-template-columns: 1.2fr 1fr 1fr 1fr}
  .footer__bottom{flex-direction:row; align-items:center; justify-content:space-between}
}

@media (min-width: 1040px){
  h1{font-size:54px}
  .sectionHead h2{font-size:34px}
  .emotional h2, .support h2{font-size:34px}
  .featureGrid{grid-template-columns:repeat(3, 1fr)}
  .phone__float--one{left:-46px}
  .phone__float--two{right:-42px}
}
