/* ============================================================
   PROFITBOOKS GST BILLING LANDING PAGE — STYLES
   Paste this into: Appearance → Customize → Additional CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

.pb-lp {
  --orange: #ff6b35;
  --orange-dark: #e55a28;
  --orange-light: #fff3ee;
  --navy: #1a2332;
  --navy-light: #2d3a4a;
  --text: #333840;
  --text-light: #5f6b7a;
  --text-muted: #8896a6;
  --bg-white: #ffffff;
  --bg-off: #f7f8fa;
  --bg-cream: #fefcf9;
  --border: #e4e8ec;
  --green: #22c55e;
  --green-bg: #ecfdf5;
  --shadow-sm: 0 1px 3px rgba(26,35,50,0.06);
  --shadow-md: 0 4px 16px rgba(26,35,50,0.08);
  --shadow-lg: 0 12px 40px rgba(26,35,50,0.12);
  --shadow-xl: 0 20px 60px rgba(26,35,50,0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1180px;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  background: var(--bg-white);
  overflow-x: hidden;
  box-sizing: border-box;
}

.pb-lp *, .pb-lp *::before, .pb-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pb-lp img { max-width: 100%; height: auto; display: block; }
.pb-lp a { color: var(--orange); text-decoration: none; transition: all 0.2s; }
.pb-lp a:hover { color: var(--orange-dark); }

/* UTILITY */
.pb-lp .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.pb-lp .section { padding: 90px 0; }
.pb-lp .section-alt { background: var(--bg-off); }
.pb-lp .section-cream { background: var(--bg-cream); }
.pb-lp .section-dark { background: var(--navy); color: #fff; }
.pb-lp .text-center { text-align: center; }

.pb-lp h1, .pb-lp h2, .pb-lp h3, .pb-lp h4, .pb-lp h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--navy);
}
.pb-lp .section-dark h1, .pb-lp .section-dark h2,
.pb-lp .section-dark h3, .pb-lp .section-dark h4 { color: #fff; }

.pb-lp h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; }
.pb-lp h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; }
.pb-lp h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
.pb-lp h4 { font-size: 1.05rem; font-weight: 600; }

.pb-lp .section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.pb-lp .section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* BUTTONS */
.pb-lp .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  line-height: 1;
}
.pb-lp .btn-primary {
  background: var(--orange);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.pb-lp .btn-primary:hover {
  background: var(--orange-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
}
.pb-lp .btn-outline {
  background: transparent;
  color: var(--orange) !important;
  border: 2px solid var(--orange);
}
.pb-lp .btn-outline:hover {
  background: var(--orange);
  color: #fff !important;
  transform: translateY(-2px);
}
.pb-lp .btn-white {
  background: #fff;
  color: var(--orange) !important;
  box-shadow: var(--shadow-md);
}
.pb-lp .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--orange-dark) !important;
}
.pb-lp .btn-sm { padding: 11px 24px; font-size: 14.5px; }
.pb-lp .btn-lg { padding: 18px 40px; font-size: 17px; }

/* IMAGE PLACEHOLDERS */
.pb-lp .img-placeholder {
  background: linear-gradient(135deg, #e8ecf1 0%, #d5dce6 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.pb-lp .img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.4) 20px, rgba(255,255,255,0.4) 22px);
  opacity: 0.5;
}
.pb-lp .img-placeholder svg { position: relative; z-index: 1; opacity: 0.4; }
.pb-lp .img-placeholder span { position: relative; z-index: 1; text-align: center; padding: 0 20px; }

/* HERO */
.pb-lp .hero {
  padding: 80px 0;
  background: linear-gradient(175deg, #fff 0%, var(--orange-light) 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.pb-lp .hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pb-lp .hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.pb-lp .hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.pb-lp .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  color: #15803d;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid #bbf7d0;
  animation: pb-fadeInDown 0.6s ease-out;
}
.pb-lp .hero-badge svg { width: 16px; height: 16px; }
.pb-lp .hero h1 { margin-bottom: 20px; animation: pb-fadeInDown 0.6s ease-out 0.1s both; }
.pb-lp .hero h1 .highlight { color: var(--orange); position: relative; }
.pb-lp .hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 8px;
  background: rgba(255,107,53,0.15);
  border-radius: 4px;
  z-index: -1;
}
.pb-lp .hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
  animation: pb-fadeInDown 0.6s ease-out 0.2s both;
}
.pb-lp .hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  animation: pb-fadeInDown 0.6s ease-out 0.3s both;
}
.pb-lp .hero-note {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 50px;
  animation: pb-fadeInDown 0.6s ease-out 0.35s both;
}
.pb-lp .hero-note svg { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; margin-right: 4px; }
.pb-lp .hero-screenshot { max-width: 960px; margin: 0 auto; animation: pb-fadeInUp 0.8s ease-out 0.4s both; }
.pb-lp .hero-screenshot .img-placeholder {
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  border: 4px solid #fff;
}

/* RATINGS */
.pb-lp .ratings-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 24px 0;
  animation: pb-fadeInUp 0.8s ease-out 0.6s both;
}
.pb-lp .rating-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pb-lp .rating-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 16px; }
.pb-lp .rating-source { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.pb-lp .rating-score { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--navy); }

/* FEATURE ROW */
.pb-lp .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pb-lp .feature-row.reverse .feature-visual { order: 2; }
.pb-lp .feature-row.reverse .feature-content { order: 1; }
.pb-lp .feature-visual .img-placeholder { aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.pb-lp .feature-content { max-width: 500px; }
.pb-lp .feature-content h2 { margin-bottom: 8px; }
.pb-lp .feature-content .section-subtitle { margin: 0 0 24px; text-align: left; }
.pb-lp .feature-content p { margin-bottom: 24px; color: var(--text-light); }
.pb-lp .feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pb-lp .feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--text); }
.pb-lp .feature-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }

/* TESTIMONIAL */
.pb-lp .testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.pb-lp .testimonial-card p { font-size: 14.5px; font-style: italic; color: var(--text); margin-bottom: 14px; line-height: 1.7; }
.pb-lp .testimonial-meta { display: flex; align-items: center; gap: 12px; }
.pb-lp .testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), #fde0d0);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--orange); font-size: 16px;
}
.pb-lp .testimonial-info { font-size: 13.5px; }
.pb-lp .testimonial-info strong { display: block; color: var(--navy); font-weight: 600; }
.pb-lp .testimonial-info span { color: var(--text-muted); }
.pb-lp .testimonial-source { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pb-lp .testimonial-source .stars { color: #f59e0b; font-size: 13px; }
.pb-lp .testimonial-source .platform { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* COMPLIANCE */
.pb-lp .compliance-strip { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; padding: 20px 0; }
.pb-lp .compliance-badge {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 50px;
  padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--text); box-shadow: var(--shadow-sm);
}
.pb-lp .compliance-badge svg { width: 18px; height: 18px; color: var(--green); }

/* VIDEO */
.pb-lp .video-wrapper { max-width: 800px; margin: 0 auto 50px; position: relative; }
.pb-lp .video-wrapper .img-placeholder { aspect-ratio: 16/9; cursor: pointer; box-shadow: var(--shadow-lg); }
.pb-lp .play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 4px 20px rgba(255,107,53,0.4); transition: transform 0.3s;
}
.pb-lp .play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.pb-lp .play-btn svg { width: 28px; height: 28px; color: #fff; margin-left: 3px; }
.pb-lp .icon-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.pb-lp .icon-feature {
  text-align: center; padding: 28px 20px;
  border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.pb-lp .icon-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pb-lp .icon-feature .emoji { font-size: 32px; margin-bottom: 14px; display: block; }
.pb-lp .icon-feature h3 { margin-bottom: 8px; font-size: 1.05rem; }
.pb-lp .icon-feature p { font-size: 14.5px; color: var(--text-light); line-height: 1.65; }

/* TABS */
.pb-lp .tabs-nav { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 40px; }
.pb-lp .tab-btn {
  font-family: var(--font-display); font-size: 14.5px; font-weight: 600;
  padding: 10px 22px; border: 2px solid var(--border); border-radius: 50px;
  background: #fff; color: var(--text-light); cursor: pointer; transition: all 0.25s;
}
.pb-lp .tab-btn:hover { border-color: var(--orange); color: var(--orange); }
.pb-lp .tab-btn.active { background: var(--orange); color: #fff !important; border-color: var(--orange); }
.pb-lp .tab-panel { display: none; }
.pb-lp .tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.pb-lp .tab-text h3 { margin-bottom: 16px; }
.pb-lp .tab-text p { color: var(--text-light); margin-bottom: 20px; }
.pb-lp .tab-text .feature-list { margin-bottom: 24px; }
.pb-lp .tab-image .img-placeholder { aspect-ratio: 4/3; box-shadow: var(--shadow-md); }

/* FEATURE GRID */
.pb-lp .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pb-lp .grid-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: all 0.3s; position: relative; overflow: hidden;
}
.pb-lp .grid-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.pb-lp .grid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pb-lp .grid-card:hover::before { transform: scaleX(1); }
.pb-lp .grid-card .emoji { font-size: 28px; margin-bottom: 14px; display: block; }
.pb-lp .grid-card h3 { margin-bottom: 14px; font-size: 1.05rem; }
.pb-lp .grid-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pb-lp .grid-card ul li { font-size: 14.5px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.pb-lp .grid-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* SUPPORT */
.pb-lp .support-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.pb-lp .support-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pb-lp .support-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; }
.pb-lp .support-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--orange); margin-top: 2px; }
.pb-lp .app-badges { display: flex; gap: 12px; margin-top: 24px; }
.pb-lp .app-badge {
  height: 42px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 18px; color: #fff !important; font-size: 13px; font-weight: 600; gap: 6px; transition: opacity 0.2s;
}
.pb-lp .app-badge:hover { opacity: 0.85; color: #fff !important; }

/* BLOG */
.pb-lp .blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pb-lp .blog-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: all 0.3s; display: block; }
.pb-lp .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pb-lp .blog-card .img-placeholder { aspect-ratio: 16/9; border-radius: 0; border: none; }
.pb-lp .blog-card-body { padding: 18px; }
.pb-lp .blog-card h3 { font-size: 0.95rem; line-height: 1.45; color: var(--navy); margin-bottom: 0; }
.pb-lp .blog-card:hover h3 { color: var(--orange); }

/* FINAL CTA */
.pb-lp .final-cta {
  padding: 90px 0; background: var(--navy); position: relative; overflow: hidden;
}
.pb-lp .final-cta::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
}
.pb-lp .final-cta::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
}
.pb-lp .cta-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.pb-lp .cta-content h1 { color: #fff; margin-bottom: 10px; }
.pb-lp .cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 30px; font-size: 1.1rem; }
.pb-lp .cta-content .btn-primary { font-size: 17px; padding: 17px 38px; }
.pb-lp .cta-checklist {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 36px;
}
.pb-lp .cta-checklist h3 { color: #fff; margin-bottom: 6px; font-size: 1.15rem; }
.pb-lp .cta-checklist .cta-sub { color: rgba(255,255,255,0.6); font-size: 14.5px; margin-bottom: 24px; }
.pb-lp .cta-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pb-lp .cta-checklist ul li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 15px; }
.pb-lp .cta-checklist ul li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* FAQ */
.pb-lp .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.pb-lp .faq-item { border-bottom: 1px solid var(--border); }
.pb-lp .faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--navy);
  background: none; border: none; width: 100%; text-align: left; transition: color 0.2s;
  box-shadow: none;
}
.pb-lp .faq-question:hover { color: var(--orange); background: none; box-shadow: none; }
.pb-lp .faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.pb-lp .faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--orange); }
.pb-lp .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.pb-lp .faq-item.open .faq-answer { max-height: 500px; }
.pb-lp .faq-answer-inner { padding: 0 0 22px; font-size: 15px; color: var(--text-light); line-height: 1.75; }

/* SCROLL ANIMATIONS */
.pb-lp .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.pb-lp .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pb-fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pb-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pb-lp .feature-row,
  .pb-lp .tab-panel.active,
  .pb-lp .support-grid,
  .pb-lp .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .pb-lp .feature-row.reverse .feature-visual,
  .pb-lp .feature-row.reverse .feature-content { order: unset; }
  .pb-lp .feature-content { max-width: none; }
  .pb-lp .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-lp .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pb-lp .section { padding: 60px 0; }
  .pb-lp .hero { padding: 60px 0; }
  .pb-lp .icon-features { grid-template-columns: 1fr; gap: 16px; }
  .pb-lp .feature-grid { grid-template-columns: 1fr; }
  .pb-lp .blog-grid { grid-template-columns: 1fr; }
  .pb-lp .ratings-bar { gap: 20px; }
  .pb-lp .compliance-strip { gap: 12px; }
  .pb-lp .compliance-badge { font-size: 13px; padding: 8px 14px; }
  .pb-lp .tabs-nav { gap: 4px; }
  .pb-lp .tab-btn { padding: 8px 16px; font-size: 13px; }
  .pb-lp .cta-checklist { padding: 24px; }
  .pb-lp .final-cta { padding: 60px 0; }
}