body.daily-tracker-page {
  --dt-red: #eb5353;
  --dt-yellow: #f9d923;
  --dt-green: #36ae7c;
  --dt-blue: #187498;
  --dt-deep: #145b73;
  --dt-text: #173445;
  --dt-muted: #5a7381;
  --dt-bg: #f5fafb;
  --dt-surface: rgba(255, 255, 255, 0.92);
  --dt-surface-strong: #ffffff;
  --dt-border: rgba(20, 91, 115, 0.12);
  --dt-shadow: 0 24px 60px rgba(20, 91, 115, 0.12);
  --dt-shadow-soft: 0 18px 40px rgba(24, 116, 152, 0.09);
  --dt-gradient: linear-gradient(135deg, rgba(235, 83, 83, 0.12), rgba(249, 217, 35, 0.16), rgba(54, 174, 124, 0.12), rgba(24, 116, 152, 0.14));
  background:
    radial-gradient(circle at top left, rgba(249, 217, 35, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(235, 83, 83, 0.18), transparent 24%),
    linear-gradient(180deg, #fbfefe 0%, var(--dt-bg) 48%, #f8fcfc 100%);
  color: var(--dt-text);
  font-family: "Cairo", "Poppins", sans-serif;
}

body.dark-mode.daily-tracker-page {
  --dt-text: #edf8fb;
  --dt-muted: #a8c2cb;
  --dt-bg: #071d27;
  --dt-surface: rgba(14, 40, 51, 0.88);
  --dt-surface-strong: rgba(12, 35, 45, 0.98);
  --dt-border: rgba(110, 199, 228, 0.12);
  --dt-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  --dt-shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.22);
  --dt-gradient: linear-gradient(135deg, rgba(235, 83, 83, 0.12), rgba(249, 217, 35, 0.1), rgba(54, 174, 124, 0.14), rgba(24, 116, 152, 0.24));
  background:
    radial-gradient(circle at top left, rgba(24, 116, 152, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(235, 83, 83, 0.12), transparent 24%),
    linear-gradient(180deg, #061720 0%, var(--dt-bg) 40%, #071d27 100%);
}

.dailytracker-main {
  position: relative;
  padding: 7rem 0 4rem;
}

.dailytracker-main::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 36rem;
  background: var(--dt-gradient);
  pointer-events: none;
  opacity: 0.95;
}

.dailytracker-main > * {
  position: relative;
  z-index: 1;
}

.content-section {
  padding: 2rem 0;
}

.section-kicker,
.mini-label,
.pricing-label,
.tutorial-tag,
.floating-note-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(24, 116, 152, 0.08);
  color: var(--dt-blue);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body.dark-mode.daily-tracker-page .section-kicker,
body.dark-mode.daily-tracker-page .mini-label,
body.dark-mode.daily-tracker-page .pricing-label,
body.dark-mode.daily-tracker-page .tutorial-tag,
body.dark-mode.daily-tracker-page .floating-note-label {
  background: rgba(110, 199, 228, 0.1);
  color: #8edbf7;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading h2 {
  margin: 1rem 0 0.9rem;
  color: var(--dt-text);
  font-family: "Poppins", "Cairo", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-heading p,
.copy-block p,
.hero-subtitle,
.policy-card p,
.tutorial-card p,
.pricing-footnote {
  color: var(--dt-muted);
  line-height: 1.85;
  font-size: 1.04rem;
}

.daily-hero {
  padding: 1rem 0 2rem;
}

.hero-copy h1,
.document-hero-card h1 {
  margin: 1rem 0 1rem;
  color: var(--dt-text);
  font-family: "Poppins", "Cairo", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.65rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero-actions,
.document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1rem;
}

.btn-accent,
.btn-outline-soft,
.btn-ghost-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.btn-accent {
  background: linear-gradient(135deg, var(--dt-red), var(--dt-blue));
  border: 0;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(235, 83, 83, 0.18);
}

.btn-accent:hover,
.btn-outline-soft:hover,
.btn-ghost-soft:hover {
  transform: translateY(-3px);
  color: inherit;
}

.btn-accent:hover {
  color: #ffffff;
  box-shadow: 0 24px 40px rgba(24, 116, 152, 0.2);
}

.btn-outline-soft {
  background: rgba(255, 255, 255, 0.74);
  color: var(--dt-text);
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-soft);
}

body.dark-mode.daily-tracker-page .btn-outline-soft {
  background: rgba(255, 255, 255, 0.03);
  color: var(--dt-text);
}

.btn-ghost-soft {
  background: transparent;
  border: 1px dashed rgba(24, 116, 152, 0.35);
  color: var(--dt-blue);
}

body.dark-mode.daily-tracker-page .btn-ghost-soft {
  color: #8edbf7;
  border-color: rgba(142, 219, 247, 0.3);
}

.hero-note {
  margin-bottom: 1.3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.stat-chip {
  min-width: 132px;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: var(--dt-surface);
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-soft);
}

.stat-chip strong {
  display: block;
  color: var(--dt-text);
  font-family: "Poppins", "Cairo", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.stat-chip span {
  color: var(--dt-muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 1.25rem 0 1rem;
}

.hero-logo-wrap {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.hero-logo-ring {
  position: absolute;
  inset: 8%;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, rgba(235, 83, 83, 0.2), rgba(24, 116, 152, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--dt-shadow);
  transform: rotate(-9deg);
}

body.dark-mode.daily-tracker-page .hero-logo-ring {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(235, 83, 83, 0.18), rgba(24, 116, 152, 0.26));
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-logo {
  position: relative;
  width: min(100%, 250px);
  filter: drop-shadow(0 28px 45px rgba(20, 91, 115, 0.18));
}

.hero-panel,
.story-card,
.policy-card,
.usage-callout,
.tutorial-card,
.template-note,
.document-hero-card,
.usage-placeholder,
.value-card,
.feature-panel,
.policy-summary {
  background: var(--dt-surface);
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(100%, 400px);
  padding: 1.5rem;
  border-radius: 28px;
  z-index: 2;
}

.hero-panel h2 {
  margin: 1rem 0 1rem;
  color: var(--dt-text);
  font-family: "Poppins", "Cairo", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.35;
}

.showcase-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-list li {
  display: flex;
  gap: 0.8rem;
  color: var(--dt-muted);
  line-height: 1.65;
}

.showcase-list i {
  color: var(--dt-green);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.floating-note {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 220px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: var(--dt-surface-strong);
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-soft);
  z-index: 3;
}

.floating-note strong {
  color: var(--dt-text);
  line-height: 1.55;
}

.floating-note-top {
  top: 1rem;
  left: 0;
}

.floating-note-bottom {
  right: 0.4rem;
  bottom: 10.2rem;
}

.story-card,
.document-hero-card,
.usage-callout,
.policy-card,
.tutorial-card,
.template-note,
.policy-summary {
  border-radius: 30px;
}

.story-card {
  padding: 1.7rem;
}

.story-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.story-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.6rem;
}

.story-card-header h3,
.policy-card h2,
.value-card h3,
.feature-panel h3,
.tutorial-card h3,
.template-note h2,
.policy-summary h2,
.usage-placeholder h3 {
  margin: 0.65rem 0 0;
  color: var(--dt-text);
  font-family: "Poppins", "Cairo", sans-serif;
  font-weight: 800;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-item {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(20, 91, 115, 0.08);
}

body.dark-mode.daily-tracker-page .story-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(110, 199, 228, 0.08);
}

.story-item h4 {
  color: var(--dt-text);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.story-item p {
  color: var(--dt-muted);
  margin: 0;
  line-height: 1.7;
}

.copy-block {
  padding: 0.6rem 0.3rem;
}

.copy-lead {
  color: var(--dt-text);
  font-size: 1.12rem;
  font-weight: 700;
}

.feature-grid,
.value-grid,
.contact-action-grid,
.tutorial-grid,
.pricing-grid {
  display: grid;
  gap: 1.35rem;
}

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

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

.contact-action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tutorial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.feature-panel,
.value-card,
.tutorial-card {
  padding: 1.45rem;
  border-radius: 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-panel:hover,
.value-card:hover,
.tutorial-card:hover,
.policy-card:hover,
.action-tile:hover,
.pricing-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--dt-shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(235, 83, 83, 0.14), rgba(24, 116, 152, 0.16));
  color: var(--dt-blue);
  font-size: 1.35rem;
}

body.dark-mode.daily-tracker-page .feature-icon {
  color: #8edbf7;
}

.pricing-panel {
  position: relative;
  padding: 1.5rem;
  border-radius: 30px;
  background: var(--dt-surface);
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pricing-panel.featured {
  background:
    linear-gradient(180deg, rgba(249, 217, 35, 0.14), rgba(255, 255, 255, 0.72)),
    var(--dt-surface);
  border-color: rgba(249, 217, 35, 0.38);
  transform: translateY(-8px);
}

body.dark-mode.daily-tracker-page .pricing-panel.featured {
  background:
    linear-gradient(180deg, rgba(249, 217, 35, 0.1), rgba(255, 255, 255, 0.03)),
    var(--dt-surface);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dt-yellow), #ffd34b);
  color: #2b2b2b;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(249, 217, 35, 0.28);
}

.pricing-header h3 {
  margin: 0.8rem 0 0.5rem;
  color: var(--dt-text);
  font-family: "Poppins", "Cairo", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.pricing-price {
  color: var(--dt-deep);
  font-family: "Poppins", "Cairo", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

body.dark-mode.daily-tracker-page .pricing-price {
  color: #8edbf7;
}

.pricing-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-inline-start: 1.6rem;
  color: var(--dt-muted);
  line-height: 1.7;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dt-green), var(--dt-blue));
}

.pricing-cta {
  margin-top: 1.3rem;
  width: 100%;
}

.pricing-footnote {
  margin: 1.4rem 0 0;
  text-align: center;
}

.usage-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
  padding: 1.7rem;
}

.usage-placeholder,
.video-stage,
.document-hero-card,
.policy-card,
.policy-summary,
.template-note {
  padding: 1.6rem;
}

.usage-placeholder,
.video-stage-inner {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 240px;
}

.usage-placeholder i,
.video-stage-inner i,
.template-note i {
  font-size: 2.6rem;
  color: var(--dt-blue);
}

body.dark-mode.daily-tracker-page .usage-placeholder i,
body.dark-mode.daily-tracker-page .video-stage-inner i,
body.dark-mode.daily-tracker-page .template-note i {
  color: #8edbf7;
}

.action-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 155px;
  padding: 1.2rem;
  border-radius: 26px;
  background: var(--dt-surface);
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-soft);
  color: var(--dt-text);
  text-align: center;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.action-tile i {
  font-size: 2rem;
  color: var(--dt-blue);
}

body.dark-mode.daily-tracker-page .action-tile i {
  color: #8edbf7;
}

.action-tile span {
  font-weight: 700;
  line-height: 1.55;
}

.final-suggestion {
  padding: 2rem 2.2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(235, 83, 83, 0.92), rgba(24, 116, 152, 0.92));
  color: #ffffff;
  box-shadow: 0 26px 44px rgba(24, 116, 152, 0.2);
}

.final-suggestion p {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.9;
}

.document-hero {
  padding: 0.5rem 0 1.5rem;
}

.document-hero-card p {
  max-width: 760px;
  color: var(--dt-muted);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.5fr);
  gap: 1.4rem;
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 6.5rem;
}

.policy-summary ul {
  display: grid;
  gap: 0.9rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.policy-summary li {
  color: var(--dt-muted);
  line-height: 1.7;
  padding-inline-start: 1.4rem;
  position: relative;
}

.policy-summary li::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  inset-inline-start: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dt-green);
}

.policy-content {
  display: grid;
  gap: 1rem;
}

.policy-updated {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--dt-blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-lines {
  display: grid;
  gap: 0.9rem;
}

.contact-lines strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--dt-text);
}

.contact-lines a {
  color: var(--dt-blue);
  word-break: break-word;
}

body.dark-mode.daily-tracker-page .contact-lines a {
  color: #8edbf7;
}

.video-stage {
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(235, 83, 83, 0.12), rgba(24, 116, 152, 0.15)),
    var(--dt-surface);
  border: 1px solid var(--dt-border);
  box-shadow: var(--dt-shadow-soft);
}

.video-stage-inner {
  border: 2px dashed rgba(24, 116, 152, 0.2);
  border-radius: 24px;
}

body.dark-mode.daily-tracker-page .video-stage-inner {
  border-color: rgba(142, 219, 247, 0.22);
}

.template-note {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tutorial-card {
  min-height: 220px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a[data-download-placeholder="true"] {
  cursor: pointer;
}

.scroll-top-button {
  position: fixed;
  inset-inline-end: 1.3rem;
  bottom: 1.35rem;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--dt-red), var(--dt-blue));
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(24, 116, 152, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.94);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, box-shadow 0.24s ease;
  z-index: 1055;
}

.scroll-top-button i {
  font-size: 1.9rem;
  line-height: 1;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover {
  box-shadow: 0 24px 44px rgba(24, 116, 152, 0.28);
  transform: translateY(-4px);
}

.scroll-top-button:focus-visible {
  outline: 3px solid rgba(249, 217, 35, 0.55);
  outline-offset: 4px;
}

body.dark-mode.daily-tracker-page .scroll-top-button {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.34);
}

html[dir="rtl"] .pricing-badge {
  right: auto;
  left: 22px;
}

html[dir="rtl"] .pricing-list li,
html[dir="rtl"] .policy-summary li {
  padding-inline-start: 0;
  padding-inline-end: 1.6rem;
}

html[dir="rtl"] .pricing-list li::before,
html[dir="rtl"] .policy-summary li::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

@media (min-width: 992px) {
  .hero-visual {
    min-height: auto;
    align-items: start;
    justify-items: end;
    padding: 0.75rem 0 0;
  }

  .hero-logo-wrap {
    width: min(100%, 350px);
    margin-inline-end: 1.35rem;
  }

  .hero-panel {
    position: relative;
    inset: auto;
    width: min(100%, 520px);
    margin-top: -0.35rem;
  }

  .floating-note-top {
    top: 0;
    left: -0.15rem;
  }

  .floating-note-bottom {
    top: 7rem;
    right: 0;
    bottom: auto;
  }
}

@media (max-width: 1199px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-action-grid,
  .value-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usage-callout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 991px) {
  .dailytracker-main {
    padding-top: 6rem;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-panel {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
  }

  .floating-note {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .feature-grid,
  .value-grid,
  .contact-action-grid,
  .tutorial-grid,
  .pricing-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .document-links {
    flex-direction: column;
  }

  .hero-actions .btn-accent,
  .hero-actions .btn-outline-soft,
  .hero-actions .btn-ghost-soft,
  .document-links .btn-outline-soft,
  .document-links .btn-ghost-soft {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .floating-note {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    max-width: none;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-logo-wrap {
    width: min(100%, 300px);
  }

  .template-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-top-button {
    inset-inline-end: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}
