* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  color: #111827;
  background: #fff7ed; /* cream */
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section.bg-light {
  background: #fffaf0;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-header {
  max-width: 640px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.section-header p {
  margin: 0;
  color: #4b5563;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(248, 153, 56, 0.9);
  background: transparent;
  color: #f97316;
  font-size: 13px;
  padding: 8px 16px;
}

.link-muted {
  font-size: 13px;
  color: #4b5563;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 247, 237, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #fed7aa;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #111827;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffedd5;
}

.logo h1 {
  margin: 0;
  font-size: 18px;
}

.logo span {
  font-size: 11px;
  color: #9ca3af;
}

/* NEW: right side wrapper (Book a Demo + nav) */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.nav a {
  color: #92400e;
  padding: 4px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #fed7aa, #fffbeb 55%);
  color: #111827;
  padding: 80px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
}

.hero-copy h2 {
  font-size: 30px;
  margin: 0 0 12px;
}

.hero-copy p {
  margin: 0 0 18px;
  color: #4b5563;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
}

.hero-metrics h3 {
  margin: 0;
  font-size: 22px;
  color: #c2410c;
}

.hero-metrics span {
  display: block;
  color: #7c2d12;
}

.hero-card {
  background: #fffbeb;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #fed7aa;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.hero-card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #4b5563;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #4b5563;
}

.hero-card li::before {
  content: "• ";
  color: #f97316;
}

/* Cards */

.card-minimal,
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(248, 181, 91, 0.3);
}

.card-minimal h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card-minimal p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

.feature-card .tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400e;
  background: #ffedd5;
  border-radius: 999px;
  padding: 3px 9px;
  margin-bottom: 8px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.feature-card p {
  margin: 0 0 10px;
  font-size: 13px;
  color: #4b5563;
}

.feature-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #4b5563;
}

.feature-card li::before {
  content: "– ";
}

/* TEAM */

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 32px 0;
  padding: 24px;
  border-radius: 16px;
  background: #fff7ed;            /* cream card bg */
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(30px);
}

.team-row.reverse {
  flex-direction: row-reverse;
}

.team-img img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid #fed7aa;      /* soft orange border */
}

.team-content h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;               /* bold name */
  color: #b45309;                 /* strong orange for name */
}

.team-content .role {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  color: #92400e;                 /* darker orange/brown */
}

/* 4 PEOPLE Added here */
.team-content p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;                 /* readable grey body */
}

.team-row.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* optional: mobile tweak */

@media (max-width: 640px) {
  .team-row,
  .team-row.reverse {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CONTACT */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 13px;
  color: #4b5563;
}

.contact-points li::before {
  content: "✓ ";
  color: #f97316;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fffbeb;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 9px 10px;
  font-size: 13px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
}

.form-status {
  font-size: 12px;
  min-height: 16px;
  color: #4b5563;
}

/* Responsive base */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Agar mobile pe nav chahiye to is line ko comment kar sakte ho */
  .nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 72px;
  }

  .hero-copy h2 {
    font-size: 24px;
  }

  .team-row,
  .team-row.reverse {
    flex-direction: column;
  }

  .team-img img {
    width: 180px;
    height: 220px;
  }
}

/* API Platform */

.api-grid .api-card {
  position: relative;
}

.api-card .api-toggle {
  margin-top: 14px;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.04);
  color: #c2410c;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.api-card .api-toggle:hover {
  background: rgba(249, 115, 22, 0.09);
  transform: translateY(-1px);
}

.api-panel {
  margin-top: 32px;
  background: #111827;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(251, 191, 36, 0.7);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
}

.api-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.api-tab {
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.6);
  background: transparent;
  color: #e5e7eb;
  font-size: 11px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.api-tab.active {
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-color: transparent;
  color: #111827;
}

.api-content {
  position: relative;
  overflow: auto;
}

.api-block {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre;
  padding: 12px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #020617, #020617 60%);
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.api-block .api-label {
  color: #facc15;
  font-weight: 500;
}

.api-block.hidden {
  display: none;
}

@media (max-width: 640px) {
  .api-panel {
    margin-top: 24px;
    padding: 12px;
  }

  .api-block {
    font-size: 11px;
  }
}

/* Landing video first slide */

.landing-video {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  color: #111827;
}

.landing-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.landing-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* sirf overlay colors change, video same */

.landing-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(254, 243, 199, 0.94),
    rgba(251, 191, 36, 0.92)
  );
}

.landing-content {
  text-align: center;
  max-width: 640px;
}

.landing-content h1 {
  margin: 0 0 12px;
  font-size: 60px;
  letter-spacing: 0.04em;
  color: #b45309;
}

.landing-content p {
  margin: 0 0 20px;
  font-size: 20px;
  color: #7c2d12;
}

.landing-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.scroll-hint {
  font-size: 12px;
  color: #92400e;
}

/* hero second slide padding */

.hero {
  padding-top: 64px;
}

/* Footer overall */

.site-footer {
  background: #fff5ea;
  color: #1f2933;
  margin-top: 40px;
}

/* Top area: columns */

.footer-top {
  border-top: 1px solid #fed7aa;
  padding: 40px 0 32px;
}

.footer-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1 1 260px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.footer-logo h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.footer-logo span {
  font-size: 13px;
  color: #6b7280;
}

.footer-columns {
  display: flex;
  flex: 2 1 480px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #b45309;
}

.footer-col a {
  font-size: 13px;
  color: #111827;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Bottom bar */

.footer-bottom {
  border-top: 1px solid #fed7aa;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #4b5563;
}

.footer-bottom-left span {
  display: block;
}

.footer-bottom-left a {
  color: #b45309;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom-center {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-center a {
  color: #4b5563;
  text-decoration: none;
}

.footer-bottom-center a:hover {
  text-decoration: underline;
}

/* Social icons right */

.footer-bottom-right {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #374151;
  background: #fffbeb;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
    transform 0.1s ease;
}

.footer-social:hover {
  background: #111827;
  color: #f9fafb;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.35);
  transform: translateY(-1px);
}

/* Responsive footer */

@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-columns {
    justify-content: flex-start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-right {
    align-self: flex-start;
  }
}