/* =============================================
   PW DISCOUNTO - STYLESHEET (style.css)
   SEO-Optimized Version
   ============================================= */

:root {
  --orange: #ff6b00;
  --orange-light: #ff8c38;
  --orange-pale: #fff4ec;
  --dark: #1a1a2e;
  --text: #2d2d2d;
  --muted: #666;
  --green: #16a34a;
  --green-light: #dcfce7;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(255, 107, 0, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: #fafafa;
}

/* ---------- NAV ---------- */
nav {
  background: var(--dark);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
}
.nav-logo {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 4px; flex-wrap: wrap; }
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--orange);
  color: #fff;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-bar {
  background: #f0f0f0;
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: auto;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb-inner a { color: var(--orange); text-decoration: none; }
.bc-sep { color: #bbb; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 24px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 107, 0, 0.18) 0%, transparent 65%);
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.2);
  border: 1px solid rgba(255, 107, 0, 0.5);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto 10px;
  position: relative;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  color: #aab;
  font-size: 0.95rem;
  margin-bottom: 36px;
  position: relative;
}

/* ---------- COUPON CARD ---------- */
.coupon-card {
  background: var(--white);
  border-radius: 20px;
  max-width: 480px;
  margin: 0 auto 24px;
  padding: 32px 28px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  border: 2px solid rgba(255, 107, 0, 0.3);
}
.coupon-card h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.discount-badge {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 18px;
}
.discount-badge span { color: var(--orange); }
.code-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange-pale);
  border: 2px dashed var(--orange);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.code-text {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.1em;
  flex: 1;
}
.copy-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.copy-btn:hover { background: var(--orange-light); }
.copy-btn:active { transform: scale(0.97); }
.copy-btn.copied { background: var(--green); }
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.wa-btn:hover { background: #1ebe5c; }

/* ---------- QUICK LINKS ---------- */
.quick-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin-top: 10px;
}
.quick-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #eee;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.quick-link:hover { background: var(--orange); border-color: var(--orange); }

/* ---------- TIER SECTION ---------- */
.tier-section {
  background: var(--dark);
  padding: 20px 24px;
}
.tier-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.tier-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}
.tier-card .tier-amount {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}
.tier-card .tier-label {
  font-size: 0.78rem;
  color: #bbb;
  margin-top: 2px;
}

/* ---------- SECTION ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}
.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.orange-bg { background: var(--orange-pale); }

/* ---------- TABLE ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  margin-bottom: 40px;
}
table { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.9rem; }
thead tr { background: var(--dark); color: #fff; }
thead th { padding: 14px 20px; text-align: left; font-family: 'Baloo 2', sans-serif; font-size: 0.9rem; font-weight: 700; }
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:hover { background: var(--orange-pale); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 13px 20px; font-weight: 600; color: var(--text); }
tbody td:first-child { color: var(--dark); }
.tbl-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s;
}
.tbl-btn:hover { background: var(--orange-light); }

/* ---------- BATCH DESCRIPTION CARDS ---------- */
.batch-desc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.batch-desc-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.batch-desc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.batch-icon { font-size: 2rem; margin-bottom: 10px; }
.batch-desc-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.batch-desc-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.batch-desc-card strong { color: var(--orange); }

/* ---------- HOW TO GRID ---------- */
.how-to-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media(max-width: 768px) { .how-to-grid { grid-template-columns: 1fr; } }

/* ---------- STEPS ---------- */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 3px; }
.step-content p { font-size: 0.85rem; color: var(--muted); }

/* ---------- TIP CARD ---------- */
.tip-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  border: 2px solid rgba(255, 107, 0, 0.2);
}
.tip-icon { font-size: 2rem; margin-bottom: 10px; }
.tip-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.tip-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tip-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.tip-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- INFO GRID ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.info-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.info-card h3 { font-family: 'Baloo 2', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.info-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ---------- APPLIES TO ---------- */
.applies-list { display: flex; flex-wrap: wrap; gap: 10px; }
.applies-tag {
  background: var(--orange-pale);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--orange);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.83rem;
  font-weight: 700;
}

/* ---------- CHECK GRID ---------- */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
}

/* ---------- ABOUT PW ---------- */
.about-pw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media(max-width: 768px) { .about-pw-grid { grid-template-columns: 1fr; } }
.about-text { font-size: 0.92rem; color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.pw-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pw-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  text-align: center;
}
.pw-stat-num {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}
.pw-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.blog-card .blog-read {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
}

/* ---------- AUTHOR ---------- */
.author-card {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  align-items: flex-start;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-info h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.author-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.author-link-btn {
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.author-link-btn:hover { background: var(--orange); color: #fff; }

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 8px; }
.review-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.review-batch { font-size: 0.75rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--orange-pale); }
.faq-q .arrow { font-size: 0.8rem; transition: transform 0.3s; color: var(--orange); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.faq-a.open { max-height: 200px; padding: 0 20px 16px; }
.faq-q.active .arrow { transform: rotate(180deg); }

/* ---------- KEYWORDS ---------- */
.keywords-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.kw-tag {
  background: #f3f4f6;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- SOCIAL ---------- */
.social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.social-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ccc;
  padding: 6px 12px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--orange); color: #fff; }

/* ---------- DIVIDER ---------- */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: #aab;
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 { font-family: 'Baloo 2', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col p { font-size: 0.85rem; line-height: 1.7; color: #99a; }
.footer-col a { display: block; color: #99a; text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-logo { font-family: 'Baloo 2', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #667;
}
.footer-bottom a { color: #888; text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- TOAST ---------- */
#toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .discount-badge { font-size: 1.8rem; }
  .coupon-card { padding: 24px 16px; }
  .code-text { font-size: 1.1rem; }
  .author-card { flex-direction: column; }
}
