/* ===== RASY AI Landing - Full Responsive CSS ===== */
:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --card: #141414;
  --card-2: #1a1a1a;
  --text: #fafafa;
  --muted: #a3a3a3;
  --border: #262626;
  --orange: #ff6a1a;
  --red: #e8261c;
  --yellow: #ffb020;
  --grad: linear-gradient(135deg, #ff7a29 0%, #e8261c 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 122, 41, 0.18), rgba(232, 38, 28, 0.18));
  --shadow-cta: 0 12px 30px -8px rgba(255, 106, 26, 0.55);
  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px; /* Space for sticky mobile CTA */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.muted { color: var(--muted); }
.small { font-size: .875rem; }
.micro { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 10px; }
.kicker { display: inline-block; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 10px; }
.text-gradient { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Topbar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: .95rem;
  transition: transform .2s ease, opacity .2s ease;
  font-family: inherit;
}

.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-xl { padding: 16px 28px; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-hero { background: var(--grad); color: #fff; box-shadow: var(--shadow-cta); }
.btn-hero:hover { transform: translateY(-1px); opacity: .95; }
.btn-outline { background: transparent; color: var(--text); border: 2px solid rgba(255, 122, 41, 0.55); }
.btn-outline:hover { background: rgba(255, 122, 41, 0.08); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 60px 0 80px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(255, 122, 41, 0.25), transparent 55%),
              radial-gradient(ellipse at 90% 30%, rgba(232, 38, 28, 0.22), transparent 55%),
              linear-gradient(180deg, #0a0a0a, #0a0a0a);
  z-index: -1;
}


.hero-grid { 
  display: grid; 
  grid-template-columns: 1.6fr 1fr; /* Increased from 1.1fr */
  gap: 48px; 
  align-items: center; 
}
.badge { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(255, 122, 41, 0.12); color: #ffb288; font-size: .8rem; font-weight: 600; border: 1px solid rgba(255, 122, 41, 0.25); margin-bottom: 18px; }
.hero-copy h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }

.lead { 
  color: var(--muted); 
  font-size: 1.1rem; 
  margin-top: 18px; 
  max-width: 800px; /* Increased from 560px to allow it to fill the new space */
}
.checklist { list-style: none; margin: 22px 0 26px; }
.checklist li { padding: 6px 0; font-size: 1rem; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .88rem; }

/* ===== Lead Form ===== */
.lead-form {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 80px;
}

.form-head { text-align: center; margin-bottom: 18px; }
.form-head h3 { font-size: 1.6rem; font-weight: 800; margin: 4px 0 6px; }
.lead-form label { display: block; margin-bottom: 14px; font-size: .88rem; color: #d4d4d4; font-weight: 500; }
.lead-form input {
  width: 100%;
  height: 46px;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--text);
  margin-top: 6px;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.lead-form input:focus { border-color: var(--orange); }
.err { display: block; color: #ff6b6b; font-size: .75rem; margin-top: 4px; min-height: 14px; }

/* ===== Sections ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -.01em; }

/* ===== Cards / grids ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.card h3 { font-size: 1.3rem; margin-bottom: 14px; font-weight: 700; }
.card-glow { background: linear-gradient(180deg, #1a1410, #141414); border: 1px solid rgba(255, 122, 41, 0.4); box-shadow: 0 0 50px -20px rgba(255, 122, 41, 0.45); }
.dash-list, .check-list { list-style: none; }
.dash-list li { padding: 8px 0; color: var(--muted); position: relative; padding-left: 20px; }
.dash-list li::before { content: "–"; position: absolute; left: 0; color: #777; }
.check-list li { padding: 8px 0; position: relative; padding-left: 26px; }
.check-list li::before { content: "✅"; position: absolute; left: 0; }

.grid-3, .grid-4, .grid-5 { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.feature, .audience {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}

.feature:hover, .audience:hover { transform: translateY(-4px); border-color: rgba(255, 122, 41, 0.4); }
.feature .ico { font-size: 2rem; margin-bottom: 10px; }
.feature h4, .audience h4 { font-size: 1.05rem; margin: 8px 0; font-weight: 700; }
.feature p, .audience p { color: var(--muted); font-size: .9rem; }
.audience h4 { font-size: 1.2rem; }

.pill { background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 14px 18px; text-align: center; font-weight: 500; font-size: .92rem; }

.testimonial { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.testimonial p { font-style: italic; color: #e5e5e5; }
.who { display: flex; flex-direction: column; }
.who strong { color: var(--text); }
.who span { color: var(--muted); font-size: .82rem; }

/* ===== Urgency / Countdown ===== */
.urgency { text-align: center; }
.urgency h2 { margin-bottom: 24px; }
.countdown { display: flex; gap: 14px; justify-content: center; margin-bottom: 40px; }
.countdown small { display: block; margin-top: 8px; color: var(--muted); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.cd-box {
  background: var(--grad);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 78px;
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.bonus { max-width: 680px; margin: 30px auto 0; text-align: left; }
.bonus h3 { text-align: center; font-size: 1.4rem; margin-bottom: 18px; }
.bonus .btn { display: flex; margin-top: 20px; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; cursor: pointer; }
.faq summary { font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--orange); transition: transform .2s; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 10px; color: var(--muted); }

/* ===== Final CTA ===== */
.final-cta { text-align: center; background: var(--grad-soft); border-top: 1px solid var(--border); }
.final-cta h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; font-weight: 800; }
.final-cta .btn { margin-top: 20px; }

/* ===== Footer ===== */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.footer h5 { margin-bottom: 10px; font-size: .95rem; }
.footer a { color: var(--orange); }
.copyright { border-top: 1px solid var(--border); padding-top: 18px; color: var(--muted); font-size: .82rem; text-align: center; }

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--card);
  border: 1px solid rgba(255, 122, 41, 0.5);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--text);
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 60;
  max-width: 90%;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE REFINEMENTS ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .checklist { text-align: left; }
  .hero-ctas { justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .sticky-cta { display: block; }
  .two-col { grid-template-columns: 1fr; }
  
  /* Force single column layout for content cards */
  .grid-4, .grid-5, .footer-grid { grid-template-columns: 1fr; }
  
  .hero { padding: 40px 0 60px; }
  .section { padding: 54px 0; }
  
  /* Stack buttons for better thumb interaction */
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-xl { width: 100%; }
  
  .cd-box { font-size: 1.5rem; min-width: 64px; padding: 12px; }
  .lead-form { padding: 20px; }
  .form-head h3 { font-size: 1.4rem; }
  
  .bonus { text-align: center; }
  .check-list li { text-align: left; }
}