:root {
  --bg: #ffffff;
  --bg2: #f7f7f7;
  --accent: #EB2858;
  --accent-dark: #220155;
  --grad: linear-gradient(135deg, #220155 0%, #EB2858 100%);
  --text: #111111;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── Utilities ── */
.gradient-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: opacity .2s, transform .15s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--grad); color: #fff !important; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: #aaa; }
.btn-dark { background: var(--text); color: #fff !important; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 34px; border-radius: 8px; }
.nav-logo span { font-size: 19px; font-weight: 700; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: #fff !important; }

/* ── Hero ── */
.hero {
  padding: 148px 0 80px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px;
}
.hero-text {}
.hero-text .eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(235,40,88,0.1); color: var(--accent);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px;
}
.hero-text p {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.75; max-width: 440px;
}
.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-block; text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.store-btn:hover { opacity: .85; transform: translateY(-2px); }
.store-btn img { display: block; height: 52px; width: auto; }

.hero-image {
  display: flex; justify-content: center; align-items: center;
  background: var(--bg2); border-radius: 24px;
  min-height: 420px; border: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.hero-image-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); font-size: 13px; padding: 40px;
  text-align: center;
}

/* ── About ── */
.about-section { padding: 96px 0; }
.about-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 36px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.25; color: var(--text);
}
.about-body p {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px;
}
.about-body p:last-child { margin-bottom: 0; }

/* ── Features strip ── */
.features-strip {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.strip-heading { text-align: center; margin-bottom: 44px; }
.strip-heading p { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.strip-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 20px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center; transition: box-shadow .2s, transform .2s;
}
.strip-card:hover { box-shadow: 0 6px 24px rgba(235,40,88,0.09); transform: translateY(-3px); }
.strip-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,1,85,0.1), rgba(235,40,88,0.08));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.strip-card h3 { font-size: 0.95rem; font-weight: 700; }
.strip-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ── Section headers ── */
.section { padding: 96px 0; }
.section-tag {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 500px; line-height: 1.75; margin-bottom: 52px; }

/* ── How it works ── */
.how-works { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-works .section { padding: 96px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.step-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.step-number {
  font-size: 3.5rem; font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px; display: block;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 0.98rem; font-weight: 600; color: var(--text);
  text-align: left; gap: 16px; transition: background .15s;
}
.faq-question:hover { background: var(--bg2); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; font-style: normal; font-size: 18px; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Why Choose ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.why-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ── Testimonials ── */
.testimonials { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.testi-card blockquote { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; font-size: 16px; color: #fff; font-weight: 700; flex-shrink: 0;
}
.testi-author-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testi-author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Bottom CTA ── */
.bottom-cta {
  background: var(--accent-dark); padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(235,40,88,0.15); pointer-events: none;
}
.bottom-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 14px; }
.bottom-cta p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; }
.bottom-cta .store-btn img { filter: brightness(0.9); }
.bottom-cta .store-btn:hover img { filter: brightness(1); }
.bottom-cta .btn-outline { border-color: rgba(255,255,255,0.3); color: #fff; }
.bottom-cta .btn-outline:hover { border-color: rgba(255,255,255,0.6); }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); max-width: 240px; margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ── Inner pages ── */
.page-hero { padding: 140px 0 56px; text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

.content-body { max-width: 720px; margin: 0 auto; padding: 0 24px 100px; }
.content-body h2 { font-size: 1.2rem; font-weight: 700; margin: 40px 0 10px; color: var(--text); }
.content-body p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.content-body ul, .content-body ol { color: var(--text-muted); padding-left: 22px; margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.content-body li { margin-bottom: 6px; }
.content-body a { color: var(--accent); text-decoration: none; }
.content-body a:hover { text-decoration: underline; }
.last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }

/* ── Delete form ── */
.form-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; margin-top: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 14px; color: var(--text); font-size: 15px;
  outline: none; transition: border-color .2s; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.warning-box {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 10px;
  padding: 14px 16px; font-size: 14px; color: #b91c1c;
  margin-bottom: 24px; display: flex; gap: 10px; align-items: flex-start;
}
.success-box {
  display: none; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px;
  padding: 24px; text-align: center; font-size: 15px; color: #15803d;
  margin-top: 20px; line-height: 1.7;
}
.success-box a { color: #15803d; }
.btn-danger { background: #dc2626; color: #fff !important; }
.btn-danger:hover { background: #b91c1c; }

/* ── Responsive ── */
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 120px 0 64px; }
  .hero-image { min-height: 260px; }
  .nav-links a:not(.btn) { display: none; }
  nav .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .about-section { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .bottom-cta { padding: 72px 0; }
}
