:root {
  --top-notice-height: 0px;
  --bg: #f4f8ff;
  --bg-soft: #eaf2ff;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --text: #10295d;
  --text-strong: #0a2253;
  --muted: #5f7197;
  --primary: #165ad8;
  --primary-strong: #0d3fa4;
  --secondary: #2e9d72;
  --accent: #1b66ec;
  --border: rgba(22, 90, 216, 0.12);
  --shadow: 0 24px 60px rgba(14, 47, 110, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  padding-top: var(--top-notice-height);
  background:
    radial-gradient(circle at 16% 8%, rgba(101, 157, 255, 0.22), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(33, 94, 206, 0.12), transparent 28%),
    linear-gradient(180deg, #edf4ff 0%, #f8fbff 36%, #ffffff 100%);
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; margin: 0; color: var(--text-strong); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1220px, 92vw); margin-inline: auto; }
.muted { color: var(--muted); }
.section { padding: 84px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
  background: rgba(244, 248, 255, 0.72);
  border-bottom: 1px solid rgba(23, 84, 196, 0.08);
}

.top-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: linear-gradient(92deg, #0b2f7b 0%, #165ad8 48%, #1a69ef 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 26px rgba(7, 32, 87, 0.3);
  overflow: hidden;
}
.top-notice.is-hidden {
  display: none;
}
.top-notice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.2) 50%, transparent 86%);
  transform: translateX(-38%);
  animation: topNoticeSheen 6s linear infinite;
  pointer-events: none;
}
.top-notice-inner {
  position: relative;
  min-height: 60px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.top-notice-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.top-notice-badge i {
  color: #fff;
  font-size: 0.96rem;
}
.top-notice-text {
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1px;
  animation: topNoticePulse 1.8s ease-in-out infinite;
}
.top-notice-text a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.top-notice-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.93);
  color: #0f3f9f;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(3, 22, 63, 0.22);
}
.top-notice-cta:hover {
  background: #fff;
}
.top-notice-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top-notice-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: rgba(7, 31, 83, 0.28);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-notice-close:hover {
  background: rgba(7, 31, 83, 0.42);
}

@keyframes topNoticePulse {
  0%,
  100% {
    opacity: 0.9;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.34);
  }
}

@keyframes topNoticeSheen {
  0% {
    transform: translateX(-42%);
  }
  100% {
    transform: translateX(42%);
  }
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 24px;
}
.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: #18366f;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #2f7fff, #1b55d1);
  transition: transform .22s ease;
}
.main-nav a:hover::after,
.main-nav a:first-child::after { transform: scaleX(1); }
.nav-ctas {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 13px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #1760e8, #0d46ba);
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 90, 216, 0.26);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(26, 92, 214, 0.22);
  color: #17449f;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 60, 135, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: #173c87;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 14px;
}
.lang-toggle i { font-size: 1rem; }

.lang-switcher {
  position: relative;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 88px;
  background: linear-gradient(180deg, #1038d4 0%, #1214e4 100%);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(10, 37, 112, 0.32);
  overflow: hidden;
  display: none;
  z-index: 100;
}

.lang-switcher.open .lang-menu {
  display: block;
}

.lang-option {
  width: 100%;
  border: none;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 14px;
  cursor: pointer;
  text-align: center;
}

.lang-option + .lang-option {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lang-option:hover,
.lang-option.active {
  background: rgba(6, 20, 139, 0.42);
}
.nav-open-account {
  padding-inline: 20px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.88rem;
}
.nav-login {
  padding-inline: 30px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: none;
  background: rgba(255,255,255,0.7);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.5rem;
  color: #173f90;
}

.hero-section {
  position: relative;
  padding: 44px 0 28px;
  overflow: clip;
}
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}
.hero-section::before {
  width: 460px;
  height: 460px;
  right: -120px;
  top: 10px;
  background: radial-gradient(circle, rgba(29, 92, 211, 0.18), transparent 66%);
}
.hero-section::after {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 130px;
  background: radial-gradient(circle, rgba(61, 166, 114, 0.12), transparent 68%);
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  gap: 34px;
  align-items: center;
}
.hero-copy {
  padding: 34px 0 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(24, 92, 208, 0.14);
  color: #194c9c;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(22, 90, 216, 0.08);
}
.trust-pill i { color: #1f63df; }
.hero-copy h1 {
  font-size: clamp(3rem, 5.7vw, 5rem);
  line-height: 0.95;
  margin-top: 22px;
  max-width: 11ch;
}
.hero-copy h1 .accent,
.hero-copy h1 strong { color: #1e63e2; }
.hero-sub {
  margin-top: 20px;
  max-width: 32rem;
  font-size: 1.28rem;
  color: #244b92;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-primary,
.hero-secondary {
  min-width: 214px;
  justify-content: flex-start;
}
.hero-secondary {
  background: rgba(255,255,255,0.72);
}
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 90, 216, 0.1);
}
.hero-trust-row div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #24406f;
  font-size: 0.95rem;
}
.hero-trust-row i {
  margin-top: 3px;
  color: #1b66ec;
  font-size: 1.35rem;
}
.hero-trust-row span { line-height: 1.35; }

.hero-visual {
  position: relative;
  min-height: 700px;
  border-radius: 30px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.22), rgba(234,242,255,0.08) 56%, transparent 78%);
  border-radius: 50%;
  z-index: 2;
}
.hero-device {
  position: absolute;
  right: 100px;
  bottom: 18px;
  width: 560px;
  max-width: none;
  z-index: 3;
  filter: drop-shadow(0 26px 48px rgba(12, 41, 95, 0.18));
}
.hero-model-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
}
.hero-model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.86;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.hero-model-wrap:hover .hero-model-img {
  transform: scale(1.05);
}
.hero-model-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.15) 32%, rgba(22, 67, 146, 0.14) 100%);
  pointer-events: none;
  border-radius: 0;
}
.phone-card {
  position: absolute;
  right: 18px;
  bottom: 26px;
  z-index: 6;
  width: 160px;
  border-radius: 26px;
  padding: 10px 10px 12px;
  background: linear-gradient(180deg, #10172a, #182749);
  box-shadow: 0 24px 45px rgba(11, 29, 69, 0.28);
  display: none;
}
.phone-notch {
  width: 68px;
  height: 16px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #0c111d;
}
.phone-screen {
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbff, #e7f0ff);
  padding: 14px 12px;
}
.phone-mini {
  font-size: 0.62rem;
  color: #486798;
}
.phone-screen h3 {
  margin-top: 8px;
  font-size: 1.35rem;
  color: #123f95;
}
.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.phone-grid span,
.phone-list div {
  font-size: 0.56rem;
  color: #33517f;
}
.phone-grid span {
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.84);
}
.phone-grid i,
.phone-list i {
  display: block;
  margin-bottom: 4px;
  color: #1c67eb;
}
.phone-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.phone-list div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 12px;
  background: rgba(255,255,255,0.82);
}
.phone-list i { margin: 0; }
.hero-sidecards {
  position: absolute;
  top: 52px;
  left: 0;
  z-index: 5;
  width: 210px;
  display: grid;
  gap: 14px;
}
.hero-sidecards article {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(18, 88, 208, 0.1);
  box-shadow: 0 14px 28px rgba(15, 51, 116, 0.09);
}
.hero-sidecards i {
  font-size: 1.8rem;
  color: #1c67eb;
}
.hero-sidecards h3 {
  margin-top: 10px;
  font-size: 1.02rem;
}
.hero-sidecards p {
  margin-top: 7px;
  color: #5f7197;
  font-size: 0.92rem;
}

.product-band-wrap {
  position: relative;
  margin-top: -20px;
  padding-bottom: 16px;
}
.product-band {
  display: grid;
  grid-template-columns: 1.35fr repeat(6, minmax(0, 1fr));
  gap: 0;
  background: linear-gradient(135deg, #11357f, #0d265d 72%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(10, 33, 84, 0.22);
}
.purpose-tile,
.band-item {
  min-height: 130px;
  padding: 22px 20px;
  color: #eef5ff;
}
.purpose-tile,
.band-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.12);
}
.purpose-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.purpose-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: #4ec58b;
  font-size: 1.7rem;
}
.purpose-tile h2 {
  color: #6ed391;
  font-size: 1.75rem;
  line-height: 1.05;
}
.purpose-tile p,
.band-item small {
  display: block;
  margin-top: 10px;
  color: rgba(233, 241, 255, 0.84);
  font-size: 0.92rem;
}
.band-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: background .2s ease;
}
.band-item:hover { background: rgba(255,255,255,0.06); }
.band-item i {
  font-size: 1.8rem;
  color: #fff;
}
.band-item span {
  font-weight: 700;
  color: #fff;
}

.promise-section {
  padding: 18px 0 0;
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 22px;
}
.promise-card,
.ayah-card {
  border-radius: 24px;
  padding: 28px 30px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(18, 88, 208, 0.1);
  box-shadow: 0 14px 34px rgba(17, 53, 125, 0.07);
}
.promise-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.promise-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(28, 103, 235, 0.08);
  color: #1a5fe0;
  font-size: 2rem;
}
.promise-card h2,
.ayah-card h2 { font-size: 1.8rem; }
.promise-card p { margin-top: 8px; color: var(--muted); }
.ayah-card {
  text-align: center;
  display: grid;
  gap: 10px;
  align-content: center;
}
.ayah-ar {
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  color: #1f56c3;
  line-height: 1.4;
}
.ayah-en {
  font-size: 1.15rem;
  color: #23457f;
}
.ayah-ref {
  color: var(--muted);
  font-weight: 700;
}

.section-head { margin-bottom: 30px; }
.section-head.narrow { max-width: 760px; }
.section-head.centered { text-align: center; margin-inline: auto; }
.section-head h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-head p { margin-top: 10px; color: var(--muted); }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #2e9d72;
}

.feature-section { padding-top: 76px; }
.feature-grid.two-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,250,255,0.92));
  border: 1px solid rgba(19, 91, 212, 0.1);
  box-shadow: 0 18px 36px rgba(17, 53, 125, 0.08);
}
.feature-card i {
  font-size: 2rem;
  color: #1c67eb;
}
.feature-card h3 {
  margin-top: 16px;
  font-size: 1.2rem;
}
.feature-card p {
  margin-top: 10px;
  color: var(--muted);
}

.soft-section {
  background: linear-gradient(180deg, rgba(234, 242, 255, 0.55), rgba(255,255,255,0));
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.showcase-copy p:last-of-type {
  margin-top: 12px;
  color: var(--muted);
}
.showcase-panel {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
  border: 1px solid rgba(19, 91, 212, 0.12);
  box-shadow: var(--shadow);
}
.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(19, 91, 212, 0.08);
}
.panel-row + .panel-row { margin-top: 12px; }
.panel-row strong { color: #123d92; }
.panel-row span { color: var(--muted); text-align: right; }

.security-section { padding-top: 68px; }
.security-grid-lite {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.security-grid-lite article {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(19, 91, 212, 0.09);
  box-shadow: 0 18px 34px rgba(17, 53, 125, 0.07);
}
.security-grid-lite i {
  font-size: 1.9rem;
  color: #2e9d72;
}
.security-grid-lite h3 {
  margin-top: 12px;
  font-size: 1.15rem;
}
.security-grid-lite p {
  margin-top: 10px;
  color: var(--muted);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(19, 91, 212, 0.14);
  color: #0c2f6e;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
}

.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, #0a214f, #081837);
  color: #d8e5ff;
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
}
.footer-logo {
  width: 180px;
  height: auto;
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 12px;
}
.site-footer a {
  display: block;
  color: #c5d7f8;
  margin: 8px 0;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.social-row a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
}
.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0 24px;
  color: #aac2ee;
}

.login-shell {
  min-height: calc(100vh - 220px); display: flex; align-items: center; justify-content: center;
  padding: 40px 0;
  background: radial-gradient(circle at 20% 20%, rgba(11,99,243,.08), transparent 36%),
              radial-gradient(circle at 80% 30%, rgba(0,169,145,.1), transparent 42%);
}
.login-card {
  width: min(460px, 94vw); background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; box-shadow: var(--shadow);
}
.login-head { text-align: center; margin-bottom: 18px; }
.login-head img { width: 74px; border-radius: 12px; background: #fff; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-weight: 700; margin-bottom: 6px; }
.form-row input, .form-row select {
  width: 100%; border: 1px solid #bfd3f4; border-radius: 12px; padding: 12px 14px; font-size: 15px;
}
.input-wrap { position: relative; }
.input-wrap button {
  position: absolute; top: 50%; right: 8px; transform: translateY(-50%);
  border: none; background: transparent; color: #4768a7; font-size: 18px;
}
.form-note { display: flex; justify-content: space-between; gap: 8px; font-size: 14px; color: var(--muted); }
.alert-box { border-radius: 12px; padding: 10px 12px; margin-bottom: 12px; display: none; }
.alert-box.show { display: block; }
.alert-box.error { background: #fff0f0; color: #9f1c1c; border: 1px solid #ffcccc; }
.alert-box.success { background: #ecfff8; color: #036b4f; border: 1px solid #b6f0dc; }
.captcha-box { display: none; background: #f8fbff; border: 1px solid #cbe0ff; border-radius: 12px; padding: 10px; margin-bottom: 14px; }
.captcha-box.show { display: block; }

.dashboard-shell { min-height: calc(100vh - 220px); padding: 34px 0 40px; }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.panel {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px;
}

@media (max-width: 1024px) {
  .hero-shell,
  .showcase-grid,
  .promise-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-visual { min-height: 760px; }
  .hero-sidecards { top: auto; bottom: 10px; right: 0; left: 0; width: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-device { right: 50%; transform: translateX(34%); width: 500px; }
  .phone-card { right: 16px; bottom: 22px; transform: none; }
  .product-band { grid-template-columns: 1fr 1fr 1fr; }
  .purpose-tile { grid-column: 1 / -1; }
  .feature-grid.two-row,
  .security-grid-lite { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  :root {
    --top-notice-height: 0px;
  }
  .top-notice-inner {
    min-height: 90px;
    flex-direction: column;
    gap: 8px;
    padding: 10px 6px;
    grid-template-columns: 1fr;
  }
  .top-notice-badge {
    display: none;
  }
  .top-notice-text {
    font-size: 0.9rem;
  }
  .top-notice-close {
    width: 28px;
    height: 28px;
  }
  .menu-toggle { display: inline-flex; }
  .nav-open-account { display: none; }
  .main-nav {
    position: absolute;
    top: 84px;
    left: 12px;
    right: 12px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(19, 91, 212, 0.09);
    border-radius: 18px;
    display: none;
    flex-direction: column;
    padding: 18px 20px;
    box-shadow: 0 18px 44px rgba(17, 53, 125, 0.12);
  }
  .main-nav.show { display: flex; }
  .nav-wrap { flex-wrap: wrap; }
  .nav-ctas { margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { min-height: 680px; }
  .hero-device {
    right: 50%;
    transform: translateX(40%);
    width: 440px;
  }
  .phone-card { right: 14px; bottom: 16px; transform: none; }
  .product-band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root {
    --top-notice-height: 0px;
  }
  .top-notice-inner {
    min-height: 0;
    padding: 0;
  }
  .top-notice-text {
    font-size: 0.82rem;
  }
  .top-notice-actions {
    width: 100%;
    justify-content: center;
  }
  .top-notice-cta {
    width: 100%;
    max-width: 190px;
    justify-content: center;
  }
  .dashboard-grid,
  .footer-grid,
  .feature-grid.two-row,
  .security-grid-lite,
  .hero-sidecards,
  .product-band,
  .hero-trust-row { grid-template-columns: 1fr; }
  .site-header { background: rgba(244, 248, 255, 0.9); }
  .nav-wrap { min-height: 76px; }
  .brand-logo { width: 96px; height: 96px; }
  .hero-section { padding-top: 28px; }
  .hero-visual {
    display: block;
    min-height: 420px;
    margin-top: 18px;
    border-radius: 22px;
    overflow: hidden;
  }
  .hero-copy { padding-top: 12px; }
  .hero-copy h1 { font-size: 2.85rem; }
  .hero-sub { font-size: 1.08rem; }
  .hero-primary,
  .hero-secondary { min-width: 0; width: 100%; justify-content: center; }
  .hero-glow,
  .hero-device,
  .phone-card,
  .hero-sidecards { display: none; }
  .hero-model-wrap { inset: 0; }
  .hero-model-img {
    object-position: 54% 18%;
    opacity: 1;
    transform: scale(1.02);
  }
  .purpose-tile,
  .band-item { min-height: auto; }
  .promise-card,
  .ayah-card,
  .showcase-panel,
  .feature-card,
  .security-grid-lite article { padding: 22px; }
}
