/* ═══════════════════════════════════════════════════════
   EWAYTAX — MAIN CSS  |  Font: Poppins  |  Light Theme
   ═══════════════════════════════════════════════════════ */
:root {
  --primary: #1a56db;
  --primary-dark: #1245b5;
  --primary-light: #e8f0fe;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --navy: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .25s ease;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Poppins',sans-serif; color:var(--text); background:var(--white); line-height:1.6; }
img { max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }

/* ── NAVBAR ── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:999;
  background:rgba(255,255,255,.95); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s;
}
.navbar.scrolled { box-shadow:var(--shadow); }
.nav-container {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 24px; height:68px;
}
.nav-brand { display:flex; align-items:center; gap:10px; }
.brand-icon {
  width:38px; height:38px; border-radius:10px;
  background:linear-gradient(135deg,var(--primary),#3b82f6);
  display:grid; place-items:center;
  font-weight:800; font-size:1rem; color:#fff;
}
.brand-text { font-size:1.3rem; font-weight:700; color:var(--navy); }
.brand-text em { color:var(--primary); font-style:normal; }
.nav-links { display:flex; list-style:none; gap:6px; }
.nav-links a {
  padding:7px 14px; border-radius:8px;
  font-size:.88rem; font-weight:500; color:var(--text-muted);
  transition:var(--transition);
}
.nav-links a:hover, .nav-links a.active { background:var(--primary-light); color:var(--primary); }
.nav-auth { display:flex; gap:8px; align-items:center; }
.btn-nav-outline {
  padding:8px 18px; border-radius:8px; border:1.5px solid var(--primary);
  color:var(--primary); font-size:.85rem; font-weight:600; transition:var(--transition);
  background:transparent; cursor:pointer; font-family:inherit;
}
.btn-nav-outline:hover { background:var(--primary-light); }
.btn-nav-primary {
  padding:8px 20px; border-radius:8px; border:none;
  background:var(--primary); color:#fff; font-size:.85rem; font-weight:600;
  cursor:pointer; font-family:inherit; transition:var(--transition);
}
.btn-nav-primary:hover { background:var(--primary-dark); transform:translateY(-1px); }
.nav-toggle {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:4px;
}
.nav-toggle span { display:block; width:22px; height:2px; background:var(--navy); border-radius:2px; transition:var(--transition); }

/* ── ALERTS ── */
.alert {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px; font-size:.88rem; font-weight:500;
  max-width:600px; margin:80px auto 0; border-radius:var(--radius);
  animation:slideDown .4s ease; position:relative; z-index:100;
}
.alert-success { background:#ecfdf5; color:#065f46; border:1px solid #a7f3d0; }
.alert-error   { background:#fef2f2; color:#991b1b; border:1px solid #fecaca; }
.alert-info    { background:#eff6ff; color:#1e40af; border:1px solid #bfdbfe; }
.alert-close   { background:none; border:none; font-size:1.2rem; cursor:pointer; color:inherit; }
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

/* ── SECTION SHARED ── */
.section { padding:96px 24px; }
.section-sm { padding:60px 24px; }
.container { max-width:1200px; margin:0 auto; }
.section-label {
  display:inline-block; font-size:.72rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1.5px;
  color:var(--primary); background:var(--primary-light);
  padding:5px 14px; border-radius:50px; margin-bottom:14px;
}
.section-title {
  font-size:clamp(1.8rem,3.5vw,2.9rem); font-weight:800;
  color:var(--navy); line-height:1.15; margin-bottom:14px;
}
.section-title em { color:var(--primary); font-style:normal; }
.section-sub { font-size:1rem; color:var(--text-muted); line-height:1.75; max-width:560px; }
.text-center { text-align:center; }
.text-center .section-sub { margin:0 auto; }

/* ── HERO ── */
.hero {
  min-height:100vh; padding:100px 24px 60px;
  background:linear-gradient(135deg,#f0f4ff 0%,#fafbff 50%,#f0fdf4 100%);
  display:flex; align-items:center; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle,rgba(26,86,219,.07),transparent);
  top:-200px; right:-200px; pointer-events:none;
}
.hero::after {
  content:''; position:absolute;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,158,11,.06),transparent);
  bottom:-150px; left:-100px; pointer-events:none;
}
.hero-wrap { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-content { position:relative; z-index:2; }
.hero-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:#fff; border:1px solid var(--border);
  padding:7px 16px; border-radius:50px; font-size:.8rem; font-weight:600;
  color:var(--primary); margin-bottom:24px; box-shadow:var(--shadow);
  animation:fadeUp .6s ease;
}
.hero h1 {
  font-size:clamp(2.2rem,4.5vw,3.8rem); font-weight:900;
  color:var(--navy); line-height:1.1; margin-bottom:20px;
  animation:fadeUp .6s .1s ease both;
}
.hero h1 em { color:var(--primary); font-style:normal; }
.hero p {
  font-size:1.05rem; color:var(--text-muted); line-height:1.8;
  margin-bottom:32px; max-width:500px;
  animation:fadeUp .6s .2s ease both;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; animation:fadeUp .6s .3s ease both; }
.btn-primary {
  background:var(--primary); color:#fff; padding:14px 28px;
  border-radius:10px; font-weight:700; font-size:.95rem;
  transition:var(--transition); border:none; cursor:pointer;
  font-family:inherit; box-shadow:0 4px 20px rgba(26,86,219,.35);
}
.btn-primary:hover { background:var(--primary-dark); transform:translateY(-2px); box-shadow:0 8px 28px rgba(26,86,219,.45); }
.btn-outline {
  border:2px solid var(--border); color:var(--text); padding:14px 28px;
  border-radius:10px; font-weight:600; font-size:.95rem; background:#fff;
  transition:var(--transition); cursor:pointer; font-family:inherit;
}
.btn-outline:hover { border-color:var(--primary); color:var(--primary); }
.hero-stats {
  display:flex; gap:32px; margin-top:48px; padding-top:32px;
  border-top:1px solid var(--border); animation:fadeUp .6s .4s ease both;
}
.hero-stat h3 { font-size:1.9rem; font-weight:800; color:var(--navy); }
.hero-stat h3 span { color:var(--primary); }
.hero-stat p { font-size:.75rem; color:var(--text-muted); font-weight:500; text-transform:uppercase; letter-spacing:.6px; }
.hero-visual {
  position:relative; display:flex; align-items:center; justify-content:center;
  animation:fadeUp .6s .2s ease both;
}
.hero-card {
  background:#fff; border-radius:var(--radius-lg); padding:28px;
  box-shadow:var(--shadow-lg); border:1px solid var(--border);
  width:100%; max-width:400px;
}
.hero-card-title { font-size:.85rem; font-weight:600; color:var(--text-muted); margin-bottom:16px; }
.hero-plan-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; border-bottom:1px solid var(--border); font-size:.88rem;
}
.hero-plan-item:last-child { border:none; }
.plan-dot { width:10px; height:10px; border-radius:50%; margin-right:10px; }

/* ── CATEGORIES GRID ── */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:18px; }
.cat-card {
  background:#fff; border-radius:var(--radius); padding:24px 20px;
  border:1.5px solid var(--border); text-align:center;
  transition:var(--transition); cursor:pointer;
}
.cat-card:hover { border-color:var(--primary); transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.cat-card:hover .cat-icon { transform:scale(1.1); }
.cat-icon { font-size:2.2rem; margin-bottom:12px; transition:var(--transition); display:block; }
.cat-card h3 { font-size:.95rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.cat-card p { font-size:.78rem; color:var(--text-muted); line-height:1.55; }

/* ── PLAN CARDS ── */
.plans-filter {
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; justify-content:center;
}
.filter-btn {
  padding:8px 20px; border-radius:50px; border:1.5px solid var(--border);
  background:#fff; font-size:.82rem; font-weight:600; cursor:pointer;
  transition:var(--transition); color:var(--text-muted); font-family:inherit;
}
.filter-btn.active, .filter-btn:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.plans-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:24px; }
.plan-card {
  background:#fff; border-radius:var(--radius-lg); padding:32px 26px;
  border:2px solid var(--border); transition:var(--transition); position:relative;
}
.plan-card:hover { border-color:var(--primary); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.plan-card.popular { border-color:var(--primary); box-shadow:0 0 0 3px rgba(26,86,219,.1); }
.plan-popular-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--primary); color:#fff; font-size:.68rem; font-weight:700;
  padding:5px 18px; border-radius:50px; white-space:nowrap; letter-spacing:.5px;
}
.plan-category { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--primary); margin-bottom:8px; }
.plan-card h3 { font-size:1.15rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.plan-card p { font-size:.83rem; color:var(--text-muted); line-height:1.65; margin-bottom:16px; }
.plan-price { display:flex; align-items:baseline; gap:4px; margin:18px 0 6px; }
.plan-price .amount { font-size:2.2rem; font-weight:800; color:var(--navy); }
.plan-price .period { font-size:.82rem; color:var(--text-muted); }
.plan-features { list-style:none; margin:16px 0 24px; }
.plan-features li {
  font-size:.83rem; color:var(--text-muted); padding:7px 0;
  border-bottom:1px solid #f1f5f9; display:flex; align-items:center; gap:8px;
}
.plan-features li::before { content:'✓'; color:var(--success); font-weight:700; flex-shrink:0; }
.plan-features li:last-child { border:none; }
.btn-plan {
  display:block; width:100%; text-align:center; padding:12px;
  border-radius:10px; font-weight:700; font-size:.9rem;
  background:var(--primary-light); color:var(--primary);
  border:2px solid var(--primary); transition:var(--transition);
  cursor:pointer; font-family:inherit;
}
.btn-plan:hover, .plan-card.popular .btn-plan {
  background:var(--primary); color:#fff;
}

/* ── HOW IT WORKS ── */
.how-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:24px; }
.how-step {
  text-align:center; padding:32px 20px; background:#fff;
  border-radius:var(--radius-lg); border:1px solid var(--border);
  transition:var(--transition); position:relative;
}
.how-step:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.step-num {
  width:52px; height:52px; border-radius:50%;
  background:var(--primary); color:#fff;
  display:grid; place-items:center; font-size:1.2rem; font-weight:800;
  margin:0 auto 18px; position:relative; z-index:1;
}
.how-step h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.how-step p { font-size:.83rem; color:var(--text-muted); line-height:1.65; }

/* ── TESTIMONIALS ── */
.testi-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.testi-card {
  background:#fff; border-radius:var(--radius-lg); padding:28px;
  border:1px solid var(--border); transition:var(--transition);
}
.testi-card:hover { box-shadow:var(--shadow-lg); }
.testi-stars { color:var(--accent); font-size:1rem; margin-bottom:14px; letter-spacing:2px; }
.testi-card p { font-size:.88rem; color:var(--text-muted); line-height:1.75; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  background:var(--primary); color:#fff;
  display:grid; place-items:center; font-weight:700; font-size:.9rem; flex-shrink:0;
}
.testi-name { font-weight:700; font-size:.88rem; color:var(--navy); }
.testi-role { font-size:.75rem; color:var(--text-muted); }

/* ── FOUNDERS ── */
.founders-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:32px; max-width:900px; margin:0 auto; }
.founder-card { text-align:center; padding:32px 20px; background:#fff; border-radius:var(--radius-lg); border:1px solid var(--border); transition:var(--transition); }
.founder-card:hover { box-shadow:var(--shadow-lg); }
.founder-img {
  width:100px; height:100px; border-radius:50%;
  background:linear-gradient(135deg,var(--primary),#3b82f6);
  margin:0 auto 18px; display:grid; place-items:center;
  font-size:2rem; font-weight:800; color:#fff;
  border:4px solid var(--primary-light);
}
.founder-card img { width:100px; height:100px; border-radius:50%; object-fit:cover; margin:0 auto 18px; display:block; border:4px solid var(--primary-light); }
.founder-card h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.founder-role { font-size:.75rem; font-weight:600; color:var(--primary); text-transform:uppercase; letter-spacing:.8px; margin-bottom:10px; }
.founder-card p { font-size:.83rem; color:var(--text-muted); line-height:1.65; }

/* ── BLOG CARDS ── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:28px; }
.blog-card {
  background:#fff; border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--border); transition:var(--transition);
}
.blog-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.blog-thumb { height:180px; background:linear-gradient(135deg,var(--primary-light),#e0f2fe); overflow:hidden; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.blog-card:hover .blog-thumb img { transform:scale(1.05); }
.blog-body { padding:22px; }
.blog-cat { font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--primary); margin-bottom:8px; }
.blog-body h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:8px; line-height:1.4; }
.blog-body p { font-size:.83rem; color:var(--text-muted); line-height:1.65; margin-bottom:16px; }
.blog-meta { display:flex; align-items:center; justify-content:space-between; font-size:.75rem; color:var(--text-muted); }
.read-more { color:var(--primary); font-weight:600; font-size:.82rem; }

/* ── CONTACT FORM ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-info h2 { font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:14px; }
.contact-info p { color:var(--text-muted); line-height:1.75; margin-bottom:28px; }
.contact-details { display:flex; flex-direction:column; gap:16px; }
.c-item { display:flex; align-items:center; gap:14px; }
.c-icon {
  width:44px; height:44px; border-radius:10px;
  background:var(--primary-light); display:grid; place-items:center;
  font-size:18px; flex-shrink:0;
}
.c-item p:first-child { font-size:.72rem; font-weight:600; color:var(--primary); text-transform:uppercase; letter-spacing:.6px; }
.c-item p:last-child { font-size:.9rem; color:var(--text); font-weight:500; }

/* ── FORM STYLES ── */
.form-card { background:#fff; border-radius:var(--radius-lg); padding:36px; border:1px solid var(--border); box-shadow:var(--shadow); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:.78rem; font-weight:600; color:var(--text); margin-bottom:7px; text-transform:uppercase; letter-spacing:.4px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:11px 14px; border-radius:8px;
  border:1.5px solid var(--border); font-size:.9rem;
  font-family:'Poppins',sans-serif; outline:none; transition:var(--transition);
  background:#fafafa; color:var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--primary); background:#fff; }
.form-group textarea { resize:vertical; min-height:100px; }
.form-group .error { font-size:.78rem; color:var(--danger); margin-top:4px; }
.btn-submit {
  width:100%; background:var(--primary); border:none; color:#fff;
  font-weight:700; font-size:.95rem; padding:14px; border-radius:10px;
  cursor:pointer; font-family:'Poppins',sans-serif; transition:var(--transition);
  box-shadow:0 4px 18px rgba(26,86,219,.3);
}
.btn-submit:hover { background:var(--primary-dark); transform:translateY(-2px); }

/* ── AUTH PAGES ── */
.auth-wrap {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#f0f4ff,#fafbff); padding:100px 20px 40px;
}
.auth-card {
  background:#fff; border-radius:var(--radius-lg); padding:44px;
  border:1px solid var(--border); box-shadow:var(--shadow-lg);
  width:100%; max-width:460px;
}
.auth-logo { text-align:center; margin-bottom:28px; }
.auth-card h1 { font-size:1.6rem; font-weight:800; color:var(--navy); text-align:center; margin-bottom:6px; }
.auth-card .subtitle { text-align:center; color:var(--text-muted); font-size:.88rem; margin-bottom:28px; }
.auth-divider { display:flex; align-items:center; gap:10px; margin:18px 0; color:var(--text-muted); font-size:.8rem; }
.auth-divider::before, .auth-divider::after { content:''; flex:1; height:1px; background:var(--border); }
.auth-card .link { color:var(--primary); font-weight:600; }
.auth-footer { text-align:center; font-size:.85rem; color:var(--text-muted); margin-top:18px; }
.otp-inputs { display:flex; gap:12px; justify-content:center; margin:20px 0; }
.otp-inputs input {
  width:50px; height:56px; text-align:center; font-size:1.4rem; font-weight:700;
  border:2px solid var(--border); border-radius:10px;
  font-family:'Poppins',sans-serif; outline:none; transition:var(--transition);
}
.otp-inputs input:focus { border-color:var(--primary); }

/* ── CHECKOUT ── */
.checkout-wrap { max-width:960px; margin:0 auto; padding:96px 24px 48px; display:grid; grid-template-columns:1fr 380px; gap:32px; align-items:start; }
.checkout-section { background:#fff; border-radius:var(--radius-lg); padding:28px; border:1px solid var(--border); margin-bottom:20px; }
.checkout-section h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:18px; border-bottom:1px solid var(--border); padding-bottom:12px; }
.order-summary { position:sticky; top:88px; background:#fff; border-radius:var(--radius-lg); padding:28px; border:1px solid var(--border); }
.summary-row { display:flex; justify-content:space-between; font-size:.88rem; padding:8px 0; border-bottom:1px solid #f1f5f9; }
.summary-row:last-child { border:none; font-weight:700; font-size:1rem; color:var(--navy); }
.summary-row .discount { color:var(--success); }
.coupon-wrap { display:flex; gap:10px; margin-bottom:18px; }
.coupon-wrap input { flex:1; }
.btn-apply { padding:11px 18px; background:var(--primary-light); color:var(--primary); border:1.5px solid var(--primary); border-radius:8px; font-weight:600; cursor:pointer; font-family:inherit; white-space:nowrap; font-size:.85rem; }

/* ── USER PANEL ── */
.user-wrap { display:flex; min-height:100vh; padding-top:68px; }
.user-sidebar {
  width:240px; flex-shrink:0; background:#fff; border-right:1px solid var(--border);
  padding:24px 0; position:sticky; top:68px; height:calc(100vh - 68px); overflow-y:auto;
}
.user-sidebar .nav-section { padding:0 20px; margin-bottom:6px; }
.user-sidebar .nav-section-title { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); padding:10px 0 4px; }
.sidebar-link {
  display:flex; align-items:center; gap:10px;
  padding:10px 20px; font-size:.86rem; font-weight:500;
  color:var(--text-muted); border-left:3px solid transparent;
  transition:var(--transition);
}
.sidebar-link:hover, .sidebar-link.active {
  color:var(--primary); background:var(--primary-light);
  border-left-color:var(--primary);
}
.sidebar-icon { font-size:16px; width:20px; text-align:center; }
.user-main { flex:1; padding:28px; background:var(--bg); }
.user-header { margin-bottom:24px; }
.user-header h1 { font-size:1.4rem; font-weight:800; color:var(--navy); }
.user-header p { color:var(--text-muted); font-size:.88rem; }
.stats-row { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:16px; margin-bottom:28px; }
.stat-card {
  background:#fff; border-radius:var(--radius); padding:20px;
  border:1px solid var(--border); display:flex; align-items:center; gap:14px;
  transition:var(--transition);
}
.stat-card:hover { box-shadow:var(--shadow); }
.stat-icon { font-size:1.8rem; }
.stat-info p:first-child { font-size:.72rem; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.stat-info p:last-child { font-size:1.5rem; font-weight:800; color:var(--navy); }

/* ── BADGES ── */
.badge {
  display:inline-block; font-size:.68rem; font-weight:700;
  padding:3px 10px; border-radius:50px; text-transform:capitalize;
}
.badge-green  { background:#d1fae5; color:#065f46; }
.badge-red    { background:#fee2e2; color:#991b1b; }
.badge-blue   { background:#dbeafe; color:#1e40af; }
.badge-orange { background:#ffedd5; color:#c2410c; }
.badge-yellow { background:#fef9c3; color:#854d0e; }
.badge-purple { background:#ede9fe; color:#5b21b6; }
.badge-gray   { background:#f1f5f9; color:#475569; }

/* ── TABLES ── */
.table-wrap { overflow-x:auto; }
.data-table { width:100%; border-collapse:collapse; font-size:.84rem; }
.data-table th { padding:11px 16px; background:var(--bg); font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:var(--text-muted); text-align:left; border-bottom:2px solid var(--border); }
.data-table td { padding:13px 16px; border-bottom:1px solid var(--border); color:var(--text); vertical-align:middle; }
.data-table tr:hover td { background:#f8fbff; }
.data-table tr:last-child td { border-bottom:none; }
.btn-action { display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:7px; font-size:13px; cursor:pointer; transition:var(--transition); border:none; }
.btn-view   { background:#dbeafe; color:#1e40af; }
.btn-edit   { background:#ffedd5; color:#c2410c; }
.btn-delete { background:#fee2e2; color:#991b1b; }
.btn-action:hover { opacity:.8; transform:scale(1.1); }

/* ── CARDS ── */
.card { background:#fff; border-radius:var(--radius); border:1px solid var(--border); overflow:hidden; }
.card-header { padding:18px 22px; border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.card-header h3 { font-size:.95rem; font-weight:700; color:var(--navy); }
.card-body { padding:22px; }

/* ── FOOTER ── */
.footer { background:var(--navy); color:rgba(255,255,255,.7); padding:72px 24px 28px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand .brand-text { color:#fff; font-size:1.3rem; font-weight:700; }
.footer-brand .brand-text em { color:#60a5fa; }
.footer-brand p { font-size:.84rem; line-height:1.75; margin-top:12px; max-width:260px; }
.social-links { display:flex; gap:10px; margin-top:18px; }
.social-links a {
  width:34px; height:34px; border-radius:8px;
  background:rgba(255,255,255,.08); display:grid; place-items:center;
  font-size:.75rem; font-weight:700; color:rgba(255,255,255,.6);
  transition:var(--transition);
}
.social-links a:hover { background:var(--primary); color:#fff; }
.footer-col h4 { color:#fff; font-size:.85rem; font-weight:700; margin-bottom:16px; text-transform:uppercase; letter-spacing:.7px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li, .footer-col ul a { font-size:.83rem; color:rgba(255,255,255,.55); transition:var(--transition); }
.footer-col ul a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:.8rem; }
.footer-bottom a { color:rgba(255,255,255,.5); margin-left:16px; transition:var(--transition); }
.footer-bottom a:hover { color:#fff; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:998;
  background:#25D366; color:#fff;
  display:flex; align-items:center; gap:10px;
  padding:12px 20px; border-radius:50px;
  box-shadow:0 6px 24px rgba(37,211,102,.4);
  font-weight:700; font-size:.85rem; font-family:'Poppins',sans-serif;
  transition:var(--transition); animation:pulse 2s infinite;
}
.whatsapp-float:hover { transform:translateY(-3px); box-shadow:0 10px 32px rgba(37,211,102,.5); }
@keyframes pulse {
  0%,100% { box-shadow:0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow:0 6px 32px rgba(37,211,102,.65); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.animate-up { animation:fadeUp .6s ease both; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-wrap { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display:none; }
  .hero-stats { justify-content:center; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .checkout-wrap { grid-template-columns:1fr; }
  .order-summary { position:static; }
}
@media(max-width:768px) {
  .nav-links { display:none; position:absolute; top:68px; left:0; right:0; background:#fff; border-bottom:1px solid var(--border); flex-direction:column; padding:12px 0; gap:0; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 24px; border-radius:0; }
  .nav-auth { display:none; }
  .nav-toggle { display:flex; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .hero-btns { justify-content:center; }
  .hero-stats { flex-wrap:wrap; gap:20px; }
  .section { padding:60px 16px; }
  .user-sidebar { display:none; }
  .user-wrap { display:block; }
}
