/* ===================================================================
   NovIqra Technologies — single-page site
   Brand palette taken from the logo: deep navy + teal on a light base
   =================================================================== */

:root {
  --navy-900: #0b1f3a;
  --navy-800: #102a4c;
  --navy-700: #163a63;
  --teal-500: #2a93a8;
  --teal-400: #36a8bd;
  --teal-300: #5cc2d4;
  --ink: #1d2733;
  --muted: #5b6675;
  --bg: #f5f7fa;
  --bg-alt: #ffffff;
  --line: #e4e8ee;
  --shadow: 0 18px 40px -20px rgba(11, 31, 58, 0.28);
  --radius: 16px;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3 { font-family: "Poppins", sans-serif; line-height: 1.2; color: var(--navy-900); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal-500); color: #fff; box-shadow: 0 12px 24px -10px rgba(42, 147, 168, 0.7); }
.btn--primary:hover { background: var(--teal-400); }
.btn--ghost { border-color: var(--navy-700); color: var(--navy-800); }
.btn--ghost:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { background: var(--teal-300); color: var(--navy-900); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 247, 250, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px -16px rgba(11, 31, 58, 0.4); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { height: 40px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 22px; }
.nav__menu a { font-weight: 500; color: var(--navy-800); font-size: 0.95rem; transition: color 0.2s ease; }
.nav__menu a:hover, .nav__menu a.active { color: var(--teal-500); }
.nav__cta {
  background: var(--navy-900);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--teal-500); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--navy-900); border-radius: 3px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 50% -10%, rgba(54, 168, 189, 0.16), transparent 70%),
    radial-gradient(560px 360px at 85% 120%, rgba(22, 58, 99, 0.12), transparent 70%);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero__logo { width: min(440px, 80%); margin: 18px auto 8px; }
.hero__title { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 8px 0 18px; color: var(--navy-900); }
.hero__lead { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 32px 0 8px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  color: var(--navy-800); font-weight: 600; font-size: 0.82rem;
  padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(42,147,168,0.6); } 50% { box-shadow: 0 0 0 7px rgba(42,147,168,0); } }

/* Gradient highlight word in the hero title */
.grad {
  background: linear-gradient(100deg, var(--teal-500), var(--teal-300) 55%, var(--navy-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--teal-500); /* fallback */
}

/* ---------- Hero trust strip ---------- */
.hero__trust {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin: 38px auto 0; max-width: 760px;
}
.hero__trust li {
  background: #fff; border: 1px solid var(--line);
  color: var(--navy-800); font-weight: 600; font-size: 0.88rem;
  padding: 9px 18px; border-radius: 999px;
  box-shadow: 0 8px 22px -16px rgba(11, 31, 58, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hero__trust li:hover { transform: translateY(-3px); border-color: var(--teal-300); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section__head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 10px 0; }
.section__sub { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.78rem; font-weight: 700; color: var(--teal-500);
}
.eyebrow--light { color: var(--teal-300); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.about__text p { margin-bottom: 16px; color: var(--muted); }
.about__text strong { color: var(--navy-900); }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; text-align: center;
}
.stat__num { display: block; font-family: "Poppins", sans-serif; font-size: 2rem; font-weight: 700; color: var(--teal-500); }
.stat__label { color: var(--muted); font-size: 0.85rem; }

/* ---------- Founders ---------- */
.founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.founder {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.founder:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-300); }
.founder__avatar {
  width: 72px; height: 72px; margin: 0 auto 16px;
  border-radius: 50%; display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
}
.founder h3 { font-size: 1.25rem; margin-bottom: 2px; }
.founder__role { display: block; color: var(--teal-500); font-weight: 600; font-size: 0.85rem; margin-bottom: 12px; }
.founder p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Grids / cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid--why { margin-bottom: 56px; }

/* ---------- Values (large feature cards) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 980px; margin: 0 auto; }
.value-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 20px; padding: 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-300); }
.value-card__icon {
  flex-shrink: 0; width: 68px; height: 68px; border-radius: 16px;
  display: grid; place-items: center; font-size: 2rem;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  color: #fff; box-shadow: 0 12px 24px -12px rgba(42, 147, 168, 0.7);
}
.value-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 1.02rem; line-height: 1.6; }
.card {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.section--alt .card { background: var(--bg); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-300); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700));
  color: #fff; font-size: 1.4rem;
}
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Roadmap tabs ---------- */
.roadmap { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); }
.section--alt .roadmap { background: var(--bg); }
.roadmap__tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.roadmap__tab {
  border: 1px solid var(--line); background: var(--bg);
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  font-weight: 600; font-size: 0.9rem; color: var(--navy-800);
  transition: all 0.2s ease; font-family: inherit;
}
.roadmap__tab.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.roadmap__panel { display: none; }
.roadmap__panel.active { display: block; animation: fade 0.4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature {
  display: flex; gap: 14px; padding: 16px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg-alt);
}
.section--alt .feature { background: var(--bg); }
.feature__mark { color: var(--teal-500); font-weight: 700; flex-shrink: 0; }
.feature h4 { font-size: 0.98rem; margin-bottom: 3px; color: var(--navy-900); font-family: "Poppins", sans-serif; }
.feature p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

/* ---------- Timeline ---------- */
.timeline { margin-top: 56px; }
.timeline__title { text-align: center; font-size: 1.4rem; margin-bottom: 30px; }
.timeline__track { position: relative; display: grid; gap: 18px; }
.tl-item {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: start;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-left: 4px solid var(--teal-500); border-radius: 12px; padding: 18px 22px;
}
.section--alt .tl-item { background: var(--bg); }
.tl-item--now { border-left-color: #2bb673; }
.tl-when { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--teal-500); font-size: 0.95rem; }
.tl-item--now .tl-when { color: #2bb673; }
.tl-what { color: var(--muted); }
.tag-now {
  display: inline-block; background: #2bb673; color: #fff;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 2px 9px; border-radius: 999px; margin-left: 8px;
}

/* ---------- CTA / coming soon ---------- */
.section--cta { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; }
.coming { text-align: center; max-width: 720px; margin: 0 auto; }
.coming h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 10px 0 18px; }
.coming p { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; margin-bottom: 28px; }

/* ---------- Tech stack ---------- */
.tech { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tech-group { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.tech-group__title { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: var(--navy-900); margin-bottom: 16px; }
.tech-group__title::before {
  content: ""; width: 6px; height: 20px; border-radius: 3px;
  background: linear-gradient(var(--teal-500), var(--navy-700));
}
.tech-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.tech-pills li {
  background: var(--bg); border: 1px solid var(--line); color: var(--navy-800);
  font-size: 0.85rem; font-weight: 500; padding: 7px 13px; border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.tech-pills li:hover { transform: translateY(-2px); border-color: var(--teal-300); color: var(--teal-500); }

/* ---------- What we can build (solution tiles) ---------- */
.solutions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.solution {
  display: flex; gap: 14px; align-items: center;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.solution:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-300); }
.solution__icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px;
  display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-700)); color: #fff;
}
.solution h3 { font-size: 0.98rem; margin: 0; line-height: 1.25; }
.solution p { font-size: 0.8rem; color: var(--muted); margin: 3px 0 0; }
.solutions__note { text-align: center; margin-top: 30px; color: var(--muted); }
.solutions__note a { color: var(--teal-500); font-weight: 600; }
.solutions__note a:hover { text-decoration: underline; }

/* ---------- Product screenshots ---------- */
.shots { margin-bottom: 56px; }
.browser {
  margin: 0 auto 18px; max-width: 900px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff;
}
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--navy-900); }
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #5a6b86; }
.browser__dot:nth-child(1) { background: #ff5f57; }
.browser__dot:nth-child(2) { background: #febc2e; }
.browser__dot:nth-child(3) { background: #28c840; }
.browser__url {
  margin-left: 12px; font-size: 0.8rem; color: #9fb0c9;
  background: rgba(255, 255, 255, 0.08); padding: 4px 14px; border-radius: 999px;
}
.browser__view { background: #1b2a44; }
.browser__view img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; object-position: top left; }
.shots__thumbs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.shot-thumb {
  border: 1px solid var(--line); background: var(--bg-alt); color: var(--navy-800);
  padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; font-family: inherit; transition: all 0.2s ease;
}
.shot-thumb:hover { border-color: var(--teal-300); }
.shot-thumb.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 22px; font-family: inherit; font-size: 1.05rem; font-weight: 600;
  color: var(--navy-900); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { font-size: 1.5rem; line-height: 1; color: var(--teal-500); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 460px; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; text-align: left; max-width: var(--maxw); }
.contact__intro h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 10px 0 16px; }
.contact__intro p { color: rgba(255, 255, 255, 0.82); margin-bottom: 24px; }
.contact__intro strong { color: #fff; }
.contact__links { list-style: none; display: grid; gap: 12px; }
.contact__links li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.contact__links a { color: #fff; }
.contact__links a:hover { color: var(--teal-300); }
.contact__ico {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); color: var(--teal-300); font-weight: 700; font-size: 0.85rem;
}
.contact__form { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 18px; padding: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96); color: var(--ink); font-family: inherit; font-size: 0.95rem;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal-400); outline-offset: 1px; }
.contact__form .btn { width: 100%; margin-top: 4px; }
.hp { position: absolute; left: -9999px; }
.contact__status { margin-top: 14px; font-size: 0.9rem; min-height: 1.2em; color: rgba(255, 255, 255, 0.8); }
.contact__status.ok { color: #7ee0a0; }
.contact__status.err { color: #ffb4ad; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.7); padding: 38px 0; text-align: center; }
.footer__social { display: flex; gap: 12px; justify-content: center; margin-bottom: 16px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); color: #fff; font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer__social a:hover { background: var(--teal-500); transform: translateY(-3px); }
.footer__brand { font-family: "Poppins", sans-serif; color: #fff; font-weight: 600; margin-bottom: 4px; }
.footer__tag { font-size: 0.9rem; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--teal-500); transform: translateY(-3px); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* Nav collapses to a hamburger sooner because it has several links */
@media (max-width: 920px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease; box-shadow: var(--shadow);
  }
  .nav__menu.open { max-height: 520px; }
  .nav__menu a { padding: 15px 24px; border-top: 1px solid var(--line); }
  .nav__cta { margin: 12px 24px; text-align: center; }
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .founders { grid-template-columns: repeat(2, 1fr); }
  .tech { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .solutions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .feature-list { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .founders { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .solutions { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .hero__trust li { font-size: 0.82rem; padding: 8px 14px; }
  .value-card { flex-direction: column; gap: 16px; padding: 26px; }
}
