/*  GLOBAL */
:root {
  --brand: #2463eb;           
  --ink: #111827;            
  --muted: #4b5563;           
  --bg: #ffffff;
  --border: #e5e7eb;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* Containers  */
.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/*  Navbar  */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.subtext {
      font-size: 1.0rem;
      color: #7b7a7aff;
      margin-bottom: 1.5rem;
    }
.hero-features li {
    font-size: 1.0rem;
      color: #000;
      margin-bottom: 0.4rem;
}

.section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 3rem;
      color: #7b7a7aff;
    }

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 42px;          
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.5rem;    
  font-weight: 800;      
  color: var(--brand);   
  letter-spacing: 1px;
  text-transform: uppercase;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brand);
}

.hiring {
  color: var(--brand);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--brand);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(36, 99, 235, 0.25);
}

.btn-primary:hover {
  background: #1d4ed8;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
}

/*  home SECTION  */
.home {
  padding: 80px 0;
}

.home-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.home-text h1 {
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.home-text p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.home-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.store-icons {
  display: flex;
  gap: 14px;
  font-size: 28px;
  color: #4b5563;
}

.store-icons i:hover {
  color: var(--brand);
}

.home-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .home-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-cta {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }
}
.logo-text {
  font-size: 1.2rem;
}
.logo-img {
  height: 36px;
}

/*  products  */
.products {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 8px 16px rgba(36, 99, 235, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(36, 99, 235, 0.1);
}

.product-card h3 {
  margin: 14px 0 10px;
  font-size: 1.1rem;
}

.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.icon-circle {
  width: 100px;
  height: 100px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  color: white;
  background: var(--brand);
}

.icon-circle.blue  { background: #60a5fa; }
.icon-circle.green { background: #22c55e; }
.icon-circle.sky   { background: #38bdf8; }

/* for Smaller screens */
@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---  product images  --- */
.icon-circle {
  width: clamp(90px, 9vw, 110px);
  height: clamp(90px, 9vw, 110px);
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;              /*  big PNGs spill */
  background: var(--brand);      
}


.icon-circle.blue  { background: #60a5fa; }
.icon-circle.green { background: #22c55e; }
.icon-circle.sky   { background: #38bdf8; }

/* scale & center  image shape */
.icon-circle img {
  width: 100%;                    
  height: 100%;
  object-fit: contain;           
  display: block;                
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.08));
}


.product-card h3 { margin-top: 10px; }

/*  FEATURE SECTION  */
.feature {
  padding: 100px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;    
  align-items: center;
  gap: 60px;                          
  max-width: 1100px;                 
  margin: 0 auto;                     
  padding: 0 40px;                   
}

/* Image styling */
.feature-art img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Text styling */
.feature-text {
  padding: 0 20px;
}

.feature-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
  color: var(--ink);
}

.feature-text ul {
  color: var(--muted);
  margin-bottom: 24px;
  padding-left: 20px;
  line-height: 1.6;
}

/* Reverse layout */
.feature-grid.reverse {
  direction: rtl;              /* flips order  */
}

.feature-grid.reverse .feature-text {
  direction: ltr;              
}
/* Mobile responsiveness */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
  }

  .feature-text {
    padding: 0;
  }

  .feature-art img {
    max-width: 320px;
  }
}



/*  Featured On */
.featured-on {
  background: #F5F7FA !important;   
  padding: 70px 0;
  text-align: center;
}

.featured-on .section-title {
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 45px;
}

/*   row of logos */
.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;        /* all in one row */
  gap: 80px;                /* balanced space between logos */
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;         /* prevents overflow */
}

/* smaller consistent logo sizing */
.featured-logos .logo {
  height: 38px;             
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%) contrast(110%) brightness(95%);
  transition: all 0.25s ease;
}

.featured-logos .logo:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-3px) scale(1.05);
}

/* responsive*/
@media (max-width: 992px) {
  .featured-logos { gap: 60px; }
  .featured-logos .logo { height: 34px; }
}

@media (max-width: 680px) {
  .featured-logos { gap: 40px; flex-wrap: wrap; }
  .featured-logos .logo { height: 32px; }
}

/*  Footer  */
.footer { background:#f8fafc; border-top:1px solid rgba(17,24,39,.06); padding-top:64px; color:#334155; }
.footer-grid {
  display:grid; grid-template-columns:1.5fr 1fr 1fr;
  gap:32px 48px; align-items:start;
  max-width:1100px; margin:0 auto; padding:0 24px;
}
.footer-brand { color:var(--brand); font-weight:800; font-size:1.6rem; letter-spacing:-.01em; margin-bottom:10px; }
.footer-left address { font-style:normal; margin:6px 0 8px; color:#475569; }
.footer-contact a { color:#0f172a; text-decoration:none; }
.footer-contact a:hover { color:var(--brand); }
.footer-heading { font-size:1.05rem; color:#0f172a; font-weight:700; margin-bottom:10px; }

/* social pills */
.social-icons { display:flex; gap:10px; margin:10px 0 8px; }
.social-btn {
  width:38px; height:38px; display:grid; place-items:center;
  border:1px solid rgba(15,23,42,.12); border-radius:999px;
  background:#fff; color:#475569; transition:.2s;
  text-decoration: none;
}
.social-btn:hover { color:#fff; background:var(--brand); border-color:var(--brand); transform:translateY(-2px); box-shadow:0 8px 18px rgba(36,99,235,.18); }
.footer-mail { color:var(--brand); font-weight:600; text-decoration:none; }
.footer-mail:hover { text-decoration:underline; }

/* links and stats */
.footer-links { display:inline-flex; align-items:center; gap:12px; margin:6px 0 12px; }
.footer-links a { color:#0f172a; text-decoration:none; font-weight:500; }
.footer-links a:hover { color:var(--brand); }
.footer-stats { list-style:none; padding:0; margin:6px 0 0; display:grid; gap:8px; }
.footer-stats .stat {
  display:inline-flex; align-items:center; gap:8px; padding:8px 12px;
  border:1px solid rgba(15,23,42,.08); border-radius:999px; background:#fff; color:#0f172a; width:fit-content;
}
.footer-stats .stat i { font-size:18px; color:var(--brand); }

/* lower strip */
.footer-divider { height:1px; background:rgba(17,24,39,.08); margin:36px 0; }
.footer-support {
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:0 24px 56px; max-width:1100px; margin:0 auto;
}
.footer-support .support-title { font-weight:700; color:#0f172a; }
.footer-support .support-title span { font-weight:500; color:#475569; }
.footer-support .support-contacts { display:inline-flex; flex-wrap:wrap; gap:10px; }
.footer-support .support-contacts a { color:#0f172a; text-decoration:none; font-weight:500; }
.footer-support .support-contacts a:hover { color:var(--brand); }

/* helpers + responsive */
.pipe { color:rgba(15,23,42,.35); }
.dot { color:rgba(15,23,42,.35); margin:0 6px; }
.copyright{ margin-top:10px; font-size:.92rem; color:#64748b; }
@media (max-width:980px){
  .footer-grid{ grid-template-columns:1fr; text-align:center; }
  .footer-stats{ justify-content:center; }
  .social-icons{ justify-content:center; }
  .footer-support{ flex-direction:column; text-align:center; }
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}


/*  Trial CTA  */
.trial-cta {
  padding: 24px 0 56px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.trial-cta__card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 40px);
}

/* illustration */
.trial-cta__art {
  width: clamp(110px, 40vw, 200px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.08));
}

/* text + button */
.trial-cta__content {
  text-align: center;
}
.trial-cta__content h3 {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

/*  primary button, larger  */
.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(36,99,235,.18);
}

/* responsive stack */
@media (max-width: 820px) {
  .trial-cta__card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .trial-cta__art {
    margin: 0 auto;
  }
}


/*  App Download   */
.app-band { background:#fff; color:var(--ink); padding:56px 0 0; position:relative; overflow:hidden; }
.app-band__inner {
  display:grid; grid-template-columns: 1fr auto; align-items:center; gap:32px;
}
.app-band__eyebrow { font-weight:600; color:var(--ink); margin-bottom:6px; }
.app-band__bar { color:var(--brand); margin-left:10px; font-weight:800; }
.app-band__title { font-size:clamp(28px,3.6vw,44px); line-height:1.1; letter-spacing:-.02em; margin:2px 0 10px; color:var(--ink); }
.app-band__title .strong { color:var(--brand); font-weight:800; }
.app-band__sub { color:var(--muted); max-width:520px; }

.app-band__stores { display:flex; align-items:center; gap:16px; }
.store-badge { display:inline-block; line-height:0; }
.store-badge img { height:54px; width:auto; display:block; }
.app-band__stores .store-badge:first-child img {
  height: 80px;   
}

.app-band__wave { color:var(--brand); margin-top:32px; }
.app-band__wave svg { display:block; width:100%; height:120px; }

@media (max-width: 900px) {
  .app-band__inner { grid-template-columns:1fr; text-align:center; }
  .app-band__stores { justify-content:center; }
}





/*  Contact  */
.contact-band{
  background: linear-gradient(180deg, rgba(36,99,235,.08) 0%, rgba(36,99,235,.06) 100%);
  padding: 56px 0 80px;
}
.contact-head{ text-align:center; margin-bottom:20px; }
.contact-head h2{
  color:var(--ink); font-weight:800; font-size:clamp(26px,3.2vw,38px); letter-spacing:-.02em;
}
.contact-head p{ color:var(--muted); margin-top:6px; }

/* white card */
.contact-card{
  background:#fff; border-radius:14px;
  box-shadow: 0 10px 25px rgba(17,24,39,.10), 0 2px 6px rgba(17,24,39,.06);
  padding:28px; width:min(940px,96%); margin:20px auto 0;
}

/* grid like  */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:16px 24px;
}

/* inputs / selects / textarea */
.contact-card input,
.contact-card select,
.contact-card textarea{
  width:100%; padding:12px 14px; border:1px solid var(--border);
  border-radius:8px; font:inherit; color:var(--ink); background:#fff; outline:none;
  transition:border-color .15s, box-shadow .15s;
}
.contact-card textarea{ resize:vertical; min-height:46px; }
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus{
  border-color:var(--brand); box-shadow:0 0 0 3px rgba(36,99,235,.12);
}

/* checkbox + submit */
.contact-consent{
  display:flex; align-items:center; gap:10px; color:var(--muted);
  font-size:.95rem; margin:18px 2px 14px;
}
.contact-consent input{ width:18px; height:18px; }
.contact-submit{
  width:100%; border-radius:10px; padding:14px 18px; font-weight:700;
  box-shadow:0 10px 24px rgba(36,99,235,.18);
}

/* messages */
.contact-note{ margin-top:10px; font-weight:600; }
.contact-success{ color:#059669; }   
.contact-error{ color:#b91c1c; }      

/* responsive */
@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; }
}

html {
  scroll-behavior: smooth;
}


/* Privacy page */
.policy {
  max-width: 980px;
  margin: 48px auto;
  line-height: 1.75;
}

.policy h1 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--ink, #0d1b2a);
}

.policy .effective-date {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--muted-ink, #4b5563);
}

.policy h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--ink, #0d1b2a);
}

.policy p { margin: 0.5rem 0 1rem; }
.policy ul { padding-left: 1.25rem; margin: 0.25rem 0 1rem; }
.policy li { margin: 0.35rem 0; }
