/* assets/css/style.css — SantiyePro */
:root {
  --bg: #F5F5F0; --card: #FFFFFF; --text: #1A1A1A; --sub: #6B7280; --muted: #9CA3AF;
  --primary: #D97706; --primary-light: rgba(217,119,6,0.08); --accent: #F59E0B;
  --green: #16A34A; --red: #EF4444; --blue: #3B82F6; --cyan: #06B6D4; --purple: #8B5CF6;
  --border: rgba(0,0,0,0.06); --shadow: rgba(0,0,0,0.06);
  --radius: 16px; --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ═══ NAV ═══ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; transition: all 0.3s; }
.nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 8px var(--shadow); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 8px; font-size: 1.15rem; font-weight: 900; color: var(--text); }
.nav-brand span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--sub); font-size: 0.85rem; font-weight: 600; transition: color 0.2s; text-decoration: none; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta { padding: 8px 20px; background: var(--primary); color: #fff !important; border-radius: 10px; font-weight: 700; font-size: 0.85rem; transition: all 0.2s; }
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ═══ HERO ═══ */
.hero { position: relative; padding: 140px 24px 80px; text-align: center; overflow: hidden; background: linear-gradient(180deg, #FFFBEB 0%, var(--bg) 60%); }
.hero::before { content: ''; position: absolute; top: 60px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(217,119,6,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 100px; font-size: 0.78rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; box-shadow: 0 1px 4px var(--shadow); animation: fadeUp .5s ease; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.3 } }
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; animation: fadeUp .5s ease .05s both; }
.hero h1 .hl { color: var(--primary); }
.hero-sub { font-size: 1.05rem; color: var(--sub); max-width: 540px; margin: 16px auto 0; line-height: 1.7; animation: fadeUp .5s ease .1s both; }
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; animation: fadeUp .5s ease .15s both; flex-wrap: wrap; }
.btn-h { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 14px; font-size: 0.95rem; font-weight: 800; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-h:hover { text-decoration: none; }
.btn-fill { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(217,119,6,0.25); }
.btn-fill:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(217,119,6,0.35); color: #fff; }
.btn-ghost { background: var(--card); color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.hero-stats { display: flex; gap: 36px; justify-content: center; margin-top: 48px; animation: fadeUp .5s ease .2s both; }
.h-stat { text-align: center; }
.h-stat .num { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.h-stat .lbl { font-size: 0.7rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px) } to { opacity:1; transform:translateY(0) } }

/* ═══ SECTION COMMON ═══ */
.sec-header { text-align: center; max-width: 560px; margin: 0 auto 40px; padding: 0 24px; }
.sec-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.sec-header h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900; letter-spacing: -0.5px; }
.sec-header p { font-size: 0.92rem; color: var(--sub); margin-top: 8px; }

/* ═══ SLIDER ═══ */
.slider-section { padding: 80px 0; }
.slider-wrap { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; padding: 0 24px; }
.slide-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.slide-content {}
.sl-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 14px; }
.slide-content h3 { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px; }
.slide-content p { font-size: 0.9rem; color: var(--sub); margin-top: 8px; line-height: 1.7; }
.sl-feats { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sl-feats li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 600; color: var(--sub); }
.sl-feats .ck { width: 20px; height: 20px; background: rgba(22,163,74,0.08); color: var(--green); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 900; }

/* Mockup card */
.mockup { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; min-height: 340px; box-shadow: 0 4px 24px var(--shadow); position: relative; overflow: hidden; }
.mockup-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 20px 20px 0 0; }
.mockup-head { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; padding-top: 4px; }
.mockup-dot { width: 7px; height: 7px; border-radius: 50%; }
.mockup-title { font-size: 0.72rem; font-weight: 700; color: var(--muted); margin-left: 6px; }
.m-rows { display: flex; flex-direction: column; gap: 8px; }
.m-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); }
.m-row-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.m-row-txt { flex: 1; }
.m-row-txt .t1 { font-size: 0.8rem; font-weight: 700; }
.m-row-txt .t2 { font-size: 0.68rem; color: var(--muted); margin-top: 1px; }
.m-badge { padding: 3px 8px; border-radius: 6px; font-size: 0.66rem; font-weight: 700; white-space: nowrap; }

.slider-ctrls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.sl-btn { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--card); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: all .2s; }
.sl-btn:hover { border-color: var(--primary); color: var(--primary); }
.sl-dots { display: flex; gap: 5px; }
.sl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); opacity: .35; cursor: pointer; transition: all .3s; }
.sl-dot.on { background: var(--primary); opacity: 1; width: 22px; border-radius: 4px; }

/* ═══ FEATURES GRID ═══ */
.feats-section { padding: 60px 24px 80px; }
.feats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.f-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all .2s; }
.f-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow); border-color: rgba(217,119,6,0.15); }
.f-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 12px; }
.f-card h3 { font-size: 0.95rem; font-weight: 800; }
.f-card p { font-size: 0.8rem; color: var(--sub); margin-top: 4px; line-height: 1.6; }

/* ═══ PRICING ═══ */
.price-section { padding: 80px 24px; background: linear-gradient(180deg, var(--bg) 0%, #FFFBEB 100%); }
.price-card { max-width: 420px; margin: 0 auto; background: var(--card); border: 2px solid var(--primary); border-radius: 24px; padding: 40px 32px; text-align: center; box-shadow: 0 8px 40px rgba(217,119,6,0.1); position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 70%); }
.price-tag { display: inline-block; padding: 4px 12px; background: var(--primary); color: #fff; border-radius: 6px; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.price-amount { font-size: 3.2rem; font-weight: 900; line-height: 1; }
.price-amount .cur { font-size: 1.3rem; color: var(--sub); }
.price-period { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.price-feats { margin: 24px 0; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.price-feats .pf { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--sub); }
.price-feats .pf .pc { color: var(--green); font-weight: 900; }
.price-btn { display: block; width: 100%; padding: 15px; text-align: center; background: var(--primary); color: #fff; border-radius: 14px; font-size: 1rem; font-weight: 800; border: none; cursor: pointer; transition: all .2s; text-decoration: none; }
.price-btn:hover { background: var(--accent); transform: translateY(-1px); color: #fff; text-decoration: none; }

/* ═══ FOOTER ═══ */
.footer { text-align: center; padding: 40px 20px; font-size: 0.85rem; color: var(--muted); border-top: 1px solid var(--border); }
.footer a { color: var(--sub); text-decoration: none; }
.footer a:hover { color: var(--text); text-decoration: none; }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 12px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 20px; }
  .slide-inner { grid-template-columns: 1fr; gap: 28px; }
  .slide-visual { order: 2; }
  .slide-content { order: 1; }
  .feats-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
