/*
Theme Name: eBizTag Clean V2
Theme URI: https://ebiztag.com
Author: eBizTag
Description: Clean coded theme for the eBizTag Business Growth System.
Version: 2.0
Text Domain: ebiztag-clean-v2
*/

/* =========================================================
   eBizTag Clean V2 — Premium Foundation
   Edit safely:
   - Colours live in :root
   - Reusable page sections below
   - Avoid one-off styling inside PHP templates
   ========================================================= */

:root {
  --cream: #f8f3ea;
  --cream-dark: #efe5d2;
  --white: #ffffff;

  --navy: #0f2742;
  --navy-2: #102f50;
  --navy-3: #081a2d;

  --gold: #c99a2e;
  --gold-light: #f3dfad;
  --gold-pale: #fff4d6;

  --teal: #1c9c91;
  --teal-pale: #e7f6f4;

  --text: #1f2933;
  --muted: #64748b;
  --border: #e5dbc8;

  --shadow-soft: 0 14px 35px rgba(15, 39, 66, 0.10);
  --shadow-card: 0 22px 55px rgba(15, 39, 66, 0.13);
  --shadow-dark: 0 24px 65px rgba(0, 0, 0, 0.22);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;

  --container: 1120px;
}

/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  margin-top: 0;
}

strong {
  color: inherit;
}

.ebz-container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ---------- Header ---------- */

.ebz-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.ebz-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ebz-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.ebz-logo-main {
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
}

.ebz-logo-sub {
  margin-top: 4px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.ebz-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.ebz-nav a {
  opacity: 0.88;
  transition: 0.18s ease;
}

.ebz-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ---------- Buttons ---------- */

.ebz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: 0.18s ease;
  line-height: 1.1;
}

.ebz-btn:hover {
  transform: translateY(-1px);
}

.ebz-btn-gold {
  background: linear-gradient(135deg, var(--gold), #e3bc5a);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(201, 154, 46, 0.28);
}

.ebz-btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 39, 66, 0.22);
}

.ebz-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.58);
}

.ebz-btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.ebz-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Sections ---------- */

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

.ebz-section-tight {
  padding: 56px 0;
}

.ebz-section-white {
  background: var(--white);
}

.ebz-section-cream {
  background: var(--cream);
}

.ebz-section-navy {
  background:
    radial-gradient(circle at top left, rgba(28, 156, 145, 0.20), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
}

.ebz-section-heading {
  max-width: 760px;
  margin: 0 0 34px;
}

.ebz-section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ebz-eyebrow,
.ebz-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(28, 156, 145, 0.12);
  color: var(--teal);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.ebz-section-navy .ebz-eyebrow,
.ebz-section-navy .ebz-pill,
.ebz-page-title .ebz-pill {
  background: rgba(243, 223, 173, 0.14);
  color: var(--gold-light);
}

.ebz-section-heading h2,
.ebz-card h2,
.ebz-card h3 {
  color: var(--navy);
}

.ebz-section-navy h2,
.ebz-section-navy h3 {
  color: var(--white);
}

.ebz-section-heading h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4.3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.ebz-section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.ebz-section-navy .ebz-section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- Hero / Page Title ---------- */

.ebz-page-title {
  padding: 88px 0 68px;
  background:
    radial-gradient(circle at 20% 12%, rgba(201, 154, 46, 0.24), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(28, 156, 145, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  overflow: hidden;
}

.ebz-page-title h1 {
  margin: 16px 0 16px;
  max-width: 890px;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.ebz-page-title p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.ebz-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: center;
}

.ebz-hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-dark);
}

.ebz-hero-panel h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--white);
}

.ebz-hero-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ebz-hero-list li {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

/* ---------- Cards / Grids ---------- */

.ebz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.ebz-card-premium {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.ebz-card-premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.ebz-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ebz-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ebz-card h2,
.ebz-card h3 {
  margin-top: 16px;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.ebz-card p {
  color: var(--muted);
}

.ebz-card .ebz-price,
.ebz-price {
  display: block;
  margin: 18px 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
}

/* ---------- Feature / Process Lists ---------- */

.ebz-feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.ebz-feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.ebz-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.ebz-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ebz-step-number {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* ---------- Pricing ---------- */

.ebz-pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.ebz-pricing-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.ebz-pricing-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -0.035em;
}

.ebz-pricing-card .ebz-price {
  font-size: 38px;
  margin: 18px 0 8px;
}

.ebz-price-small {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- CTA Band ---------- */

.ebz-cta-band {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 46, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-dark);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.ebz-cta-band h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.ebz-cta-band p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Footer ---------- */

.ebz-footer {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.76);
  padding: 38px 0;
  font-size: 14px;
}

.ebz-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.ebz-footer strong {
  color: var(--white);
}

/* ---------- Responsive ---------- */

@media (max-width: 940px) {
  .ebz-hero-grid,
  .ebz-grid-2,
  .ebz-grid-3 {
    grid-template-columns: 1fr;
  }

  .ebz-pricing-card.featured {
    transform: none;
  }

  .ebz-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .ebz-header-inner {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }

  .ebz-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .ebz-page-title {
    padding: 64px 0 52px;
  }

  .ebz-section {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .ebz-container {
    width: min(100% - 24px, var(--container));
  }

  .ebz-page-title h1 {
    font-size: 42px;
  }

  .ebz-card,
  .ebz-card-premium,
  .ebz-pricing-card,
  .ebz-hero-panel,
  .ebz-cta-band {
    padding: 24px;
  }

  .ebz-btn {
    width: 100%;
  }

  .ebz-btn-row {
    width: 100%;
  }
}
/* =========================================================
   eBizTag Clean V2 — Visual Component System
   Use these blocks to avoid text-only service pages.
   ========================================================= */

/* ---------- Visual Split Layout ---------- */

.ebz-visual-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.ebz-visual-panel {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 46, 0.18), transparent 32%),
    linear-gradient(145deg, #ffffff, #f7efe1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.ebz-visual-panel.dark {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 46, 0.18), transparent 30%),
    linear-gradient(145deg, var(--navy), var(--navy-3));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.ebz-visual-panel.dark h3,
.ebz-visual-panel.dark p {
  color: var(--white);
}

/* ---------- Icon Tiles ---------- */

.ebz-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ebz-icon-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.ebz-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--teal-pale);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.ebz-icon.gold {
  background: var(--gold-pale);
  color: var(--gold);
}

.ebz-icon.navy {
  background: rgba(15, 39, 66, 0.08);
  color: var(--navy);
}

.ebz-icon-tile h3 {
  margin: 0 0 8px;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.ebz-icon-tile p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Course / Training Visuals ---------- */

.ebz-course-stack {
  display: grid;
  gap: 14px;
}

.ebz-course-tile {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
}

.ebz-course-code {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.ebz-course-tile h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 18px;
}

.ebz-course-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ebz-certificate-card {
  margin-top: 18px;
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 22px;
  padding: 22px;
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.ebz-certificate-card h4 {
  margin: 0 0 8px;
  color: var(--white);
}

.ebz-certificate-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- Social Preview Visuals ---------- */

.ebz-social-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.ebz-social-preview + .ebz-social-preview {
  margin-top: 14px;
}

.ebz-social-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

.ebz-social-preview h4 {
  margin: 0 0 8px;
  color: var(--navy);
}

.ebz-social-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ebz-preview-bar {
  height: 9px;
  border-radius: 999px;
  background: var(--cream-dark);
  margin-top: 14px;
  overflow: hidden;
}

.ebz-preview-bar span {
  display: block;
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 999px;
}

/* ---------- Review / QR Visuals ---------- */

.ebz-review-flow {
  display: grid;
  gap: 14px;
}

.ebz-review-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.ebz-qr-box {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, var(--navy) 8px, transparent 8px),
    linear-gradient(var(--navy) 8px, transparent 8px),
    var(--white);
  background-size: 18px 18px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
  flex: 0 0 58px;
}

.ebz-review-step h4 {
  margin: 0 0 4px;
  color: var(--navy);
}

.ebz-review-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Placeholder Image Blocks ---------- */

.ebz-image-placeholder {
  min-height: 260px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 39, 66, 0.85), rgba(8, 26, 45, 0.92)),
    radial-gradient(circle at top right, rgba(201, 154, 46, 0.35), transparent 36%);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.ebz-image-placeholder h3 {
  margin: 0 0 8px;
  color: var(--white);
}

.ebz-image-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- CTA Button Alignment ---------- */

.ebz-cta-band .ebz-btn {
  min-width: 165px;
}

/* ---------- Responsive Visual Components ---------- */

@media (max-width: 940px) {
  .ebz-visual-split,
  .ebz-icon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ebz-course-tile,
  .ebz-review-step {
    flex-direction: column;
  }

  .ebz-cta-band .ebz-btn {
    min-width: 100%;
  }
}