/*
Theme Name: Pacific Business Lady
Theme URI: https://pacificbusinesslady.com
Author: Pacific Business Lady
Description: A bold, polished, high-converting WordPress theme for Pacific Business Lady: business setups, structuring, S-Corp strategy, and consulting serving Alaska & Hawai‘i.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: pacific-business-lady
Tags: business, consulting, custom-logo, featured-images, responsive-layout
*/

:root {
  --pbl-purple-dark: #3a074f;
  --pbl-purple: #6a1b9a;
  --pbl-purple-bright: #9c27b0;
  --pbl-purple-glow: #d57cff;
  --pbl-black: #111111;
  --pbl-white: #ffffff;
  --pbl-soft: #f8f3fb;
  --pbl-gray: #5d5264;
  --pbl-gold: #d4af37;
  --pbl-pink: #f48fb1;
  --pbl-shadow: 0 20px 55px rgba(58, 7, 79, .18);
  --pbl-radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--pbl-black);
  background: var(--pbl-white);
  line-height: 1.65;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

.pbl-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.pbl-topbar {
  background: var(--pbl-black);
  color: var(--pbl-white);
  font-size: 14px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: .3px;
}

.pbl-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(106,27,154,.12);
}

.admin-bar .pbl-header { top: 32px; }

.pbl-nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pbl-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.pbl-brand img {
  width: 190px;
  display: block;
}

.pbl-brand-text {
  font-weight: 900;
  color: var(--pbl-purple-dark);
  font-size: 22px;
  line-height: 1.05;
}

.pbl-brand-text span {
  display: block;
  font-size: 12px;
  color: var(--pbl-gray);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pbl-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pbl-menu a {
  text-decoration: none;
  font-weight: 700;
  color: var(--pbl-black);
}

.pbl-menu a:hover { color: var(--pbl-purple); }

.pbl-btn, .wp-block-button__link, input[type="submit"], button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--pbl-purple), var(--pbl-purple-bright));
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(106,27,154,.28);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}

.pbl-btn:hover, .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(106,27,154,.36);
}

.pbl-btn-dark {
  background: var(--pbl-black);
}

.pbl-btn-outline {
  background: transparent;
  color: var(--pbl-white) !important;
  border: 2px solid rgba(255,255,255,.65);
  box-shadow: none;
}

.pbl-hero {
  position: relative;
  overflow: hidden;
  color: var(--pbl-white);
  background:
    radial-gradient(circle at 78% 18%, rgba(244,143,177,.32), transparent 30%),
    radial-gradient(circle at 18% 10%, rgba(213,124,255,.40), transparent 34%),
    linear-gradient(135deg, #140018 0%, #3a074f 40%, #7a1ca5 100%);
  padding: 82px 0 78px;
}

.pbl-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -130px -10%;
  height: 220px;
  background: #fff;
  transform: rotate(-2deg);
}

.pbl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 44px;
  align-items: center;
}

.pbl-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pbl-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -2.6px;
  margin: 0 0 20px;
}

.pbl-hero p {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 670px;
  color: rgba(255,255,255,.9);
  margin: 0 0 28px;
}

.pbl-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.pbl-hero-logo {
  background: rgba(255,255,255,.94);
  padding: 26px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  transform: rotate(1.5deg);
}

.pbl-hero-logo img { display: block; border-radius: 18px; }

.pbl-section {
  padding: 82px 0;
}

.pbl-section.soft {
  background: var(--pbl-soft);
}

.pbl-section.dark {
  background: var(--pbl-black);
  color: var(--pbl-white);
}

.pbl-section-title {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.pbl-section-title h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.8px;
}

.pbl-section-title p {
  margin: 0;
  color: var(--pbl-gray);
  font-size: 18px;
}

.dark .pbl-section-title p { color: rgba(255,255,255,.75); }

.pbl-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pbl-card {
  background: var(--pbl-white);
  border: 1px solid rgba(106,27,154,.10);
  border-radius: var(--pbl-radius);
  padding: 30px;
  box-shadow: var(--pbl-shadow);
}

.pbl-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--pbl-purple-dark);
}

.pbl-card p { margin: 0 0 18px; color: var(--pbl-gray); }

.pbl-card ul { padding-left: 20px; margin: 0; color: var(--pbl-gray); }

.pbl-number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--pbl-purple), var(--pbl-purple-bright));
}

.pbl-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.pbl-panel {
  background: #fff;
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--pbl-shadow);
  border: 1px solid rgba(106,27,154,.10);
}

.pbl-panel h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -1.6px;
}

.pbl-panel p { color: var(--pbl-gray); }

.pbl-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.pbl-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
}

.pbl-check:before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pbl-purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.pbl-band {
  background: linear-gradient(135deg, var(--pbl-purple-dark), var(--pbl-purple-bright));
  color: #fff;
  border-radius: 34px;
  padding: 44px;
  box-shadow: var(--pbl-shadow);
}

.pbl-band h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  margin: 0 0 14px;
}

.pbl-band p {
  font-size: 19px;
  color: rgba(255,255,255,.88);
  max-width: 780px;
}

.pbl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.pbl-stat {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px;
  padding: 24px;
}

.pbl-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.pbl-testimonial {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--pbl-purple-dark);
}

.pbl-page-header {
  background: linear-gradient(135deg, var(--pbl-purple-dark), var(--pbl-purple));
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.pbl-page-header h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.pbl-content {
  width: min(900px, calc(100% - 40px));
  margin: 70px auto;
}

.pbl-content h1, .pbl-content h2, .pbl-content h3 {
  color: var(--pbl-purple-dark);
  line-height: 1.1;
}

.pbl-footer {
  background: #0b0b0b;
  color: rgba(255,255,255,.78);
  padding: 52px 0 28px;
}

.pbl-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 30px;
}

.pbl-footer h3 { color: #fff; margin-top: 0; }

.pbl-footer a { color: rgba(255,255,255,.85); text-decoration: none; display: block; margin: 8px 0; }

.pbl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 32px;
  padding-top: 22px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .pbl-hero-grid, .pbl-split, .pbl-footer-grid { grid-template-columns: 1fr; }
  .pbl-card-grid, .pbl-stats { grid-template-columns: 1fr; }
  .pbl-menu { display: none; }
  .pbl-brand img { width: 150px; }
  .pbl-hero { padding-top: 52px; }
}
