:root {
  --bg-1: #0d1b2a;
  --bg-2: #132b44;
  --bg-3: #1d3d5a;
  --text-primary: #e6eef7;
  --text-secondary: #a9c1d9;
  --accent: #64d9c3;
  --accent-strong: #2bd1b3;
  --brand: #7aa5ff;
  --shadow: rgba(3, 12, 27, 0.5);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  /* font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; */
    font-family:'Inter', Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text-primary);
  /* Circular (radial) brand gradient + subtle dot grid overlay */
  background-color: #000; /* base black after the blue fades */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, rgba(0,0,0,0) 1.2px),
    radial-gradient(circle at 78% 32%, rgba(89, 125, 211, 0.70) 0%, rgba(89,125,211,0.22) 38%, rgba(5, 25, 71, 0.85) 60%, rgba(5,25,71,0) 72%);
  background-size: 18px 18px, auto;
  background-repeat: repeat, no-repeat;
  background-attachment: fixed, fixed;

  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main {
  flex: 1;  /* pushes footer down */
}

/* Global responsive media */
img, svg, video { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 11px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* translucent backdrop so content scrolling beneath stays readable */
  background: linear-gradient(180deg, rgba(12, 22, 34, 0.78), rgba(12, 22, 34, 0.42));
  backdrop-filter: saturate(130%) blur(8px);
  border-bottom: 1px solid #ffffff; /* brighter white divider per request */
}
.site-header .container { max-width: 1280px; width: 100%; padding-left: 80px; padding-right: 80px; margin: 0 auto; }

.nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 72px; }
/* Right-side container for CTA and mobile menu button */
.nav-cta { display: flex; gap: 10px; justify-content: end; align-items: center; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.16);
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Poppins, Inter, sans-serif;
}

.logo-mark {
  color: var(--accent);
  filter: drop-shadow(0 4px 10px rgba(100, 217, 195, 0.45));
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text-primary);
}

/* Ensure clickable brand keeps original styling */
a.logo { color: var(--text-primary); text-decoration: none; }
a.logo:visited { color: var(--text-primary); }
a.logo:hover { color: var(--text-primary); text-decoration: none; }
a.logo:focus { outline: none; }

.logo-img { height: 34px; width: auto; display: block; }

.primary-nav { display: flex; gap: 28px; align-items: center; justify-content: center; }

.primary-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 60px; /* match nav height for perfect vertical centering */
  padding: 0 6px;
}

/* Active/hover underline for current page link */
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px; /* keep underline slightly above header bottom */
  width: 100%;
  height: 3px;
  background: var(--brand);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease, opacity .2s ease;
  opacity: 0;
}
.primary-nav a.active,
.primary-nav a[aria-current="page"] { color: #ffffff; }
.primary-nav a.active::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); opacity: 1; }
.primary-nav a:hover::after { transform: scaleX(1); opacity: .75; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-sm { padding: 12px 18px; font-size: 14px; }

.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #06261f;
  box-shadow: 0 8px 24px -8px rgba(43, 209, 179, .6), 0 0 0 1px rgba(43, 209, 179, .2) inset;
}

.btn-primary:hover { transform: translateY(-1px); }

/* Header-specific blue CTA to match screenshot */
.btn-blue {
  background: #104DAC;
  color: #ffffff;
  box-shadow: 0 10px 22px -10px rgba(16, 77, 172, .65), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.btn-blue:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* Hero */
.hero {
  position: relative;
  padding: 30px 30px 30px 30px;
  /* offset content so it doesn't hide under fixed header */
  margin-top: 76px;
  overflow: hidden; /* prevent horizontal scroll from decorative art */
}

/* Hero CTA matches updated style */
.hero .btn-primary {
  padding: 16px 24px;
  border-radius: 12px;
  background: #0f2236;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 44px -18px rgba(9, 17, 28, 0.7);
  min-width: 260px;
}
.hero .btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }

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

.hero-text h1 {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 8px 0;
}

.tagline {
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0 0 22px 0;
}

.copy p {
  margin: 0 0 14px 0;
  line-height: 1.7;
  color: #c7d8ea;
}

.benefits ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px 0;
}

.benefits li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: #d9e7f7;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 10px;
  background: #d9e7f7;
  /*box-shadow: 0 0 0 3px rgba(55, 219, 169, .18); */
}

.cta { margin-top: 8px; }

/* Mock UI card */
.hero-art {
  position: relative;
  display: grid;
  justify-items: end;
  min-height: 420px;
}

.hero-art img.hero-fg {
  width: min(1000px, 120%);
  height: auto;
  opacity: 1.2;
  filter: drop-shadow(0 40px 120px rgba(3,12,27,.45));
  transform: translate(160px, 48px) rotateZ(-12deg);
  pointer-events: none;
}

.hero-art img.hero-bg {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: min(1100px, 130%);
  height: auto;
  opacity: .3;
  transform: translate(90px, 40px) rotateZ(-10deg);
  filter: blur(1px);
  pointer-events: none;
}

.mockup {
  width: min(640px, 90%);
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #ffffff, #eaf2ff);
  border-radius: 14px;
  border: 1px solid rgba(20, 40, 70, 0.12);
  box-shadow: 0 40px 120px -30px var(--shadow), 0 10px 30px -8px rgba(15, 27, 47, .45);
  transform: perspective(1200px) rotateX(10deg) rotateZ(-14deg) translateY(8px);
  transform-origin: 60% 40%;
  overflow: hidden;
}

.mockup-header {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(180deg, #f8fbff, #e8f0ff);
  border-bottom: none;
}

.mockup-header span {
  width: 10px; height: 10px; border-radius: 50%; background: #c6d5f7;
}

.mockup-toolbar { height: 40px; background: #f5f8ff; border-bottom: none; }

.mockup-table { padding: 12px; display: grid; gap: 10px; }

.mockup-table .row {
  height: 36px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #c5d8ff 18%, transparent 18% 20%, #c5d8ff 20% 32%, transparent 32% 34%, #c5d8ff 34% 52%, transparent 52% 54%, #c5d8ff 54% 70%, transparent 70% 72%, #c5d8ff 72% 86%, transparent 86%);
  opacity: .85;
}

/* Footer */
.site-footer { padding: 40px 0; color: var(--text-secondary); font-size: 14px; }

/* Responsive */
@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .screen-size {
    /* width:80%;  */
    max-width: 1200px;
    margin: 0 auto}
    .hideIndesktop {
  display: none!important;
}
}

@media (max-width: 899px) {
  /* Header/mobile nav */
  .menu-toggle { display: inline-flex; justify-self: end; }
  .primary-nav { display: none; }
  .site-header.is-open .primary-nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 16px 14px;
    background: linear-gradient(180deg, rgba(12,22,34,.98), rgba(12,22,34,.88));
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .primary-nav a { line-height: 32px; padding: 6px 2px; }
  .btn-blue { display: none; }

  /* Global spacing adjustments */
  .screen-size { padding: 0 16px; }
  .footer-size { padding: 36px 16px; }

  /* Hero adjustments */
  .hero { padding: 28px 0 56px; margin-top: 72px; }
  .hero .btn-primary, .cta-area .btn-primary { min-width: 100%; }
  .clarity-grid .compare { min-width: 0; padding: 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { justify-items: center; order: -1; padding-bottom: 16px; }
  .mockup { transform: perspective(1200px) rotateX(8deg) rotateZ(-10deg); }
  .hero-art img.hero-fg { width: 100%; transform: translate(0, 0) rotateZ(-6deg); opacity: 1; }
  .hero-art img.hero-bg { position: absolute; right: 0; bottom: 0; width: 120%; transform: rotateZ(-6deg); opacity: .25; }
}

/* Features section */
.feature-area { padding: 30px 30px 30px 30px }

.features-head { text-align: center; margin-bottom: 28px; }
.features-head h2 {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 8px 0;
}
.features-head .subtitle { color: var(--text-secondary); margin: 0; font-weight: 600; }
.features-head .lede { color: #c7d8ea; margin: 10px auto 0; max-width: 840px; }
.features-head .small { color: #b8cbe0; font-size: 14px; }

.capabilities-card {
  background:
    radial-gradient(320px 220px at 20% -20%, rgba(122,165,255,.10), rgba(122,165,255,0) 60%),
    rgba(6, 22, 36, 0.45);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 20px 60px -24px rgba(3,12,27,.5);
  padding: 16px;
}

.capabilities-grid { display: grid;  gap: 18px; align-items: stretch; }

.accordion details {padding: 15px 20px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; margin: 12px 0; overflow: hidden; }
.accordion details + details { margin-top: 12px; }
.accordion summary {  
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 18px; cursor: pointer; color: #e9f1fc; font-weight: 700; font-size: 16px; 
}
.accordion summary .cap-icon { width: 24px; height: 24px; flex: 0 0 auto;  }
.accordion summary::-webkit-details-marker { display: none; }
.accordion .panel { padding: 0 18px 18px; color: #c7d8ea; line-height: 1.7; display: none; width:50% }
.accordion .chevron { transition: transform .2s ease; color: #9cb4d1; }
.accordion details[open] .chevron { transform: rotate(180deg); }
.accordion details[open] .panel { display: inline-block; }

/* .capabilities-media { display: flex; align-items: flex-end; align-self: stretch; } */
.capabilities-media {max-width: 100%;}
.capabilities-media img {
  width: 100%;
  height: 97%;
  border-radius: 16px;
  box-shadow: 0 22px 60px -26px rgba(3, 12, 27, 0.6);
  display: block;
  margin-top: auto;
}


.colRt { float: right; width: 50%; }


@media (max-width: 899px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* Clarity section */
.clarity-area { padding: 30px 30px 30px 30px; }
.clarity-head { text-align: center; max-width: 980px; margin: 0 auto 28px; }
.clarity-head h2 { font-family: Poppins, Inter, sans-serif; font-weight: 800; margin: 0 0 10px; }
.clarity-head p { color: #c7d8ea; line-height: 1.8; margin: 8px 0; }

.clarity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.arrow { color: #9cb4d1; font-size: 28px; padding: 0 8px; }

.card {
  background: rgba(6, 22, 36, 0.35);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 18px 20px;
}

.card-title { display: flex; align-items: center; gap: 12px; color: #e6eef7; font-weight: 700; }
.card-title span { font-size: 20px; }
.card-title svg, .card-title img { flex: 0 0 auto; width: 28px; height: 28px; }
.list { margin: 12px 0 0 0; padding-left: 18px; color: #c7d8ea; font-size: 15px; line-height: 1.65; }
.list li { margin: 6px 0; }

/* Match requested box dimensions and styling for Before/With Sophia cards */
.clarity-grid .compare {
  width: 100%;
  max-width: 672px;
  /*min-width: 376px;*/
  min-height: 252px;
  padding: 33px;
  border-radius: 24px;
  border: 1px solid #ffffff;
  background:
    radial-gradient(280px 200px at 16% 0%, rgba(255,255,255,.12), rgba(255,255,255,0) 70%),
    rgba(6, 22, 36, 0.55);
  box-shadow: 0 20px 60px -24px rgba(3,12,27,.6);
}
.clarity-grid .compare .list { margin-top: 16px; }

@media (max-width: 899px) {
  .clarity-grid { grid-template-columns: 1fr; gap: 16px; }
  /* .arrow { display: none; } */
  .clarity-grid .compare { width: 100%; height: auto; }
}

/* Experts section */
.experts-area { padding: 30px 30px 30px 30px; }
.experts-head { text-align: center; max-width: 980px; margin: 0 auto 28px; }
.experts-head h2 { font-family: Poppins, Inter, sans-serif; font-weight: 800; margin: 0 0 10px; }
.experts-head p { color: #c7d8ea; line-height: 1.8; margin: 8px 0; }

.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 12px; align-items: stretch; }
.highlight-card {
  background:
    linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.5)),
    rgba(6, 22, 36, 0.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 33px;
  text-align: left;
  box-shadow: 0 22px 60px -28px rgba(3,12,27,.6);
  min-height: 248px;
  display: flex; flex-direction: column; gap: 16px;
}
.icon-title { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; margin: 0; text-align: center; }
.icon-title h3 { margin: 0; font-size: 20px; font-weight: 700; }
.icon-title svg { width: 36px; height: 36px; }
.highlight-card p { color: #cfe0f3; margin: 0; font-size: 16px; line-height: 1.7; }

.experts-banner {
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(122,165,255,.18), rgba(122,165,255,.08));
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.experts-banner p { font-size: 18px; color: #d9e7f7; }
.experts-banner .muted { opacity: .95; }

@media (max-width: 899px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { padding: 22px 20px; border-radius: 16px; }
  .icon-title h3 { font-size: 20px; }
  .highlight-card p, .experts-banner p { font-size: 16px; }
}

/* CTA and footer links */
.cta-area { padding: 0px 30px 30px 30px; text-align: center; }
.cta-area h2 { font-family: Poppins, Inter, sans-serif; font-weight: 800; margin: 0 0 10px; }
.cta-area .lede { color: #c7d8ea; line-height: 1.8; margin: 8px auto; max-width: 880px; }
.cta-area .small { color: #b8cbe0; font-size: 14px; }
.cta-buttons { margin-top: 14px; }

/* CTA button above footer - filled gradient with glow */
.cta-area .btn-primary {
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  background: #0f2236;
  color: #ffffff;
  box-shadow: 0 20px 44px -18px rgba(9, 17, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, .12);
  outline: none;
  min-width: 320px;
}
.cta-area .btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }

.footer-links {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 36px 0 44px;
  background: #0f2236; /* unify footer shading */
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 38px; align-items: start; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo-text { text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.footer-col h4 { margin: 0 0 12px; color: #e6eef7; font-weight: 700; }
.footer-col ul, .footer-brand ul { list-style: none; margin: 0; padding: 0; }
.footer-col li, .footer-brand li { margin: 10px 0; }
.footer-col a, .footer-brand a { color: #c7d8ea; text-decoration: none; transition: color .2s ease; }
.footer-col a:hover, .footer-brand a:hover { color: #ffffff; }

@media (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Footer copyright section */
.site-footer { padding: 24px 0 36px; color: var(--text-secondary); font-size: 13px; background: #0f2236; }
.site-footer .container { border-top: 1px solid rgba(255,255,255,.08); padding-top: 14px; text-align: center; }


/* ===== Features page ===== */
.features-page .features-hero .container { padding-top: 0; }
.features-hero .features-hero-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.features-hero .avatar { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 30px -12px rgba(3,12,27,.6); }
.features-hero h1 { font-family: Poppins, Inter, sans-serif; font-weight: 800; margin: 0 0 8px; font-size:42px}
.features-hero .lede { color: #c7d8ea; max-width: 800px; }

.features-cards { padding: 0px 30px 30px 30px }
.features-cards .section-title { text-align: center; margin: 0 0 18px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 30px;}
.card-tile {
  background:
    radial-gradient(280px 200px at 16% 0%, rgba(255,255,255,.12), rgba(255,255,255,0) 70%),
    rgba(6, 22, 36, 0.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 26px 24px;
  text-align: center;
}
.card-tile .icon {
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}
.card-tile .icon img { width: 48px; height: 48px; display: block; }
.card-tile h3 { margin: 8px 0 6px; }
.card-tile p { color: #c7d8ea; line-height: 1.7; margin: 8px auto 0; }

/* Use Cases */
.use-cases { padding: 0px 30px 30px 30px; text-align: center; }
.use-grid { display: grid; grid-template-columns: repeat(3, minmax(260px, 1fr)); gap: 24px; justify-content: center;  padding-top: 30px;}
/* Match core feature card styling */
.use-card {
  background:
    radial-gradient(280px 200px at 16% 0%, rgba(255,255,255,.12), rgba(255,255,255,0) 70%),
    rgba(6, 22, 36, 0.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px -24px rgba(3,12,27,.6);
  display: flex; flex-direction: column;height: 100%; 
}
.use-card .thumb { aspect-ratio: 16/14; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.08); }
.use-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(92%); }
.use-card .use-body { padding: 20px 22px 24px; text-align: center; 
 flex: 1; /* take remaining space equally */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* keep content aligned */
}
.use-card h3 { margin: 6px 0 8px; font-size: 18px; }
.use-card p { color: #c7d8ea; font-size: 14px; line-height: 1.65; }

.use-dots { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.use-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.3); }
.use-dots .dot.active { background: rgba(255,255,255,.85); }

@media (max-width: 899px) {
  .use-grid { grid-template-columns: 1fr; }
}
@media (max-width: 899px) {
  .features-hero .features-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .features-hero .avatar { margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ===== Pricing page ===== */
.pricing-page .center { text-align: center; }
.pricing-hero h1 { font-family: Poppins, Inter, sans-serif; font-weight: 800; margin-bottom: 6px; font-size:42px }
.pricing-hero .lede { color: #c7d8ea; margin-bottom: 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 20px; }
.price-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px; text-align: center; box-shadow: 0 16px 48px -24px rgba(3,12,27,.6); }
.price-card.featured { border-color: rgba(100,217,195,.35); box-shadow: 0 24px 62px -22px rgba(43,209,179,.5); }
.price-card h3 { margin: 0 0 8px; }
.price-card .price { font-size: 20px; margin: 10px 0; }
.price-card .price strong { font-size: 34px; }
.price-card ul { list-style: none; margin: 0 0 12px 0; padding: 0; color: #c7d8ea; line-height: 1.7; }
.faq { padding: 0px 50px 30px 50px; }
.faq .faq-item { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; margin: 8px 0; padding: 12px 14px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: #c7d8ea; margin: 20px 0 0; font-size: 15px; padding-left: 16px;}
.pricing-page .section-title { margin: 30px 30px 10px 30px; }
@media (max-width: 899px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== About page ===== */
.about-hero { padding-bottom: 30x; overflow: hidden; }
.about-hero .hero-grid { position: relative; min-height: 520px; 
  grid-template-columns: 4fr 3fr; }
.about-hero .hero-text { max-width: 900px; }
.about-hero .hero-text h1 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.12; }
.about-hero .hero-art { position: relative; display: grid; justify-items: end; }
.about-hero .hero-art img.hero-fg {
  width: min(980px, 118%); height: auto; opacity: 1.2; margin-right: -90px;
  filter: drop-shadow(0 40px 120px rgba(3,12,27,.45));
  transform: translate(70px, 42px) rotateZ(-12deg); pointer-events: none;
}
.about-hero .hero-art img.hero-bg {
  position: absolute; right: -140px; bottom: -40px;
  width: min(1180px, 140%); height: auto; opacity: .3;
  transform: translate(40px, 30px) rotateZ(-10deg); filter: blur(1px); pointer-events: none;
}

@media (max-width: 899px) {
  .about-hero .hero-grid { min-height: unset; grid-template-columns: 1fr; }
  .about-hero .hero-art { justify-items: center; }
  .about-hero .hero-art img.hero-fg { width: 100%; transform: translate(0,0) rotateZ(-6deg); opacity: 1; }
  .about-hero .hero-art img.hero-bg { position: absolute; right: 0; bottom: 0; width: 120%; transform: rotateZ(-6deg); opacity: .25; }
}

.values-area { padding: 30px 30px 30px 30px; text-align: center; }
.values-title { font-family: Poppins, Inter, sans-serif; font-weight: 800; margin: 0 0 8px; }
.values-sub { color: #c7d8ea; max-width: 860px; margin: 8px auto 0; line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.value-card {
  background:
    radial-gradient(280px 200px at 16% 0%, rgba(255,255,255,.12), rgba(255,255,255,0) 70%),
    rgba(6, 22, 36, 0.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 20px 60px -24px rgba(3,12,27,.6);
  text-align: center;
}
.value-icon { font-size: 24px; margin-bottom: 8px; display: inline-grid; place-items: center; margin-left: auto; margin-right: auto; }
.value-icon img { width: 32px; height: 32px; display: block; }
.value-card h3 { margin: 6px 0 6px; font-size: 18px; }
.value-card p { color: #c7d8ea; font-size: 14px; line-height: 1.65; margin: 0; }

.family-area { padding: 30px 30px 30px 30px; text-align: center; }
.family-area h3 { margin: 0 0 8px; font-weight: 800; }
.family-area p { color: #c7d8ea; margin: 8px auto;  line-height: 1.8; }
.family-area .muted { opacity: .95; }

@media (max-width: 899px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-art {display: none !important}
  .sophia-text {  padding: 10px 30px!important;  width: auto!important;}
  .mobViewHide {display: none !important}
}
@media (max-width: 599px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== Contact page ===== */
.contact-hero { padding-bottom: 70px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.contact-hero .container { max-width: 1280px; }
.contact-intro h1 { font-family: Poppins, Inter, sans-serif; font-weight: 800; margin: 0 0 8px; }
.portrait { width: 240px; height: 160px; border-radius: 10px; overflow: hidden; margin: 18px 0 0; position: relative; box-shadow: 0 16px 48px -22px rgba(3,12,27,.6); }
.portrait img { width: 100%; height: 100%;  display: block; object-fit: cover;}
.portrait-badge { position: absolute; right: -8px; top: -10px; background: #ffd76a; color: #0f2236; border-radius: 12px; padding: 6px 10px; font-weight: 800; box-shadow: 0 10px 24px -12px rgba(3,12,27,.7); }

/* Contact page illustration tweaks */
.contact-illustration { width: 100%; max-width: 640px; height: auto; border-radius: 12px; }
.contact-illustration img { width: 100%; height: auto;     max-height: 515px; background: transparent; }

.contact-card { background: rgba(6,22,36,.35); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 24px; box-shadow: 0 20px 60px -24px rgba(3,12,27,.6); }
.contact-card h3 { margin: 0 0 10px; }
.contact-card .small { color: #c7d8ea; margin: 0 0 18px; font-size: 13px; line-height: 1.6; }

.contact-form { display: grid; grid-template-columns: 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-size: 13px; color: #dfeaf7; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.14); color: #e6eef7; padding: 14px 16px; border-radius: 10px; outline: none; }
.contact-form input { min-height: 48px; }
.contact-form textarea { min-height: 140px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #98b1cc; }
.contact-form .btn { grid-column: 1 / -1; margin-top: 14px; justify-self: center; min-width: 220px; cursor: pointer;}

/*.screen-size {
  padding: 0 90px;
}*/

.footer-size {
  padding: 50px 90px;
}

@media (max-width: 899px) {
  .contact-grid { grid-template-columns: 1fr; }
  .portrait { margin: 18px auto 0; }
  .footer-size {
    padding: 50px 20px;
  }
  #cap-1, #cap-2, #cap-3, #cap-4, #cap-5 {width: 100% !important}
  .colRt {width: 100% !important}
}


   .footer {
      background: linear-gradient(90deg, #22313f, #2b3a60); /* gradient */
      color: #ccc;
      padding: 20px;
      text-align: center;
      margin-top: auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .footer-logo {
      font-size: 18px;
      font-weight: bold;
      color: #fff;
    }

    .footer a {
      color: #b0a6f7;
      text-decoration: none;
      font-size: 14px;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .footer hr {
      border: 0;
      border-top: 1px solid #555;
      margin: 10px 0;
    }

    .footer-bottom {
      font-size: 12px;
      color: #aaa;
    }


    /* Sophia CSS */
.sophia-section {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 0px 80px 20px 80px;
  max-width: 1280px;
  margin: 100px auto 0px auto;
  position: relative;
}

.sophia-text {
  flex: 1;
  width: 42%;
}

.sophia-text h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sophia-text h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.sophia-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

 ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

 ul li {
      position: relative;
    padding-left: 22px;
    margin: 10px 0;
  font-size: 16px;
  line-height: 18px;
}

 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(55, 219, 169, .18);
}

.demo-btn {
  background: transparent;
  border: 2px solid white;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.demo-btn:hover {
  background: white;
  color: #0a3d62; /* your blue shade */
}

/* Right Image */
.sophia-image {
  /* flex: 1;
  display: flex; */
  justify-content: center;
  align-items: center;
    position: absolute;
    right: 0;
    top: 30%;
    padding-right: 65px;
}

.sophia-image img {
  width: 100%;
  max-width: 650px;
  transform: rotate(0deg);
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); */
}

/* Reflection Effect 
.sophia-image img {
  width: 500px;
  height: 350px; 
  background-image: url("assets/index/image9.svg");
  background-size: contain;
  background-position: 0px 100px;
  background-repeat: no-repeat;
}

.sophia-image.about img {
  background-image: url("assets/index/image11.png");
  background-position: 0px 0px;  
}*/


.accordion-section {
 display: flex;
  gap: 20px;
  align-items: flex-start;
}

.accordion {
  flex: 1;
}

.accordion-image {
  flex: 1;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-item h3 {
  margin: 0;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item p {
  display: none;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
}

.accordion-item.active {
  /* background: rgba(255, 255, 255, 0.1); */
}

.accordion-item.active p {
  display: block;
}

.accordion-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.accordion-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-item .arrow::before {
  content: "\02C5"; /* ▼ down */
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-item.active .arrow::before {
  content: "\203A"; /* right*/
}

.desktop-only {
  display: block;
}


.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-card {
  flex: 0 0 33.33%; /* 3 cards visible */
  box-sizing: border-box;
  padding: 15px;
}

.carousel-card img {
  width: 100%;
  border-radius: 10px;
}

.carousel-card h3 {
  font-weight: bold;
  margin-top: 10px;
}

.carousel-card p {
  font-size: 14px;
  color: #ddd;
}

/* Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Dots */
.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.carousel-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #999;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots .active {
  background: #fff;
}

.hideMobile{display: block;}
.hideWeb{display: none;}

@media (max-width: 500px) {
    .carousel-card {
       flex: 0 0 100%!important; /* full width in mobile */
    }

}

@media (max-width: 768px) {

.capabilities-card {  padding: 16px 0px;}
.accordion-item p img {border-radius: 10px;}

  .accordion-section {
    flex-direction: column; /* stack vertically */
  }

  .accordion-image {
    order: 2; /* image after text */
    width: 100%;
    text-align: center;
  }

   .desktop-only {
    display: none; /* hide global image */
  }

.accordion-item.active .arrow::before {
  content: "\02C4"; /* UP arrow*/
}

.carousel-card { 
  flex: 0 0 50.50%;
}



.features-cards {
    padding: 0px 0px 30px 0px;
}
.use-cases {
    padding: 0px 0px 30px 0px;  
}

.hideMobile{display: none;}
.hideWeb{display: block;}

.site-header .container {   
    padding-left: 24px;
    padding-right: 24px;    

  }
  .sophia-section {
     padding-left: 24px;
    padding-right: 24px;
  }

    .sophia-text { padding: 10px 0px !important;  }
    .container { padding-left: 0px; padding-right: 0px;}
    .values-area { padding-left: 0px; padding-right: 0px;}


}


@media (max-width: 4000px) and (min-width: 1500px) {
.sophia-section {
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 0px 80px 20px 80px;
  max-width: 1280px;
  margin: 100px auto 0px auto;
  position: relative;
}
}

