@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #4C6E81;
  --bg: #F7F9FB;
  --card: #FFFFFF;
  --text: #1C1C1C;
  --muted: #6B7280;
  --border: #E6E6E6;
  --success: #2E7D32;
  --warning: #D9534F;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-base: 16px;
  --font-lg: 18px;
  --font-xl: 22px;
  --max-width: 1200px;
  --shadow-soft: 0 4px 18px rgba(15,23,42,0.05);
  color-scheme: light;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
::placeholder {
  color: #8A94A6;
  opacity: 1;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  image-rendering: auto;
}

/* GLOBAL RESET */
body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 72px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient( to bottom, #f6f8fa,#ffffff);
}
button,
input,
textarea,
select {
  font: inherit;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}
.header-download-btn {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.cta-strip {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #f6f9fb 0%,
    #edf3f6 100%
  );
}

.cta-strip h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 16px;
}

.cta-strip p {
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--muted);
  line-height: 1.8;
}
.card {
  text-decoration: none;
  color: inherit;
}

.card h3 {
  text-decoration: none;
}

.card p {
  text-decoration: none;
}

.card:hover {
  text-decoration: none;
}
.grid a {
  text-decoration: none;
}

.header-download-btn:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-1px);
}


.screen {
  background: #fff;
  height: 100%;
  border-radius: calc(var(--space-md) + var(--space-xs));
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
  margin: auto;
}
  .header {
  position: fixed;        /* Stays at the top while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;           /* Fixed pixel height for consistency */
  background-color: var(--primary); /* Your specific slate blue */
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 9999;          /* Ensures it stays above all images and maps */
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0; 
   box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

.overlay h1 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
  padding-top: 0;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.categories-section {
  margin-top: -30px;
  position: relative;
  z-index: 5;
  padding: 18px 0 10px;
  background: #fff;
  overflow: hidden;
}
.categories-header {
  text-align: center;
  margin-bottom: 24px;
}

.categories-header p {
  color: #6b7280;
  margin-top: 8px;
}

.category-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.categories-section::before,
.categories-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.categories-section::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.categories-section::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.categories-section .section-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 22px;
  text-align: center;
}
.category-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 60px;
}

.category-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  min-width: 190px;
  height: 170px;
  background: #ffffff;
  border-radius: 26px;
  padding: 20px 18px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border: 1px solid #edf1f4;
  box-shadow: 0 6px 22px rgba(15,23,42,0.04);
  transition: all 0.25s ease;
  cursor: pointer;
}
.category-scroll-wrapper {
  position: relative;
  width: 100%;
}

.category-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 60px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  position: relative;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}
.categories-section .container {
  max-width: 100%;
  padding-right: 0;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76,110,129,0.20);

  box-shadow:
    0 12px 30px rgba(15,23,42,0.08);
}
.category-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f4f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  line-height: 1;
}
.category-card span:last-child {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}

@media (max-width: 768px) {

  .section-head {
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .category-card {
    min-width: 210px;
    padding: 18px;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
  }
}

.category-card span {
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1.4;
}
.category-section {
  padding: 60px 0 40px;
  background: #f7f9fb;
  overflow: hidden;
  position: relative;
}

.section-head {
  width: min(1200px, 92%);
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-head h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  margin: 0;
  color: #1c1c1c;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.category-nav {
  display: none;
}
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fb 100%
  );
}

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-head.center p {
  color: #6b7280;
  margin-top: 14px;
  line-height: 1.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: white;

  border-radius: 28px;

  padding: 32px;

  border: 1px solid #edf1f4;

  box-shadow: 0 8px 30px rgba(15,23,42,0.04);

  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 14px 36px rgba(15,23,42,0.08);
}

.step-number {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: rgba(76,110,129,0.12);

  color: #4C6E81;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;

  margin-bottom: 22px;
}

.step-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}
.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.hero-trust span {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);

  padding: 10px 18px;

  border-radius: 999px;

  color: rgba(255,255,255,0.92);

  font-size: 14px;

  backdrop-filter: blur(10px);
}
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;

  font-size: 14px;
  font-weight: 500;

  color: rgba(255,255,255,0.92);
}

.trust-bar span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);

  padding: 8px 14px;
  border-radius: 999px;

  backdrop-filter: blur(6px);
}

.step-card p {
  color: #5f6672;
  line-height: 1.8;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  font-size: 18px;
  color: #4C6E81;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: grid;
  place-items: center;
}

.scroll-btn.prev-btn {
  left: 14px;
}

.scroll-btn.next-btn {
  right: 14px;
}

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.hero-tagline {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  color: rgba(255,255,255,0.92);
}
.hero {
  padding: 70px 20px 60px;
  text-align: center;
  background: #f4f7f9;
}

.overlay p {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.header .container {
  height: 100%;

  width: min(1400px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header a {
  color: white;
  opacity: 0.95;
  transition: opacity 0.2s ease, color 0.2s ease;
  margin-left: 0;
  text-decoration: none;
}
.header nav {
   display: flex;
  gap: 32px;
  align-items: center;
}
.header nav a {
  position: relative;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 3px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  transition: width 0.3s ease;
}

.header nav a:hover::after,
.header nav a.active::after {
  width: 100%;
}

.features {
  padding: calc(var(--space-lg) + var(--space-xs)) 0;
}

.features h2 {
  text-align: center;
  margin-bottom: calc(var(--space-md) + var(--space-xs));
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: 40px;

}

.trust {
  background: #f9fbfc;
  padding: calc(var(--space-md) + var(--space-xs)) var(--space-md);
  text-align: center;
}

.trust ul {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.trust li {
  margin: var(--space-xs) 0;
  font-size: 16px;
  flex: 1;
  min-width: 200px;
}
@media (max-width: 768px) {
  .store-btn,
  .btn,contact-grid {
    width: 100%;
    justify-content: center;
    grid-template-columns: 1fr;
  }
}


.app {
  padding: calc(var(--space-lg) + var(--space-xs)) var(--space-md);
  text-align: center;
}

.footer a {
  color: #ddd;
  text-decoration: none;
}
.footer a:hover {
  opacity: 0.85;
}
.hero-slider {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-content: center;
}
.brand-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-tagline {
  display: block;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 5px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}
.blog-categories {
  padding: 10px 0 30px;
}

.category-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  border: 1px solid rgba(76,110,129,0.18);
  background: #ffffff;
  color: #334155;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid #dbe2e8;

}

.pill:hover,
.pill.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.related-links{
margin-top:60px;
padding-top:40px;
border-top:1px solid #d9e1e7;
}

.related-links h3{
font-size:28px;
margin-bottom:25px;
color:#22313f;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
}

.related-card{
display:block;
padding:18px;
border:1px solid #d9e1e7;
border-radius:18px;
background:#fff;
text-decoration:none;
color:#22313f;
font-weight:600;
transition:0.3s ease;
}

.related-card:hover{
transform:translateY(-4px);
border-color:#4c6e81;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.tagline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 5px;
  font-weight: 500;
}
.content-narrow {
  width: 100%;
  max-width: 70ch;
  margin-inline: auto;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;

}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  height: 100%;
  background: linear-gradient(
  to bottom,
  rgba(12,18,24,0.62),
  rgba(12,18,24,0.42)
);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--space-lg) + var(--space-sm));
  max-width: 100%;
}

.cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.slider-dots {
  position: absolute;
  bottom: var(--space-md);
  width: 100%;
  text-align: center;
}

.slider-dots .dot {
  height: var(--space-xs);
  width: var(--space-xs);
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
}

.slider-dots .dot.active {
  background: #4C6E81;
}
.bottom-nav {
  height: 65px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: white;
  font-size: 22px;
  flex-shrink: 0;
}

.header a:hover {
  opacity: 1;

}
.footer {
  
  font-size: 12px;
  color: white;
  overflow: hidden;
  text-align: center;
  line-height: 1.8;
  position: relative;
   background:
    radial-gradient(
      circle at top left,
      rgba(76,110,129,0.18),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #111821 0%,
      #0d141b 100%
    );
    color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer strong,
.footer-title {
  display: block;

  font-size: 1.7rem;

  font-weight: 700;

  letter-spacing: -0.03em;

  margin-bottom: 28px;

  color: #ffffff;
}
.footer-email {
  font-size: 1.15rem;

  color: rgba(255,255,255,0.95);

  margin-bottom: 28px;
}
.footer-links {
  display: flex;

  justify-content: center;

  gap: 22px;

  flex-wrap: wrap;

  margin-bottom: 34px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);

  text-decoration: none;

  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
}
.footer .disclaimer {
  max-width: 760px;

  margin: 0 auto 30px;

  line-height: 1.9;

  font-size: 15px;

  color: rgba(255,255,255,0.76);
}
.footer-copy {
  font-size: 14px;

  color: rgba(255,255,255,0.55);

  margin-top: 18px;
}
.footer-divider {
  width: 90px;
  height: 1px;

  background: rgba(255,255,255,0.12);

  margin: 30px auto;
}
.footer::before {
  content: "";

  position: absolute;

  top: -120px;
  left: 50%;

  transform: translateX(-50%);

  width: 500px;
  height: 300px;

  background: rgba(76,110,129,0.06);
  filter: blur(60px);

  pointer-events: none;
}
.footer-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 56px 24px 32px;
}

.phone {
  width: 320px;
  height: 650px;
  background: #111;
  margin: auto;
  border-radius: var(--radius-lg);
  padding: var(--space-xs);
  box-shadow: 0 var(--space-md) calc(var(--space-lg) + var(--space-xs)) rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  

  .overlay p {
    font-size: 16px;
  }

.header .container {
  justify-content: space-between;
  align-items: center;
}

  .cta {
    flex-direction: column;
  }

  .phone {
    width: 280px;
    height: 580px;
  }
.section-title {
  font-size: 28px;
}
}
.app-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: calc(var(--space-md) + var(--space-xs)) var(--space-md);
}
@media (max-width: 768px) {
  .overlay h1 {
    font-size: clamp(32px, 8vw, 42px);
  }
}
@media (max-width: 768px) {
  .header nav {
    gap: 18px;
  }

  .header nav a {
    font-size: 0.92rem;
  }

  .header .logo {
    font-size: 1.5rem;
  }
}

.app-banner-overlay {
  background: rgba(0,0,0,0.60);
  padding: 80px var(--space-md);
  text-align: center;
  color: white;
}
nav a {
  font-weight: 600;
}
.header .logo {margin: 0;
  padding: 0;

  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;

  color: #ffffff;

  line-height: 1;
}
.card {
  text-decoration: none;
}

.card h3 {
  text-decoration: none;
}

.card p {
  text-decoration: none;
}

.app-banner h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: var(--space-md);
}

.app-banner p {
  color: white;
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: calc(var(--space-md) + var(--space-xs));
}

.store-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: white;
  color: #111;
  padding: var(--space-sm) var(--space-md);  
  border-radius: var(--radius-md);
  text-decoration: none;
  min-width: 240px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.store-btn:hover {
  transform: translateY(-4px);
}

.store-btn small {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  text-align: left;
}
.store-btn-text {
  gap: 2px;
  display: flex;
  flex-direction: column;
}
section > .container {
  display: flow-root;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: rgba(76,110,129,0.18);
}
.store-btn strong {
  text-align: left;
  font-size: 18px;
}
::selection {
  background: rgba(76,110,129,0.18);
  color: var(--text);
}
.store-icon {
  font-size: calc(var(--space-md) + var(--space-xs));
}

.apple-btn {
  background: rgba(255,255,255,0.95);
}

.play-btn {
  background: rgba(255,255,255,0.95);
}

.app-preview {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: var(--space-lg);
  color: #222;
  text-align: center;
}
.app-header {
  text-align: center; /* Centers the logo and subtext inside the app screen */
  padding: var(--space-xs) var(--space-xs);
  background: #fff;
}

.app-header h2 {
  margin: 0;
  font-size: 18px;
}

.app-header h5 {
  margin: 5px 0 0;
  font-size: 12px;
  color: #666;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  text-align: left; /* Keep text left-aligned, but the card itself is centered in the screen */
  border-bottom: 1px solid #eee;
}

.icon-box {
  font-size: 24px;
  min-width: 40px;
}
.disclaimer{ font-size: small;}


/* Container for the Grid */
.contact-grid {
  display: grid;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
  grid-template-columns: 1fr 1.2fr;
}

/* Left Side: Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
  margin-top: 0
}

.contact-info h2 {
  margin-bottom: var(--space-md);
  font-size: 28px;
}

.contact-form h2 {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: white;
  color: var(--text);
  box-sizing: border-box;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(76,110,129,0.12);
}
.btn,
.store-btn {
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.contact-form button {
  width: 100%;
  padding: var(--space-sm);
  background:var(--text); /* Matches your blue header */
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
background: var(--primary);
filter: brightness(0.92);
}
.text-center {
  text-align: center;
}
.contact-hero {
  background: #f4f7f9;
  padding: 40px 0 20px;
  text-align: center;
  margin-top: 0;
}

.contact-hero h1 {
  font-size: 32px; /* Smaller, more professional size */
  margin-bottom: 8px;
}
.features,
.trust,
.app-preview,
.app-banner,
.about-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: 10px;
  padding-top: 20px;
  padding-bottom: var(--space-lg);
}

.about-hero {
  background: #f4f7f9;
  padding: 40px 0 20px;
  text-align: center;
  margin-top: 0;
}
section {
  padding-block: 0;
}

.about-hero h1 {
font-size: 32px; /* Smaller, more professional size */
  margin-bottom: 8px;
}
.about-section {
  padding-top: 5px !important;
}
.about-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: 10px;
  max-width: 1100px;
  margin-inline: auto;
}
.about-container .card {
  max-width: 1000px;
  margin-inline: auto;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card p,
.card li {
  color: #2d3748;
  line-height: 1.8;
}
.about-container .card {
  width: 100%;
}
.card a {
  text-decoration: none;
}

.card.highlight {
  border-left: 5px solid var(--primary);
}

.card.warning {
  border-left: 5px solid var(--warning);
  background: #fffafa;
}

.btn {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: white;
  color: var(--text);
}
h1 {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;

}

h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.overlay-content {
  width: 100%;
  max-width: 820px;
  text-align: center;
  padding-top: 20px;

}

h3 {
  font-size: 18px;
  line-height: 1.25;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
  color: var(--text);
}
svg,
video,
canvas,
iframe {
  max-width: 100%;
  display: block;
}

/* Breadcrumb */

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  color: #7b8794;

  padding: 12px 18px;

  background: rgba(255,255,255,0.78);

  border: 1px solid #e6edf2;

  border-radius: 999px;

  backdrop-filter: blur(10px);

  white-space: nowrap;

  width: fit-content;

  margin: 0;
}

.breadcrumb a {
  color: #4c6e81;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.breadcrumb span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #a0acb8;
}

.breadcrumb span:last-child {
  color: #7b8794;
}
/* Main Title */

.article-page h1 {
  font-size: clamp(42px, 4vw, 64px);

  line-height: 1.05;

  letter-spacing: -0.05em;

  margin-bottom: 28px;

  color: #0f172a;

  width: 100%;

  max-width: none;

  white-space: nowrap;
}

.article-page h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 64px;
  height: 3px;
  border-radius: 999px;
    background:
    linear-gradient(
      90deg,
      #4C6E81,
      rgba(76,110,129,0.35)
    );
}
/* Section Titles */

.article-page h2 {
  font-size: 32px;
  margin-top: 54px;
  margin-bottom: 16px;
  color: #243746;
  line-height: 1.3;
  font-weight: 700;
}

/* Paragraphs */
.article-page {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: 48px 32px 120px;
  position: relative;
}


.article-page p {
  font-size: 20px;
  line-height: 1.9;
  color: #5b6572;
  margin-bottom: 22px;
  max-width: 68ch;
}

/* Internal article links */

.article-page p a {
  color: #4c6e81;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(76,110,129,0.25);
}

.article-page p a:hover {
  border-color: #4c6e81;
}

/* FAQ Section */

.faq-section {
  margin-top: 70px;
  padding: 36px;
  border-radius: 22px;
  background:  linear-gradient(
  180deg,
  #fbfcfd 0%,
  #f5f8fa 100%
);
  border: 1px solid #e5e7eb;
}

.faq-section h2 {
  margin-top: 0;
}

.faq-section h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #111827;
}

/* Related Articles */

.related-articles {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.related-articles h2 {
  margin-top: 0;
}

.related-articles ul {
  padding-left: 20px;
}

.related-articles li {
  margin-bottom: 14px;
}

.related-articles a {
  color: #4c6e81;
  text-decoration: none;
  font-weight: 600;
}

.related-articles a:hover {
  text-decoration: underline;
}

/* Mobile */

@media (max-width: 768px) {

  .article-page {
    padding: 40px 18px;
  }

  .article-page h1 {
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: -0.03em;

  }

  .article-page h2 {
    font-size: 28px;
  }

  .article-page p {
    font-size: 18px;
    line-height: 1.8;
  }

  .faq-section {
    padding: 24px;
  }

}
.footer .disclaimer {
  max-width: 900px;
  margin-inline: auto;
}
.card h2{
  margin-top: 0;
}
.card h3 {
  margin-bottom: 10px;
  text-decoration: none;
  color: #22313f;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700; 
}
small {
  color: #5f6672;
}

.footer p,
.footer .disclaimer,
.footer strong {
  color: #f3f4f6;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.contact-form {
  flex: 1.2;
  min-width: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 2px var(--space-xs) rgba(0,0,0,0.04);
}
.contact-section {
  margin-top: 10px; /* Reduced from default */
  padding-top: 20px;
}
.card > * {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}
.card > *:last-child {
  margin-bottom: 0;
}

/* Blog Page Styles */
.blog-page .hero {
  padding: 50px 30px;
  text-align: center;
  background: linear-gradient(135deg, #e9f1f5, #f6f8fb);
}

.blog-page .hero h2 {
  font-size: 32px;
  margin: 0;
}

.blog-page .hero p {
  color: #5b6b75;
}

.blog-page .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.blog-page .card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.2s;
}

.blog-page .card:hover {
  transform: translateY(-4px);
}

.blog-page .tag {
  font-size: 12px;
  background: #e8f1f5;
  padding: 4px 8px;
  border-radius: 6px;
  color: #4c6e81;
  display: inline-block;
  margin-bottom: 8px;
}
.blog-intro {
  padding: 10px 0 20px;
}

.blog-intro .container {
  max-width: 1100px;
}


.blog-intro p {
  font-size: 19px;
  line-height: 1.9;
  color: #4b5563;
  text-align: center;
  margin: 0 auto;
}

.blog-page .card h3 {
  margin: 8px 0;
  font-size: 16px;
}

.blog-page .card p {
  font-size: 13px;
  color: #6b7c88;
}
.card p {
  color: #61707d;
  font-size: 16px;
  line-height: 1.75;
}

.blog-page .article {
  display: none;
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.blog-page .article h2 {
  margin-top: 0;
}

.blog-page .back {
  display: inline-block;
  margin-bottom: 20px;
  color: #4c6e81;
  cursor: pointer;
  font-weight: bold;
}

/* FAQ Page Styles */
.faq-page h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.faq-page .subtext {
  color: #5b6b75;
  margin-bottom: 30px;
  line-height: 1.5;
}

.faq-page .faq-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-page .question {
  font-weight: bold;
  margin-bottom: 8px;
  color: #2c3e50;
}

.faq-page .answer {
  color: #5b6b75;
  line-height: 1.6;
  font-size: 14px;
}
.surface {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.page-hero {
  background: #f4f7f9;
  padding: 40px 0 20px;
  text-align: center;
  margin-top: 0;
  border-bottom: 1px solid var(--border);
}
.page-hero p {
  margin-inline: auto;
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
}
.page-hero h1 {
  font-size: 32px; /* Smaller, more professional size */
  margin-bottom: 12px;
  margin: 0 0 10px 0;
  color: var(--text);
}
.page-hero .container {
  max-width: 760px;
}
a,
button,
.btn,
.store-btn {
  -webkit-tap-highlight-color: transparent;
  transition:
  background-color 0.25s ease,
  color 0.25s ease,
  border-color 0.25s ease,
  transform 0.25s ease,
  opacity 0.25s ease,
  box-shadow 0.25s ease;
  will-change: transform;
  transform: translateZ(0);
  min-height: 44px;

}
.header nav a:hover {
  color: #ffffff;
}
section {position: relative;}
.btn:focus-visible,
.store-btn:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(76,110,129,0.45);
  outline-offset: 2px;
}

ul {
  padding-left: 20px;
}

a {
  color: inherit;
}

textarea {
  resize: vertical;
}
/* ── Policy Page Styles ── */
.policy-hero {
  background: linear-gradient(135deg, #f0faf6 0%, #e6f4ee 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid #d4eadd;
}
.policy-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3d2b;
  margin-bottom: 8px;
}
.policy-hero .meta {
  font-size: 0.875rem;
  color: #5a7a68;
}
.policy-hero .meta span { margin-right: 20px; }

.policy-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Table of Contents */
.policy-toc {
  background: #f7fbf9;
  border: 1px solid #d4eadd;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.policy-toc h2 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3a7a5a;
  margin-bottom: 14px;
}
.policy-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 32px;
}
.policy-toc li {
  font-size: 0.875rem;
  margin-bottom: 7px;
  break-inside: avoid;
}
.policy-toc a {
  color: #2d6e4e;
  text-decoration: none;
  transition: color 0.2s;
}
.policy-toc a:hover { color: #1a3d2b; text-decoration: underline; }
@media (max-width: 600px) {
  .policy-toc ol { columns: 1; }
}

/* Sections */
.policy-section {
  margin-bottom: 48px;
  scroll-margin-top: 80px;
}
.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3d2b;
  border-bottom: 2px solid #d4eadd;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.policy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d5a3f;
  margin: 22px 0 10px;
}
.policy-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a7a5a;
  margin: 18px 0 8px;
}
.policy-section p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 12px;
}
.policy-section ul,
.policy-section ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.policy-section li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 6px;
}

/* Callout Boxes */
.callout {
  border-radius: 8px;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 0.9rem;
  line-height: 1.65;
}
.callout-important {
  background: #fff8e6;
  border-left: 4px solid #f59e0b;
  color: #78350f;
}
.callout-info {
  background: #eff8f3;
  border-left: 4px solid #34a86a;
  color: #1a3d2b;
}
.callout-warning {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  color: #7f1d1d;
}
.callout strong { font-weight: 600; }

/* Data Tables */
.data-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  border-radius: 8px;
  border: 1px solid #d4eadd;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table thead { background: #e6f4ee; }
.data-table th {
  text-align: left;
  padding: 11px 16px;
  font-weight: 600;
  color: #1a3d2b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #d4eadd;
}
.data-table td {
  padding: 11px 16px;
  color: #374151;
  border-bottom: 1px solid #edf5f0;
  vertical-align: top;
  line-height: 1.6;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: #f7fbf9; }

/* Navigation Path Badges */
.path-badge {
  display: inline-block;
  background: #e6f4ee;
  border: 1px solid #b2d8c2;
  border-radius: 5px;
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
  padding: 3px 8px;
  color: #1a5c36;
  margin: 2px 0;
}

/* URL Box */
.url-box {
  background: #f0faf6;
  border: 1px solid #b2d8c2;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #1a3d2b;
  margin: 14px 0;
}
.url-box a {
  color: #2d6e4e;
  font-weight: 600;
  word-break: break-all;
}

/* Contact Cards */
.contact-card {
  background: #f7fbf9;
  border: 1px solid #d4eadd;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 16px 0;
}
.contact-card h4 { color: #1a3d2b; margin-top: 0; }
.contact-card p { margin-bottom: 6px; }
.contact-card a { color: #2d6e4e; }

/* Back to Top */
.back-top {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: #3a7a5a;
  text-decoration: none;
}
.back-top:hover { text-decoration: underline; }

/* Divider */
.policy-divider {
  border: none;
  border-top: 1px solid #d4eadd;
  margin: 40px 0;
}