/* Core shared stylesheet for 8ID official pages */
:root {
  --bg: #06101d;
  --bg-2: #0b1a30;
  --surface: #10203a;
  --surface-2: #152949;
  --surface-3: #0d1a2f;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #f4f7ff;
  --muted: #a8b6d0;
  --brand: #19d3be;
  --brand-2: #2f7dff;
  --accent: #ffc857;
  --success: #7ef0b6;
  --danger: #ff7e7e;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .36);
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(47, 125, 255, .22), transparent 28%),
    radial-gradient(circle at top right, rgba(25, 211, 190, .18), transparent 22%),
    linear-gradient(180deg, #08101e 0, #06101d 48%, #03070e 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit
}

main {
  overflow: hidden
}

::selection {
  background: rgba(25, 211, 190, .28);
  color: #fff
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(4, 10, 20, .82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #04111d;
  box-shadow: 0 10px 25px rgba(25, 211, 190, .22);
}

.brand-text {
  background: linear-gradient(90deg, #fff, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu,
.actions {
  display: none;
  align-items: center;
}

.menu {
  gap: 20px;
  color: var(--muted);
  font-size: .96rem;
}

.menu a {
  padding: 8px 0;
  position: relative;
}

.menu a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.menu a:hover:after,
.menu a[aria-current="page"]:after {
  transform: scaleX(1)
}

.menu a[aria-current="page"] {
  color: #fff
}

.actions {
  gap: 10px
}

.btn,
.btn-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn {
  color: #07111d;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 35px rgba(25, 211, 190, .22);
}

.btn-alt {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
}

.btn:hover,
.btn-alt:hover {
  transform: translateY(-2px);
}


.brand-logo {
  border-radius: 12px;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(4, 10, 20, .96);
  backdrop-filter: blur(18px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  padding: 16px 0 20px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  font-weight: 700;
}

.mobile-nav a[aria-current="page"] {
  border-color: rgba(25, 211, 190, .34);
  background: rgba(25, 211, 190, .08);
}

.mobile-menu-actions {
  margin-top: 14px;
}

.mobile-menu-actions .btn {
  width: 100%;
}

@media (min-width:768px) {

  .menu,
  .actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

@media (min-width: 768px) {

  .menu,
  .actions {
    display: flex !important;
  }
}



/* hero part */

.hero {
  padding: 48px 0 28px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 42px 22px 34px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, .10), transparent 16%),
    radial-gradient(circle at 14% 88%, rgba(255, 255, 255, .08), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .06), transparent 14%),
    linear-gradient(180deg, #2f68da 0%, #2554bf 58%, #1d429d 100%);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-card:before,
.hero-card:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-card:before {
  left: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, .08);
  filter: blur(6px);
}

.hero-card:after {
  right: 90px;
  top: 74px;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, .07);
  filter: blur(4px);
}

.hero-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-main {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow,
.hero-app-icon-link,
.hero h1,
.hero p,
.cta-row,
.hero-stats {
  margin-left: auto;
  margin-right: auto;
}

.hero-app-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  margin: 0 auto 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  box-shadow:
    0 18px 42px rgba(7, 17, 45, .20),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-app-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.hero h1 {
  width: 100%;
  margin: 0 auto 16px;
  text-align: center;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: #fff;
}

.hero p {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, .90);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 30px auto 0;
}

.hero-download-btn {
  min-width: 194px;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #3bb54a;
  color: #fff;
  box-shadow: 0 18px 34px rgba(59, 181, 74, .34);
}

.hero-download-btn:hover {
  transform: translateY(-2px);
  background: #33a844;
}

.hero-login-btn {
  min-width: 140px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.hero-login-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 520px);
  margin: 32px auto 0;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .10);
  overflow: hidden;
  box-shadow:
    0 18px 36px rgba(8, 18, 44, .16),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.hero-stat {
  padding: 18px 12px 16px;
  background: rgba(255, 255, 255, .08);
  text-align: center;
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  line-height: 1.15;
  color: #fff;
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width:767px) {
  .hero {
    padding: 28px 0 18px;
  }

  .hero-card {
    padding: 30px 16px 24px;
    border-radius: 26px;
  }

  .hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .eyebrow {
    margin: 0 auto 20px;
  }

  .hero-app-icon-link {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
  }

  .hero h1 {
    width: 100%;
    margin: 0 auto 14px;
    text-align: center;
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero p {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 26px auto 0;
  }

  .hero-download-btn,
  .hero-login-btn {
    min-width: 0;
    width: auto;
  }

  .hero-stats {
    width: 100%;
    max-width: 520px;
    margin: 28px auto 0;
  }

  .hero-stat {
    padding: 16px 8px 14px;
  }

  .hero-stat strong {
    font-size: 1rem;
  }

  .hero-stat span {
    font-size: .68rem;
    letter-spacing: .04em;
  }
}

/* Section 2 -- homepage*/

.intro-section {
  padding: 32px 0;
}

.intro-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(25, 211, 190, .10);
  border: 1px solid rgba(25, 211, 190, .18);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}

.intro-copy .lead {
  margin: 0 0 14px;
  max-width: 100%;
  width: 100%;
  color: #eaf1ff;
  font-size: 1.05rem;
}

.intro-text {
  margin: 0;
  max-width: 100%;
  width: 100%;
  color: #eaf1ff;
}

.intro-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 32, 58, .88), rgba(8, 17, 30, .96));
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.info-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.info-card .btn,
.info-card .btn-alt {
  width: 100%;
}

@media (min-width:768px) {
  .intro-panel {
    padding: 34px;
  }

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

  .info-card .btn,
  .info-card .btn-alt {
    width: auto;
  }
}

.gallery-section {
  padding: 48px 0;
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.gallery-scroll {
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
  /* Hide scrollbar for cleaner look */
}

.gallery-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  margin: 0 auto;
}

.gallery-grid img {
  width: 260px;
  height: 560px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  transition: transform .3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

@media (min-width:1024px) {
  .gallery-scroll {
    overflow-x: visible
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 24px;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
  }
}

.features-section {
  padding: 48px 0;
}

/* 1. Love Grid - homepage */
.love-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.love-points {
  display: grid;
  gap: 16px;
}

.point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, .04);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.point span {
  font-size: 1.5rem
}

/* 2. Security Panel */
.security-panel {
  padding: 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(25, 211, 190, .12), rgba(47, 125, 255, .08));
  border: 1px solid var(--brand);
  border-radius: 28px;
  margin-bottom: 32px;
}

.security-icon {
  font-size: 3rem;
  margin-bottom: 16px
}

.security-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 12px
}

/* 3. Features List */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .03);
}

@media (min-width:768px) {
  .love-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center
  }

  .features-list {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* installation parts - homepage */
.guide-section {
  padding: 32px 0;
}

.guide-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.guide-box,
.pro-con-box {
  padding: 26px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.guide-box h2,
.pro-con-box h2 {
  margin: 0 0 18px;
}

.step-list {
  list-style: none;
  counter-reset: step-counter;
  margin: 0;
  padding: 0;
}

.step-list li {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 0 48px;
  color: var(--muted);
  line-height: 1.75;
}

.step-list li:last-child {
  margin-bottom: 0;
}

.step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06111d;
  font-weight: 900;
  font-size: .9rem;
}

.step-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.trust-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(25, 211, 190, .10);
  border: 1px solid rgba(25, 211, 190, .18);
  border-radius: 16px;
  color: #dffaf3;
}

.trust-note p {
  margin: 0;
  color: inherit;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 4px;
}

.pros,
.cons {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}

.pros h3,
.cons h3 {
  margin: 0 0 12px;
}

.pros h3 {
  color: var(--success);
}

.cons h3 {
  color: var(--danger);
}

.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plain-list li {
  margin-bottom: 10px;
}

.plain-list li:last-child {
  margin-bottom: 0;
}

@media (min-width:768px) {
  .guide-layout {
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
  }

  .comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.closing-section {
  padding: 32px 0 20px;
}

.closing-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
  text-align: center;
}

.closing-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

.closing-panel p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
}

.closing-actions {
  justify-content: center;
  margin-top: 24px;
}

.faq-section {
  padding: 20px 0 40px;
}

.faq-head {
  text-align: center;
  margin-bottom: 22px;
}

.faq-head h2 {
  margin: 0 0 10px;
}

.faq-head .lead {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 52px 18px 20px;
  font-weight: 800;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.75;
}

/* FOOTER */

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 0 20px;
}

.footer-brand {
  max-width: 560px;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--muted);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  border-radius: 12px;
}

.footer-logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo strong {
  color: var(--text);
  font-size: 1rem;
}

.footer-logo small {
  color: var(--muted);
  font-size: .85rem;
}

.footer-social {
  margin-top: 18px;
}

.footer-social-label {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: .92rem;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(25, 211, 190, .12);
  border-color: rgba(25, 211, 190, .28);
  color: var(--brand);
}

.social-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--text);
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 calc(18px + env(safe-area-inset-bottom));
  color: #8fa0bf;
  font-size: .9rem;
}

.footer-bottom-row p {
  margin: 0;
}

@media (min-width: 768px) {
  .footer-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: start;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* STIKCY BAR CSS */

.mobile-download-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(4, 10, 20, .88);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}

.mobile-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06111d;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 16px 34px rgba(25, 211, 190, .22);
}

.mobile-download-btn:hover {
  transform: translateY(-1px);
}

@media (min-width:768px) {
  .mobile-download-bar {
    display: none;
  }
}

@media (max-height:420px) {
  .mobile-download-bar {
    display: none;
  }
}


/* UNDUH PAGE CSS */

.download-page {
  padding-bottom: 110px;
}

.download-hero {
  padding: 42px 0 30px;
}

.download-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .95rem;
}

.download-heading {
  text-align: center;
  margin-bottom: 28px;
}

.download-heading h1 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.download-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
}

.download-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(241, 245, 252, .92));
  color: #1d2738;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}

.download-app-icon {
  margin: 0 auto 16px;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.download-card h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 2rem;
  color: #1a2434;
}

.download-main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: min(100%, 280px);
  margin: 0 auto 30px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #31b456;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(49, 180, 86, .28);
}

.download-main-btn:hover {
  background: #279a48;
  transform: translateY(-1px);
}

.download-specs {
  display: grid;
  gap: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 30, 45, .10);
}

.spec-row span {
  color: #697488;
}

.spec-row strong {
  color: #1c2533;
  font-weight: 700;
}

.download-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(47, 125, 255, .08);
  color: #23334f;
}

.download-note p {
  margin: 0;
}

.download-info-section {
  padding: 10px 0 36px;
}

.download-info-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
}

.download-info-panel h2 {
  margin: 0 0 12px;
}

.download-info-panel .plain-list {
  margin: 0 0 22px;
}

@media (max-width:767px) {
  .download-hero {
    padding: 28px 0 18px;
  }

  .download-card {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .download-card h2 {
    font-size: 1.7rem;
  }

  .download-main-btn {
    width: 100%;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .download-info-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }
}

/* login page css */

.login-hero {
  padding: 42px 0 30px;
  text-align: center;
}

.login-heading {
  margin-bottom: 28px;
}

.login-heading h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.login-guide-card {
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 24px;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mockup-header {
  padding: 10px;
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: .8rem;
  color: var(--muted);
}

.mock-field {
  height: 44px;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 12px;
}

.mock-button {
  height: 44px;
  background: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06111d;
  font-weight: 700;
  margin-top: 20px;
}

.card-note {
  margin: 20px 0 0;
  font-size: .85rem;
  color: var(--muted);
}

.page-content {
  padding: 48px 0;
  max-width: 800px;
  line-height: 1.8;
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--brand);
}

.page-content p {
  margin-bottom: 20px;
  color: var(--muted);
}