/* ===================================
   Mov.bg — Premium Domain For Sale
   Standalone CSS
   =================================== */

/* --- Custom Properties --- */
:root {
  --color-bg: #f8fafc;
  --color-bg-white: #ffffff;
  --color-bg-slate: #f1f5f9;
  --color-bg-gradient-from: #eef2ff;
  --color-bg-gradient-to: #eff6ff;
  --color-primary: #4f46e5;
  --color-primary-dark: #4338ca;
  --color-primary-light: #e0e7ff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-faint: #94a3b8;
  --color-border: #e2e8f0;
  --color-success: #22c55e;
  --color-error: #ef4444;
  --color-accent: #4f46e5;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,.06), 0 1px 2px -1px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px 0 rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px 0 rgba(79,70,229,.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: var(--radius-sm); font-weight: 600;
  transition: all .25s ease; text-decoration: none; cursor: pointer;
  font-family: var(--font); border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-primary); color: #fff;
  box-shadow: 0 4px 16px 0 rgba(79,70,229,.25);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 24px 0 rgba(79,70,229,.35);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--color-border); color: var(--color-text-muted);
  background: transparent;
}
.btn-outline:hover { background: var(--color-bg-white); border-color: var(--color-primary); color: var(--color-primary); }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 17px; }
.btn-full { width: 100%; }

/* --- Badge --- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-primary-light); color: var(--color-primary);
  font-size: 13px; font-weight: 600; padding: 6px 16px;
  border-radius: 999px; border: 1px solid #c7d2fe;
}

/* --- Navigation --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 22px; font-weight: 900; letter-spacing: -.5px; }
.accent { color: var(--color-primary); }

/* --- Hero --- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fff 0%, #eef2ff 50%, #dbeafe 100%);
  padding: 96px 24px;
  text-align: center;
}
.hero-bg-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(64px); opacity: .2;
}
.hero-bg-blob-1 { width: 400px; height: 400px; background: #a5b4fc; top: 5%; left: 3%; }
.hero-bg-blob-2 { width: 500px; height: 500px; background: #bfdbfe; bottom: 5%; right: 3%; }
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-title {
  font-size: clamp(72px, 14vw, 130px); font-weight: 900;
  line-height: 1; letter-spacing: -3px; color: #0f172a; margin: 16px 0 8px;
}
.hero-subtitle { font-size: clamp(22px, 4vw, 32px); font-weight: 700; color: #334155; margin-bottom: 16px; }
.hero-desc { font-size: 18px; color: var(--color-text-muted); max-width: 600px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.hero-stat { display: flex; flex-direction: column; align-items: center; }
.stat-value { font-size: 26px; font-weight: 900; color: var(--color-primary); }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--color-text-faint); margin-top: 2px; }
.scroll-arrow {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 24px; color: var(--color-text-faint); animation: bounce 2s infinite;
  transition: color .2s; text-decoration: none;
}
.scroll-arrow:hover { color: var(--color-primary); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* --- Sections --- */
.section { padding: 96px 0; }
.bg-white { background: var(--color-bg-white); }
.bg-slate { background: var(--color-bg-slate); }
.bg-gradient { background: linear-gradient(135deg, var(--color-bg-gradient-from), var(--color-bg-white), var(--color-bg-gradient-to)); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--color-primary); }
.section-title { font-size: clamp(32px, 5vw, 48px); font-weight: 900; color: #0f172a; margin: 8px 0 12px; letter-spacing: -.5px; }
.section-desc { font-size: 17px; color: var(--color-text-muted); max-width: 500px; margin: 0 auto; }

/* --- Grids --- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- Cards (Advantages) --- */
.card {
  border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--color-border);
  transition: all .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-blue { background: #eff6ff; border-color: #bfdbfe; }
.card-indigo { background: #eef2ff; border-color: #c7d2fe; }
.card-violet { background: #f5f3ff; border-color: #ddd6fe; }
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.card-icon-blue { background: #dbeafe; }
.card-icon-indigo { background: #e0e7ff; }
.card-icon-violet { background: #ede9fe; }
.card h3 { font-size: 19px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.card p { color: var(--color-text-muted); font-size: 15px; line-height: 1.65; }

/* --- Business Idea Cards --- */
.idea-card {
  background: var(--color-bg-white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm); transition: all .3s ease;
}
.idea-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.idea-icon { font-size: 32px; margin-bottom: 10px; }
.idea-num { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--color-primary); background: var(--color-primary-light); padding: 3px 10px; border-radius: 999px; display: inline-block; margin-bottom: 10px; }
.idea-card h4 { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 8px; line-height: 1.3; }
.idea-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }

/* --- Stat Cards --- */
.stat-card {
  border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--color-border); transition: all .3s ease;
}
.stat-card:hover { box-shadow: var(--shadow-sm); }
.stat-icon { font-size: 22px; margin-bottom: 10px; }
.stat-big { font-size: 32px; font-weight: 900; margin-bottom: 4px; }
.stat-name { font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 6px; line-height: 1.4; }
.stat-src { font-size: 11px; color: var(--color-text-faint); }
.stat-blue { background: #eff6ff; border-color: #bfdbfe; } .stat-blue .stat-big { color: #2563eb; }
.stat-green { background: #f0fdf4; border-color: #bbf7d0; } .stat-green .stat-big { color: #16a34a; }
.stat-violet { background: #f5f3ff; border-color: #ddd6fe; } .stat-violet .stat-big { color: #7c3aed; }
.stat-indigo { background: #eef2ff; border-color: #c7d2fe; } .stat-indigo .stat-big { color: #4338ca; }
.stat-orange { background: #fff7ed; border-color: #fed7aa; } .stat-orange .stat-big { color: #ea580c; }
.stat-amber { background: #fffbeb; border-color: #fde68a; } .stat-amber .stat-big { color: #d97706; }
.stat-sky { background: #f0f9ff; border-color: #bae6fd; } .stat-sky .stat-big { color: #0284c7; }
.stat-red { background: #fef2f2; border-color: #fecaca; } .stat-red .stat-big { color: #dc2626; }

/* --- Steps --- */
.steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.step {
  background: var(--color-bg-white); border-radius: var(--radius);
  border: 1px solid var(--color-border); padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: var(--shadow-sm); transition: all .3s ease;
}
.step:hover { box-shadow: var(--shadow-md); }
.step-icon { font-size: 36px; flex-shrink: 0; }
.step-body { flex: 1; }
.step-num { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-primary); margin-bottom: 4px; display: block; }
.step-body h4 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.step-badge {
  width: 36px; height: 36px; background: #f1f5f9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--color-text-muted);
  flex-shrink: 0;
}

/* --- Trust Badges --- */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.trust-badge {
  background: var(--color-bg-white); border: 1px solid #c7d2fe;
  border-radius: var(--radius-sm); padding: 14px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.trust-badge strong { display: block; font-size: 13px; font-weight: 700; color: var(--color-primary); }
.trust-badge span { display: block; font-size: 12px; color: var(--color-text-faint); margin-top: 2px; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 24px; font-weight: 700; font-size: 16px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--color-primary); font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 24px 18px; color: var(--color-text-muted); font-size: 15px; line-height: 1.65; }

/* --- Contact Form --- */
.form-card {
  background: var(--color-bg-white); border-radius: var(--radius-xl);
  border: 1px solid var(--color-border); padding: 48px;
  box-shadow: 0 8px 40px 0 rgba(79,70,229,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: #334155; }
.req { color: var(--color-error); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--color-text);
  background: var(--color-bg-white); transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.form-group input.error, .form-group textarea.error { border-color: var(--color-error); }
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error { font-size: 12px; color: var(--color-error); min-height: 16px; display: flex; align-items: center; gap: 4px; }
.field-hint { font-size: 12px; color: var(--color-text-faint); }
.input-prefix-wrap { position: relative; }
.input-prefix { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-weight: 600; color: var(--color-text-faint); }
.input-prefix-wrap input { padding-left: 28px; }
.msg-footer { display: flex; justify-content: space-between; align-items: flex-start; }
.char-count { font-size: 12px; color: var(--color-text-faint); flex-shrink: 0; margin-left: 8px; }
.char-count.ok { color: var(--color-success); }
.captcha-group { background: #f8fafc; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 20px; }
.captcha-group label { display: flex; align-items: center; gap: 10px; font-size: 16px; }
.refresh-btn { background: none; border: none; cursor: pointer; color: var(--color-text-faint); font-size: 18px; transition: color .2s; line-height: 1; }
.refresh-btn:hover { color: var(--color-primary); }
.checkbox-group .checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: #475569; }
.checkbox-label input[type="checkbox"] { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--color-primary); }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; }
.form-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.hidden { display: none !important; }
.form-success { text-align: center; padding: 48px 24px; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-size: 26px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.form-success p { color: var(--color-text-muted); margin-bottom: 24px; }

/* --- Footer --- */
.footer { background: #0f172a; color: #94a3b8; padding: 48px 0 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 32px; }
.footer-logo { font-size: 22px; font-weight: 900; color: #fff; }
.footer-logo small { display: block; font-size: 12px; font-weight: 400; color: #64748b; margin-top: 2px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; text-align: right; }
.footer-copy p { margin-bottom: 2px; }
.footer-legal {
  border-top: 1px solid #1e293b; margin-top: 0;
  padding: 20px 0; font-size: 12px; color: #475569; text-align: center;
  line-height: 1.7;
}

/* --- Scroll Animation --- */
.scroll-reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.scroll-reveal.revealed { opacity: 1; transform: none; }
.animate-in { opacity: 0; transform: translateY(24px); animation: fadeInUp .9s ease .15s forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: none; } }

/* --- Responsive --- */
@media (max-width: 900px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .step { flex-direction: column; align-items: flex-start; }
  .step-badge { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-badges { flex-direction: column; align-items: center; }
  .form-card { padding: 24px 16px; }
  .grid-4 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
