* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

/* Scoped variables and base styles */
.oqsha-wrap {
  --bg0: #030817;
  --bg1: #0b1324;
  --card: rgba(10, 18, 35, 0.72);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.45);
  --accent: #1160fb;
  --accent2: #4180fc;
  --green: #23c55e;
  --orange: #fb6a2a;

  background:
    radial-gradient(
      900px 500px at 18% 22%,
      rgba(17, 96, 251, 0.15),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 78% 12%,
      rgba(255, 255, 255, 0.04),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  padding: clamp(16px, 4vw, 40px);
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Layout Containers */
.oqsha-header {
  max-width: 1200px;
  margin: 0 auto clamp(24px, 5vw, 48px);
  position: relative;
  z-index: 100;
  font-family: "Poppins", sans-serif;
}

.oqsha-toprow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 16px;
}

.oqsha-logo-mark {
  width: 172px;
  height: 60px;
}

.oqsha-toplinks {
  display: flex;
  gap: 24px;
}

.oqsha-toplink {
  color: var(--muted2);
  text-decoration: none;
  transition: color .2s;
}

.oqsha-toplink:hover {
  color: #fff;
}

/* Navigation */
.oqsha-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
}

.oqsha-navlinks {
  display: flex;
  gap: 32px;
  align-items: center;
}

.oqsha-navlink {
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}

.oqsha-navlink:hover {
  color: #fff;
}

/* Hamburger Menu */
.oqsha-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.oqsha-nav-child {
  display: flex;
  justify-content: space-between;
  width: 82%;
}

/* Hero Card */
.oqsha-hero-card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid var(--stroke);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  padding: clamp(24px, 5vw, 48px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.oqsha-hero-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.oqsha-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif;
}

.oqsha-h1 {
  margin: 0 0 20px;
  line-height: 1.05;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
}

.oqsha-accent {
  color: var(--accent2);
  background: linear-gradient(to right, #4180fc, #88b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oqsha-sub {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.6;
  max-width: 632px;
}

/* Background Image */
.oqsha-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.oqsha-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.oqsha-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 1) 100%
  );
}

/* Trust Badge */
.oqsha-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.oqsha-trust-icons span {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  border: 1px solid rgba(10, 47, 84, 1);
}

.oqsha-trust-icons span:first-child {
  margin-left: 0;
}

.oqsha-trust-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.oqsha-trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

/* Buttons */
.oqsha-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.oqsha-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(17, 96, 251, 0.3);
}

.oqsha-btn--primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.oqsha-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.oqsha-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.oqsha-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.watch-play-icon {
  width: 20px;
  height: 20px;
}

/* Features */
.oqsha-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.oqsha-feature {
  padding: 20px;
  border-radius: 12px;
  transition: border-color 0.3s;
  background: rgba(255 255 255 / 0.03);
  border: 1px solid var(--color-white-5, rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.oqsha-feature:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.oqsha-feature-header {
  display: flex;
  gap: 12px;
}

.oqsha-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.oqsha-feature-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.oqsha-feature-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.oqsha-feature-sub {
  font-size: 14px;
  color: var(--muted2);
}

/* Media Area */
.oqsha-hero-tablet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.oqsha-hero-img {
  transition: transform 0.6s ease-in-out;
}

.oqsha-hero-bg.is-zoom .oqsha-hero-img {
  transform: scale(1.08);
}


/* Stat Chip */
.oqsha-chip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255 255 255 / 0.03);
  border: 1px solid var(--color-white-5, rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.oqsha-chip-icon {
  width: 40px;
  height: 40px;
  background: rgba(52, 211, 153, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(25, 169, 22, 1);
}

.oqsha-chip-value {
  font-size: 18px;
  font-weight: 800;
  display: block;
}

.oqsha-chip-label {
  font-size: 14px;
  color: var(--muted2);
}

/* Face Hotspot */
.oqsha-zoom-hotspot {
  left: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 10;
}

/* Mobile Responsive */
@media (max-width: 1275px) {
  .oqsha-btn {
    padding: 14px 26px;
    font-size: 16px;
  }
  .oqsha-nav {
    gap: 14px;
  }
  .oqsha-nav-child {
    width: 78%;
  }
  .usp-bg-img {
    object-fit: fill !important;
  }
}

@media (max-width: 1024px) {
  .oqsha-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oqsha-copy {
    order: 2;
    text-align: center;
  }
  .oqsha-sub {
    margin-inline: auto;
  }
  .oqsha-cta {
    justify-content: center;
  }
  .oqsha-media {
    order: 1;
  }
  .oqsha-media-frame {
    aspect-ratio: 16/9;
  }
  .oqsha-btn {
    font-size: 15px;
  }
  .oqsha-nav {
    gap: 12px;
  }
  .oqsha-hero-tablet-img {
    display: block;
  }
  .oqsha-media-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/5;
    border: 1px solid var(--stroke);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }
  .oqsha-hero-bg {
    display: none;
  }
  .oqsha-navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg1);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    margin-top: 8px;
    z-index: 50;
  }
  .oqsha-navlinks.active {
    display: flex;
  }
  .oqsha-menu-toggle {
    display: block;
    transform: scale(1.4);
  }
  .oqsha-nav-child {
    flex-direction: row-reverse;
    width: 28%;
  }
}

@media (max-width: 991px) {
  .oqsha-features {
    grid-template-columns: none;
  }
  .oqsha-feature-texts {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .oqsha-features {
    grid-template-columns: 1fr;
  }
}

/* Unified Safety Platform Section */

.usp-wrapper {
  max-width: 1200px;
  margin: 80px auto 160px auto;
  padding: 0 24px;
  font-family: "Poppins", sans-serif;
  color: #0b1320;
  position: relative;
}

.usp-bg-img {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  background-size:contain;
}

/* Dark Panel */
.usp-panel {
  background: linear-gradient(135deg, #050b18, #0b1630);
  color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
}

.usp-column h3 {
  margin: 12px 0;
  font-size: 22px;
}

.usp-column p {
  color: #b8c1d9;
  line-height: 1.6;
  font-size: 15px;
}

.usp-label {
  font-size: 12px;
  letter-spacing: .08em;
  color: #2fd2ff;
  font-weight: 600;
}

.usp-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* Headline */
.usp-headline {
  text-align: center;
  margin: 60px 0 40px;
}

.usp-headline h2 {
  font-size: 36px;
  font-weight: 700;
}

.usp-headline p {
  margin-top: 12px;
  color: #5f6b85;
  font-size: 16px;
}

/* Metrics */
.usp-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: linear-gradient(135deg, #050b18, #0b1630);
  color: #ffffff;
  border-radius: 14px;
  padding: 28px;
}

.metric-card h3 {
  font-size: 32px;
  color: #2fd2ff;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

.metric-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #b8c1d9;
  line-height: 1.5;
}

/* ROI */
.usp-roi {
  text-align: center;
  margin-top: 24px;
}

.usp-roi a {
  color: #2563ff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.usp-roi a:hover {
  text-decoration: underline;
}

/* AI Tagline */
.usp-tagline {
  text-align: center;
  margin-top: 60px;
}

.usp-tagline p {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  letter-spacing: .05em;
}

/* Responsive */
@media (max-width: 1024px) {
  .usp-panel {
    grid-template-columns: 1fr;
  }

  .usp-divider {
    display: none;
  }

  .usp-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .usp-metrics {
    grid-template-columns: 1fr;
  }

  .usp-headline h2 {
    font-size: 28px;
  }
}

/* Why Teams Choose OQSHA */
.why-oqsha {
  background: radial-gradient(
    1200px 600px at top,
    #0b1a3a 0%,
    #050b18 55%,
    #02060f 100%
  );
  padding: 100px 24px;
  font-family: "Poppins", sans-serif;
}

.why-oqsha-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-oqsha h2 {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 64px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: linear-gradient(135deg, #06112a, #0b1b3d);
  border-radius: 18px;
  padding: 36px 32px;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
}

.icon-ai {
  background: rgba(47, 210, 255, 0.15);
  color: #2fd2ff;
}

.icon-mobile {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.icon-proof {
  background: rgba(255, 81, 29, 0.2);
  color: #f97316;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #b8c1d9;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-oqsha h2 {
    font-size: 32px;
  }
}

/* Solve Core Safety Workflows */
.oqsha-workflows {
  padding: 100px 24px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.oqsha-workflows-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.oqsha-workflows h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #0b3a82;
  margin-bottom: 12px;
}

.oqsha-workflows .subtitle {
  text-align: center;
  font-size: 16px;
  color: #5f6b85;
  max-width: 720px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.workflow-card {
  background: linear-gradient(135deg, #050b18, #0b1630);
  border-radius: 18px;
  padding: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.workflow-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.workflow-card .problem {
  color: #facc15;
  font-size: 14px;
  margin-bottom: 16px;
}

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.workflow-tag {
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #cdd6f4;
}

.workflow-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #b8c1d9;
  margin-bottom: 20px;
}

.workflow-card a {
  color: #2fd2ff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.workflow-card a:hover {
  text-decoration: underline;
}

/* Bottom row */
.workflow-grid.bottom {
  grid-template-columns: 1fr 2fr;
  margin-top: 32px;
}

/* AI mock */
.ai-mock {
  background: linear-gradient(135deg, #040a16, #091735);
  border-radius: 14px;
  padding: 20px;
  margin-top: 16px;
}

.ai-query {
  background: #0b3a82;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 0 8px 8px 8px;
  font-size: 13px;
  width: fit-content;
  margin-bottom: 10px;
}

.ai-response {
  background: rgba(47, 210, 255, 0.15);
  color: #cfefff;
  padding: 12px 14px;
  border-radius: 8px 0 8px 8px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 420px;
  border: 1px solid rgba(0, 191, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .workflow-grid,
  .workflow-grid.bottom {
    grid-template-columns: 1fr;
  }

  .oqsha-workflows h2 {
    font-size: 32px;
  }
}

/* Ask OQO section */
.ask-qoo-section {
  background: radial-gradient(circle at top left, #0a2e73, #061733);
  padding: 80px 60px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.ask-qoo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Left Content */

.ask-qoo-content {
  flex: 1;
}

.ask-qoo-heading {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.ask-qoo-subtext {
  font-size: 16px;
  color: #c9d4f0;
  max-width: 520px;
  margin-bottom: 24px;
}

.ask-qoo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.ask-qoo-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #dbe4ff;
  position: relative;
}

.ask-qoo-features .icon {
  background: rgba(0, 191, 255, 0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ask-qoo-features img {
  width: 20px;
  height: 20px;
}

.ask-qoo-highlight {
  color: #ffcc00;
  font-weight: 600;
  font-size: 15px;
}

/* Chat UI */

.ask-qoo-chat-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ask-qoo-chat {
  width: 100%;
  max-width: 420px;
  background: #071b3a;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ask-qoo-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #0b2a5c;
}

.ask-qoo-avatar {
  background: rgba(17, 96, 251, 1);
  border-radius: 50%;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ask-qoo-avatar img {
  width: 32px;
  height: 32px;
}

.ask-qoo-title {
  font-weight: 600;
}

.ask-qoo-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ask-qoo-user-message {
  align-self: flex-end;
  background: #0d3b80;
  padding: 12px 14px;
  border-radius: 16px 2px 16px 16px;
  font-size: 14px;
  max-width: 85%;
}

.ask-qoo-ai-message {
  background: #0a244d;
  padding: 14px;
  border-radius: 2px 16px 16px 16px;
  border: 1px solid rgba(0, 191, 255, 0.2);
  font-size: 14px;
  color: rgba(207, 223, 254, 1);
}

.ask-qoo-ai-message ul {
  padding-left: 18px;
  margin: 8px 0 12px 0;
}

.ask-qoo-btn {
  background: #2563eb;
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.ask-qoo-btn:hover {
  background: #1d4ed8;
}

.ask-qoo-chat-footer {
  padding: 14px 16px;
  background: #061733;
  color: #7c8db5;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */

@media (max-width: 900px) {
  .ask-qoo-container {
    flex-direction: column;
  }

  .ask-qoo-heading {
    font-size: 34px;
  }
}

/* Built for field */
.field-built-section {
  background: #ffffff;
  padding: 80px 60px;
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

.field-built-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

/* Image */

.field-built-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.field-built-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  border: 1px solid #e5f0ff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* Content */

.field-built-content {
  flex: 1;
}

.field-built-content h2 {
  font-size: 40px;
  line-height: 1.25;
  color: #0b2a6f;
  margin-bottom: 20px;
}

.field-built-subtext {
  font-size: 16px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Features */

.field-built-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.field-built-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 20px;
  color: #0ea5e9;
  margin-top: 2px;
}

.feature-icon img {
  width: 20px;
  height: 20px;
}

.field-built-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.field-built-feature p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
  .field-built-container {
    flex-direction: column;
    text-align: center;
  }

  .field-built-content h2 {
    font-size: 32px;
  }

  .field-built-feature {
    text-align: left;
  }
}

/* Teams proof section */
.teams-proof-section {
  background: #f7fbff;
  padding: 90px 60px;
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

.teams-proof-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */

.teams-proof-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* Testimonial Card */

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform .5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}

.carousel-dot:hover {
  background: #94a3b8;
}

.carousel-dot.active {
  background: #2563eb;
  transform: scale(1.2);
}

.teams-proof-card {
  background: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  text-align: left;
}

.teams-proof-quote {
  font-size: 18px;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 22px;
}

.teams-proof-author {
  font-size: 14px;
  color: #334155;
  margin-bottom: 24px;
}

.teams-proof-author span {
  color: #64748b;
}

.teams-proof-divider {
  height: 1px;
  background: #e5edf8;
  margin-bottom: 18px;
}

/* Tags */

.teams-proof-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

.tag-green {
  background: #dcfce7;
  color: #166534;
}

.tag-blue {
  background: #dbeafe;
  color: #1e40af;
}

.tag-yellow {
  background: #fef3c7;
  color: #92400e;
}

/* Industries */

.teams-proof-industries {
  font-size: 15px;
  color: #475569;
  margin: 30px 0;
}

/* Logos */

.teams-proof-logos, .client-logo-group-1, .client-logo-group-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 48px;
}

.teams-proof-logos .logo-placeholder {
  width: 120px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
}

.logo-placeholder img {
  width: 100%;
  height: auto;
}

/* CTA */

.teams-proof-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid #0f172a;
  color: #0f172a;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f1f5f9;
}

/* Responsive */

@media (max-width: 768px) {
  .teams-proof-heading {
    font-size: 32px;
  }

  .teams-proof-card {
    padding: 28px;
  }

  .testimonial-carousel {
    gap: 8px;
  }
}

.demo-request-section {
  background: #f8fafc;
  padding: 100px 60px;
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

.demo-request-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

.demo-request-header {
  text-align: center;
  margin-bottom: 60px;
}

.demo-request-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.demo-request-header p {
  font-size: 16px;
  color: #475569;
}

/* Grid */

.demo-request-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Card */

.demo-request-card {
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
  /*box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);*/
  margin: auto;
}

.demo-request-image {
  width: 84%;
  height: 384px;
  display: block;
  object-fit: cover;
  object-position: left;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-left: 10px;
}

.demo-request-card-content {
  padding: 28px 28px 32px 28px;
  background: #0b1220;
  border-radius: 12px;
}

.demo-request-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #ffffff;
}

.demo-request-card-content p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.demo-request-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.demo-request-card-content li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: #e2e8f0;
  line-height: 1.5;
}

.demo-request-card-content li:last-child {
  margin-bottom: 0;
}

.demo-request-card-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 16px;
}

/* Form */

.demo-request-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.form-group input,
.form-group textarea {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color 0.2s;
  background: #ffffff;
  color: #0f172a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* Checkboxes */

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}

.form-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.form-checkboxes input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Button */

.demo-request-btn {
  margin-top: 6px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.demo-request-btn:hover {
  background: #1d4ed8;
}

.demo-request-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.demo-request-privacy {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 0;
  line-height: 1.5;
}

/* Form Messages */
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-message:not(:empty) {
  display: block;
}

.form-message--success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message--error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Honeypot field - hidden from humans */
.form-group--honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Cloudflare Turnstile widget */
.cf-turnstile {
  margin-bottom: 16px;
}

/* Responsive */

@media (max-width: 1024px) {
  .demo-request-grid {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .demo-request-section {
    padding: 60px 24px;
  }

  .demo-request-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-request-header {
    margin-bottom: 40px;
  }

  .demo-request-header h2 {
    font-size: 32px;
  }

  .demo-request-card-content {
    padding: 24px 20px 28px 20px;
  }

  .demo-request-image {
    height: 240px;
  }
}

/* Last section */
.preit-section {
  background: radial-gradient(circle at top, #0b1220, #020617);
  color: #e5e7eb;
  font-family: "Poppins", sans-serif;
}

/* FAQ */

.preit-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  text-align: center;
}

.preit-faq h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.preit-subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 36px;
}

.preit-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preit-item {
  background: linear-gradient(180deg, #111827, #0b1220);
  border-radius: 12px;
}

.preit-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.preit-question span {
  color: #94a3b8;
  transition: transform .3s ease;
}

.preit-item.active .preit-question span {
  transform: rotate(180deg);
}

.preit-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.preit-item.active .preit-answer {
  max-height: 200px;
  padding: 0 20px 16px;
}

/* Footer Links */

.preit-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 70px 60px;
}

.preit-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 50px;
  color: rgba(207, 223, 254, 1);
}

.preit-footer-grid a {
  text-decoration: none;
  color: rgba(207, 223, 254, 1);
}

.preit-brand img {
  width: 69px;
  height: 24px;
}

.preit-brand h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.preit-brand p,
.preit-brand address {
  font-size: 13px;
  color: rgba(207, 223, 254, 1);
  line-height: 1.6;
  font-style: normal;
}

.preit-footer h5 {
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 1);
}

.preit-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.preit-footer li {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* Bottom Bar */

.preit-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748b;
}

.preit-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 900px) {
  .preit-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .preit-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .preit-footer-grid {
    grid-template-columns: 1fr;
  }

  .preit-brand {
    grid-column: span 1;
  }

  .preit-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
