/* ═══════════════════════════════════════════════════════════
   DomusFlow — Landing Page CSS
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary:      #27ae60;
  --primary-dark: #219150;
  --primary-light:#e8f8ef;
  --accent-blue:  #2980b9;
  --accent-orange:#e67e22;
  --accent-purple:#8e44ad;
  --text-dark:    #1a2332;
  --text-muted:   #6b7c93;
  --bg-light:     #f7faf8;
  font-family: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #fff; color: var(--text-dark); overflow-x: hidden; }

.fw-600 { font-weight: 600; }

/* ── NAVBAR ─────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: .85rem 0;
  background: rgba(10, 30, 20, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.lp-brand i { font-size: 1.35rem; color: #4ade80; }

/* ── HERO ────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0b1c12 0%, #0d2b1a 40%, #0b2232 100%);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

/* Animated blobs */
.lp-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 12s ease-in-out infinite alternate;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #27ae60 0%, transparent 70%);
  top: -120px; left: -80px;
  animation-delay: 0s;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #2980b9 0%, transparent 70%);
  bottom: -60px; right: -60px;
  animation-delay: -4s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #8e44adaa 0%, transparent 70%);
  top: 40%; left: 55%;
  animation-delay: -8s;
}

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -25px) scale(1.06); }
}

/* Badge pill */
.lp-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(39,174,96,.18);
  border: 1px solid rgba(74,222,128,.3);
  color: #4ade80;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .35rem .9rem;
  border-radius: 100px;
  text-transform: uppercase;
}

/* Hero title */
.lp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(90deg, #4ade80 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

/* Google CTA button */
.btn-google-hero {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  color: #1a2332;
  font-weight: 600;
  font-size: .97rem;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-google-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  color: #1a2332;
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  padding: .8rem 1.5rem;
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ── MOCKUP ──────────────────────────────────────────── */
.lp-mockup {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(255,255,255,.07) inset,
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.1);
  animation: rise .9s cubic-bezier(.23,1,.32,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mockup-bar {
  background: #1e2a20;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.mockup-body {
  background: #f4f6f9;
}

.mockup-dashboard {
  display: flex;
}

.mockup-sidebar {
  width: 52px;
  background: #fff;
  border-right: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem .4rem;
  gap: .4rem;
}
.mock-brand {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.mock-navitem {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #8a9ab0;
  cursor: pointer;
}
.mock-navitem.active {
  background: rgba(39,174,96,.12);
  color: var(--primary);
}

.mockup-content {
  flex: 1;
  padding: 1rem 1.2rem;
}
.mock-header {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: .85rem;
}

.mock-cards {
  display: flex;
  gap: .6rem;
  margin-bottom: .9rem;
  flex-wrap: wrap;
}
.mock-card {
  flex: 1;
  min-width: 100px;
  background: #fff;
  border-radius: 10px;
  padding: .65rem .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.mock-card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.mock-card.green .mock-card-icon { background: rgba(39,174,96,.15); color: var(--primary); }
.mock-card.blue  .mock-card-icon { background: rgba(41,128,185,.15); color: var(--accent-blue); }
.mock-card.orange .mock-card-icon { background: rgba(230,126,34,.15); color: var(--accent-orange); }
.mock-card-num   { font-weight: 700; font-size: .95rem; line-height: 1; }
.mock-card-label { font-size: .65rem; color: #8a9ab0; margin-top: .1rem; }

.mock-task-list {
  background: #fff;
  border-radius: 10px;
  padding: .5rem .7rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.mock-task {
  font-size: .78rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  padding: .25rem 0;
}
.mock-task.done { color: #8a9ab0; text-decoration: line-through; }

/* ── SECTIONS ────────────────────────────────────────── */
.lp-section { padding: 6rem 0; background: #fff; }
.lp-section-alt { padding: 6rem 0; background: var(--bg-light); }

.lp-section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.lp-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.lp-section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FEATURE CARDS ────────────────────────────────────── */
.feat-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 18px;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

.feat-green::before  { background: linear-gradient(90deg, #27ae60, #4ade80); }
.feat-blue::before   { background: linear-gradient(90deg, #2980b9, #22d3ee); }
.feat-orange::before { background: linear-gradient(90deg, #e67e22, #f59e0b); }
.feat-purple::before { background: linear-gradient(90deg, #8e44ad, #a78bfa); }

.feat-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.feat-green  .feat-icon { background: rgba(39,174,96,.12);  color: var(--primary); }
.feat-blue   .feat-icon { background: rgba(41,128,185,.12); color: var(--accent-blue); }
.feat-orange .feat-icon { background: rgba(230,126,34,.12); color: var(--accent-orange); }
.feat-purple .feat-icon { background: rgba(142,68,173,.12); color: var(--accent-purple); }

.feat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .6rem;
}
.feat-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.feat-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.feat-list li {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.feat-list .bi-check2 { color: var(--primary); font-size: .95rem; flex-shrink: 0; }

/* ── STEPS ────────────────────────────────────────────── */
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .25s;
}
.step-card:hover { transform: translateY(-4px); }

.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(39,174,96,.35);
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.step-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA SECTION ──────────────────────────────────────── */
.lp-cta { padding: 6rem 0; background: #fff; }

.lp-cta-inner {
  position: relative;
  background: linear-gradient(135deg, #0b1c12 0%, #0d2b1a 50%, #0b2232 100%);
  border-radius: 24px;
  padding: 5rem 2rem;
  overflow: hidden;
  isolation: isolate;
}

.blob-cta1 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #27ae60 0%, transparent 70%);
  top: -100px; left: -80px;
  opacity: .3;
  filter: blur(70px);
  border-radius: 50%;
}
.blob-cta2 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, #2980b9 0%, transparent 70%);
  bottom: -60px; right: -40px;
  opacity: .3;
  filter: blur(60px);
  border-radius: 50%;
}

.lp-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  position: relative;
}
.lp-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
  position: relative;
}

.btn-google-cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  color: #1a2332;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.btn-google-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  color: #1a2332;
}

/* ── FOOTER ───────────────────────────────────────────── */
.lp-footer {
  background: #f7faf8;
  border-top: 1px solid #e9ecef;
  padding: 1.75rem 0;
}
.lp-footer .lp-brand { color: var(--text-dark); }
.lp-footer .lp-brand i { color: var(--primary); }
