:root {
 
  --bg: #f5f7fb;
  --bg-strong: #e3edff;
  --card: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --muted: #1b2029;
  --text: #0b3858;
  --accent: #2998ff;
  --accent-soft: rgba(41, 152, 255, 0.12);
  --accent-dark: #0054c7;
  --danger: #ef4444;
  --radius-pill: 999px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-sm: 0 14px 35px rgba(15, 23, 42, 0.12);
  --container: 1400px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

 
  --fs-xxl: 3.2rem;
  --fs-xl: 2.2rem;
  --fs-lg: 1.3rem;
  --fs-md: 1.05rem;
  --fs-base: 1rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.85rem;
  --fs-tiny: 0.75rem;

  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.1;
  --lh-normal: 1.4;
  --lh-relaxed: 1.7;
}



.ett-hero {
  padding: 3rem 0 5rem;
  background: radial-gradient(circle at top right, #eef2ff, #f8fafc 60%);
  overflow: hidden;
}

.ett-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.ett-hero__title {
  font-size: clamp(2.2rem, 4vw, var(--fs-xxl));
  line-height: var(--lh-tight);
  margin-bottom: 1.2rem;
  color: var(--text);
  font-weight: var(--fw-extrabold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ett-hero__subtitle {
  font-size: var(--fs-md);
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 90%;
  line-height: var(--lh-relaxed);
}


.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 99px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.hero-pill i {
  color: var(--accent);
}

.locker-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-left: auto;
  position: relative;
}

.locker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.locker-label {
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  color: var(--muted);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.locker-badge {
  background: #ecfdf5;
  color: #059669;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


.locker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.locker-folder {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem;
  transition: 0.3s;
}

.locker-folder:hover {
  border-color: var(--accent);
  background: #eff6ff;
  transform: translateY(-2px);
}

.folder-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-size: var(--fs-lg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.locker-folder span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text);
  line-height: var(--lh-normal);
  display: block;
}


.expiry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  margin-bottom: 0.5rem;
}

.expiry-chip {
  background: #fffbeb;
  color: #d97706;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-bold);
}

.progress-expiry {
  height: 6px;
  background: #f1f5f9;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar-inner {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 99px;
}

.floating-tag {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.floating-tag span {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #dcfce7;
}


.stat-strip {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: var(--fw-medium);
}

.section {
  padding: 5rem 0;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}

.section__desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: var(--lh-relaxed);
}


.bullet-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bullet-box {
  background: #fff;
}

.bullet-box h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: 1rem;
}

.bullet-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.bullet-list li {
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.bullet-list li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: var(--fw-bold);
}

.bullet-highlight {
  font-weight: var(--fw-semibold);
  color: var(--accent-dark);
  background: rgba(41, 152, 255, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  display: inline-block;
  font-size: var(--fs-base);
}


.doc-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.doc-tags {
  list-style: none;
}

.doc-tags li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: var(--lh-relaxed);
}

.doc-tags li:last-child {
  margin-bottom: 0;
}

.tag-dot {
  min-width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-strong);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.feature-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.6rem;
}

.feature-text {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: var(--lh-relaxed);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semibold);
  background: #f1f5f9;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  color: #475569;
}

.phone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.phone-card {
  display: flex;
  justify-content: center;
}

.phone-screen {
  width: 300px;
  background: #ffffff;
  border: 8px solid #0f172a;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;
}

.phone-header {
  background: #f8fafc;
  padding: 1.2rem 1rem 0.8rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.phone-header strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.phone-pill {
  font-size: var(--fs-tiny);
  background: #e0f2fe;
  color: #0284c7;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: var(--fw-semibold);
}

.upload-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
}

.upload-row > span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: var(--fw-medium);
}

.upload-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
}

.upload-btn {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: 0.2s;
}

.upload-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}


.upload-btn[style*="background"] {
  color: white;
  border: none;
}

.phone-footer-hint {
  margin: 1.5rem 1rem 0.5rem;
  font-size: var(--fs-tiny);
  color: var(--muted);
  text-align: center;
  background: #f8fafc;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
  line-height: var(--lh-relaxed);
}




@media (max-width: 960px) {

  .ett-hero__inner,
  .bullet-layout,
  .phone-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge-row {
    justify-content: center;
  }

  .locker-card {
    margin: 0 auto;
  }

  .stat-strip {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .bullet-layout {
    text-align: left;
  }

  .phone-card {
    order: -1;
  }
}
