:root{
  --bg: #ffffff;
  --text: #15141a;
  --muted: #5a5667;
  --soft: #f3f0f7;
  --border: #e6e1ee;
  --accent: #7b4bff;   /* purple */
  --accent2: #b7a6ff;  /* lilac */
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* FORCE BIG LOGO */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 180px;
  width: auto;
}



.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}
/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(20,10,40,0.04); }
  50%      { box-shadow: 0 16px 44px rgba(123,75,255,0.14); }
}

/* Hero entrance */
.hero h1,
.hero .lead,
.hero .cta-row,
.hero .trust-row,
.hero .preview {
  opacity: 0;
  animation: fadeUp 700ms ease forwards;
}

.hero h1 { animation-delay: 80ms; }
.hero .lead { animation-delay: 160ms; }
.hero .cta-row { animation-delay: 240ms; }
.hero .trust-row { animation-delay: 320ms; }
.hero .preview { animation-delay: 220ms; }

/* Make preview card feel alive */
.preview {
  animation: fadeUp 700ms ease forwards, floaty 4.5s ease-in-out 900ms infinite;
}

/* Button micro-interactions */
.btn, .pill, .card {
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(20,10,40,0.08);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
/* Header */


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.links{
  display: flex;
  gap: 16px;
  align-items: center;
}
.links a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}
.links a:hover{ color: var(--text); }

/* Hero */
.hero{
  padding: 56px 0 28px;
}
.hero-grid{
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}
h1{
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 14px;
}
.lead {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.6;
  max-width: 650px;
}
.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill{
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Sections */
.section{
  padding: 56px 0;
}
.section.soft{
  background: var(--soft);
}
h2{
  margin: 0 0 10px;
  font-size: 30px;
}
.subhead{
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 70ch;
}

/* Cards + grids */
.grid-3{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(20,10,40,0.04);
}
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 6px 0; }

/* Buttons */
.btn{
  display: inline-block;
  border: 0;
  background: var(--accent);
  color: white;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover{ filter: brightness(0.98); }
.btn-outline{
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-small{
  padding: 10px 12px;
  border-radius: 12px;
}
.btn-full{
  width: 100%;
  text-align: center;
}

/* Preview card */
.preview{ padding: 0; overflow: hidden; }
.preview-top{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.chat{ padding: 14px; display: grid; gap: 10px; }
.bubble{
  padding: 10px 12px;
  border-radius: 14px;
  max-width: 92%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 600;
}
.bubble.bot{ border-color: rgba(123,75,255,0.25); }
.bubble.user{
  margin-left: auto;
  background: rgba(123,75,255,0.08);
  border-color: rgba(123,75,255,0.22);
}
.bubble.subtle{
  color: var(--muted);
  font-weight: 600;
}

.logo{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;              /* space between logo and tagline */
}
.logo{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;              /* space between logo and tagline */
}

.logo img{
  height: 120px;         /* adjust bigger/smaller */
  width: auto;
  display: block;
}

.tagline{
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a5667;        /* muted */
  line-height: 1.2;
}
.logo img{
  height: 120px;         /* adjust bigger/smaller */
  width: auto;
  display: block;
}

.tagline{
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a5667;        /* muted */
  line-height: 1.2;
}/* Stack logo + tagline vertically */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keeps it left aligned */
}

/* Logo size (adjust if needed) */
.logo img {
  height: 120px;
  width: auto;
}

/* Tagline styling */
.tagline {
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a5667;  /* muted tone */
  letter-spacing: 0.3px;
}* Steps */
.step{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(123,75,255,0.10);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 10px;
}

/* Pricing */
.pricing .price{
  font-size: 36px;
  margin: 8px 0 0;
  font-weight: 900;
}
.pricing .price span{
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}
.note{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
}
.featured{
  border: 2px solid rgba(123,75,255,0.35);
  position: relative;
}
.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(123,75,255,0.12);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.form label{
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
input, textarea{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  font: inherit;
}
input:focus, textarea:focus{
  outline: 2px solid rgba(123,75,255,0.25);
  border-color: rgba(123,75,255,0.35);
}
.tiny{ margin: 10px 0 0; color: var(--muted); font-size: 13px; }

.info .info-row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 700;
}
.info .label{ color: var(--text); }
.divider{
  border: 0;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}
.fineprint{
  margin-top: 18px;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}
.footer-links a{
  color: var(--muted);
  text-decoration: none;
  margin-left: 12px;
}
.footer-links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .links{ display: none; } /* simple mobile nav for now */
}
.brand-logo{
  height: 200px;
  width: auto;
  display: block;
}
/* ===== Contact / Lead Form ===== */
.contact{
  padding: 64px 0;
}

.contact .container{
  max-width: 980px;
}

.lead-form{
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.lead-form .grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label{
  display: grid;
  gap: 6px;
}

.lead-form label span{
  font-size: 14px;
  color: var(--muted);
}

.lead-form input,
.lead-form textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(123, 75, 255, 0.15);
}

.lead-form .full{
  grid-column: 1 / -1;
}

.lead-form button.btn{
  margin-top: 10px;
}

.form-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 800px){
  .lead-form .grid{
    grid-template-columns: 1fr;
  }
}