/*
Theme Name: Zendip LLC
Theme URI: https://zendip.org
Author: Zendip LLC
Author URI: https://zendip.org
Description: Premium enterprise corporate theme for Zendip LLC — global business formation, technology, trade, and consulting. Stripe-readiness prepared with all legal pages built in.
Version: 1.8.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
Text Domain: zendip
Tags: business, corporate, consulting, portfolio, one-page, custom-colors, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* =========================================================
   ZENDIP GROUP — DESIGN TOKENS
   ========================================================= */
:root {
  --c-navy: #0A1F44;
  --c-navy-deep: #061633;
  --c-royal: #1E3A8A;
  --c-gold: #C8A24B;
  --c-gold-deep: #B08A35;
  --c-gold-light: #E5C77B;
  --c-slate: #4A5568;
  --c-slate-light: #6B7689;
  --c-silver: #B8C0CC;
  --c-light: #F4F6FA;
  --c-light-2: #EDF0F5;
  --c-white: #FFFFFF;
  --c-border: #E2E6ED;

  --shadow-sm: 0 4px 12px rgba(10,31,68,0.06);
  --shadow-card: 0 12px 40px rgba(10,31,68,0.08);
  --shadow-card-hover: 0 24px 60px rgba(10,31,68,0.14);
  --shadow-deep: 0 32px 80px rgba(10,31,68,0.18);

  --radius-btn: 4px;
  --radius-card: 12px;
  --radius-glass: 24px;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --container: 1280px;
  --container-wide: 1440px;
  --section-y: 120px;
  --section-y-mobile: 64px;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #1A2235;
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--c-navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 1em; color: #2A3346; }

::selection { background: var(--c-gold); color: var(--c-navy); }

/* =========================================================
   LAYOUT
   ========================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-y) 0; }
.section-light { background: var(--c-light); }
.section-navy { background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-royal) 100%); color: var(--c-white); position: relative; overflow: hidden; }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--c-white); }
.section-navy p { color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 16px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--c-gold); color: var(--c-navy); }
.btn-primary:hover { background: var(--c-gold-deep); color: var(--c-navy); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,162,75,0.3); }
.btn-secondary { background: transparent; color: var(--c-navy); border-color: var(--c-navy); }
.btn-secondary:hover { background: var(--c-navy); color: var(--c-white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: var(--c-white); color: var(--c-navy); border-color: var(--c-white); }
.btn-arrow::after { content: "→"; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(10,31,68,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.site-header.solid {
  background: var(--c-navy);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo .dot { color: var(--c-gold); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; }
.main-nav a {
  color: var(--c-white);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--c-gold);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after { width: 100%; }
.main-nav li.has-submenu { position: relative; }
.main-nav .submenu {
  position: absolute;
  top: 100%; left: -20px;
  background: var(--c-white);
  min-width: 280px;
  padding: 16px 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  border-top: 3px solid var(--c-gold);
}
.main-nav li.has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .submenu a {
  color: var(--c-navy);
  display: block;
  padding: 10px 24px;
  font-size: 14px;
}
.main-nav .submenu a::after { display: none; }
.main-nav .submenu a:hover { background: var(--c-light); color: var(--c-gold); }

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--c-white);
  transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-main { padding-top: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 50%, var(--c-royal) 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200,162,75,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(30,58,138,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' opacity='0.06'%3E%3Cg fill='none' stroke='%23C8A24B' stroke-width='1'%3E%3Ccircle cx='600' cy='300' r='100'/%3E%3Ccircle cx='600' cy='300' r='200'/%3E%3Ccircle cx='600' cy='300' r='300'/%3E%3Cpath d='M0 300 L1200 300 M600 0 L600 600'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); color: var(--c-white); margin-bottom: 24px; }
.hero h1 .accent { color: var(--c-gold); font-style: italic; }
.hero .lead { font-size: 1.25rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 640px; line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(200,162,75,0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-trust span::before { content: "■"; color: var(--c-gold); margin-right: 10px; font-size: 8px; vertical-align: middle; }

.hero-glass {
  background: rgba(10,31,68,0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200,162,75,0.25);
  border-radius: var(--radius-glass);
  padding: 40px;
  box-shadow: var(--shadow-deep);
}
.hero-glass h3 { color: var(--c-gold); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; }
.hero-glass .stat { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-glass .stat:last-child { border-bottom: 0; }
.hero-glass .stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--c-gold); font-weight: 700; }
.hero-glass .stat-label { font-size: 14px; color: rgba(255,255,255,0.8); }

/* =========================================================
   PAGE HERO (smaller hero for inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 50%, var(--c-royal) 100%);
  color: var(--c-white);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(200,162,75,0.12) 0%, transparent 50%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 860px; }
.page-hero h1 { color: var(--c-white); }
.page-hero .lead { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-top: 16px; }
.breadcrumb { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.breadcrumb a { color: var(--c-gold); }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--c-slate); font-size: 1.1rem; }

/* =========================================================
   GRIDS / CARDS
   ========================================================= */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--c-gold); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--c-light);
  color: var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.card:hover .card-icon { background: var(--c-gold); color: var(--c-white); }
.card h3 { color: var(--c-navy); margin-bottom: 12px; }
.card p { color: var(--c-slate); margin-bottom: 16px; font-size: 15px; }
.card .card-link { color: var(--c-navy); font-weight: 600; font-size: 14px; }
.card .card-link::after { content: " →"; color: var(--c-gold); transition: transform var(--transition); display: inline-block; }
.card:hover .card-link::after { transform: translateX(4px); }
.card-numbered::before {
  content: attr(data-num);
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-gold);
  font-weight: 700;
  opacity: 0.5;
}

/* Companies cards (5-up) */
.company-card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-gold);
  transition: all var(--transition);
}
.company-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.company-card h3 { font-size: 1.1rem; color: var(--c-navy); margin-bottom: 8px; }
.company-card p { font-size: 14px; color: var(--c-slate); margin: 0 0 16px; }
.company-card .card-link { font-size: 13px; }

/* Why-choose 6 tile */
.why-tile { padding: 32px; background: var(--c-white); border-radius: var(--radius-card); border: 1px solid var(--c-border); transition: all var(--transition); }
.why-tile:hover { border-color: var(--c-gold); box-shadow: var(--shadow-card); }
.why-tile h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-tile p { font-size: 14px; color: var(--c-slate); margin: 0; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-navy);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-top-color: var(--c-gold); transform: scale(1.03); box-shadow: var(--shadow-card-hover); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card .badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 2.5rem; color: var(--c-gold); font-weight: 700; line-height: 1; margin: 16px 0; }
.pricing-price small { font-size: 0.85rem; color: var(--c-slate); font-weight: 400; font-family: var(--font-body); }
.pricing-tagline { color: var(--c-slate); font-size: 14px; font-style: italic; margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin: 0 0 32px; padding: 0; flex: 1; }
.pricing-card ul li { padding: 8px 0; font-size: 14px; color: #2A3346; padding-left: 28px; position: relative; }
.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--c-gold);
  font-weight: 700;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* =========================================================
   FOUNDER MESSAGE
   ========================================================= */
.founder-block { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: center; }
.founder-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-royal) 100%);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.founder-photo::after {
  content: "PD";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(200,162,75,0.5);
  font-weight: 700;
}
.founder-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--c-navy);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--c-gold);
}
.founder-name { font-weight: 700; color: var(--c-navy); }
.founder-title { color: var(--c-slate); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }

/* =========================================================
   GLOBAL PRESENCE
   ========================================================= */
.presence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.presence-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,162,75,0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(12px);
}
.presence-card .flag { font-size: 2rem; margin-bottom: 12px; color: var(--c-gold); font-family: var(--font-display); }
.presence-card h3 { color: var(--c-white); font-size: 1.1rem; margin-bottom: 8px; }
.presence-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }

/* =========================================================
   COMPLIANCE CALLOUT
   ========================================================= */
.compliance-box {
  background: var(--c-light);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius-card);
  padding: 32px 40px;
  max-width: 920px;
  margin: 0 auto;
}
.compliance-box h3 { color: var(--c-navy); margin-bottom: 12px; }
.compliance-box p { color: var(--c-slate); margin: 0; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
  color: var(--c-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,162,75,0.15) 0%, transparent 60%);
}
.cta-band-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 32px; }
.cta-band h2 { color: var(--c-white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }

/* =========================================================
   PROCESS / TIMELINE
   ========================================================= */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding: 24px 0; }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.process-step h4 { color: var(--c-navy); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--c-slate); margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 48px;
  border-radius: var(--radius-card);
  height: fit-content;
}
.contact-info h3 { color: var(--c-white); }
.contact-info .info-item { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info .info-item:last-child { border: 0; }
.contact-info .label { color: var(--c-gold); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info .value { color: var(--c-white); font-size: 15px; }
.contact-info .value a { color: var(--c-white); }
.contact-info .value a:hover { color: var(--c-gold); }

.contact-form { background: var(--c-white); padding: 48px; border-radius: var(--radius-card); box-shadow: var(--shadow-card); border: 1px solid var(--c-border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--c-navy); margin-bottom: 8px; letter-spacing: 0.05em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  color: #1A2235;
  background: var(--c-white);
  transition: all var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(200,162,75,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-consent { font-size: 13px; color: var(--c-slate); margin: 16px 0 24px; display: flex; gap: 10px; align-items: flex-start; }
.form-consent input { margin-top: 4px; }
.form-msg { padding: 14px 16px; border-radius: var(--radius-btn); margin-top: 16px; font-size: 14px; }
.form-msg.success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.form-msg.error { background: #FFEBEE; color: #B71C1C; border: 1px solid #EF9A9A; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-page { padding: 60px 0 80px; }
.legal-page .container { max-width: 900px; }
.legal-meta { color: var(--c-slate); font-size: 14px; padding-bottom: 24px; margin-bottom: 32px; border-bottom: 1px solid var(--c-border); }
.legal-toc { background: var(--c-light); padding: 24px 32px; border-radius: var(--radius-card); margin-bottom: 48px; border-left: 3px solid var(--c-gold); }
.legal-toc h3 { font-size: 1rem; margin-bottom: 12px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
.legal-toc li { padding: 6px 0; font-size: 14px; }
.legal-toc a { color: var(--c-navy); }
.legal-toc a:hover { color: var(--c-gold); }
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-size: 1.5rem; padding-bottom: 8px; border-bottom: 2px solid var(--c-gold); display: inline-block; margin-bottom: 16px; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.case-card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-deep) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.case-card:hover::before { transform: scaleX(1); }
.case-tag { display: inline-block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-gold); font-weight: 700; margin-bottom: 12px; }
.case-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.case-card .outcome { color: var(--c-slate); font-size: 15px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-gold) 50%, transparent 100%);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer-col h4 {
  color: var(--c-gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col .site-logo { color: var(--c-white); font-size: 26px; margin-bottom: 16px; }
.footer-col p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul a { color: rgba(255,255,255,0.75); font-size: 14px; }
.footer-col ul a:hover { color: var(--c-gold); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.footer-trust .badge { padding: 6px 12px; border: 1px solid rgba(200,162,75,0.4); border-radius: 4px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-gold); }

.footer-legal-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer-legal-bar a { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-legal-bar a:hover { color: var(--c-gold); }
.footer-legal-bar .sep { color: rgba(255,255,255,0.3); }

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.6;
}
.footer-copyright .disclaimer { max-width: 900px; margin: 8px auto 0; font-size: 11px; }

/* =========================================================
   FLOATING MOBILE CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  z-index: 90;
  text-align: center;
}
.mobile-cta .btn { width: 100%; justify-content: center; box-shadow: var(--shadow-deep); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .legal-toc ul { columns: 1; }
}

@media (max-width: 768px) {
  :root { --section-y: var(--section-y-mobile); }
  .container { padding: 0 20px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--c-navy);
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px;
    z-index: 99;
  }
  .main-nav.open ul { flex-direction: column; gap: 8px; width: 100%; }
  .main-nav.open a { font-size: 22px; padding: 16px 0; display: block; }
  .main-nav.open .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0 0 0 16px; border: 0; }
  .main-nav.open .submenu a { color: rgba(255,255,255,0.7); font-size: 16px; padding: 8px 0; }
  .mobile-toggle { display: flex; }
  .header-cta { display: none; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2.25rem; }
  .hero .lead { font-size: 1.05rem; }
  .hero-glass { padding: 28px; }
  .hero-trust { gap: 16px 24px; font-size: 11px; }
  .page-hero { padding: 140px 0 60px; }
  .pricing-card.featured { transform: none; }
  .contact-info, .contact-form { padding: 32px 24px; }
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 80px; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .site-header, .site-footer, .mobile-cta, .cta-band { display: none; }
  body { color: #000; }
}

/* =========================================================
   WORDPRESS CORE CLASSES
   ========================================================= */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignwide, .alignfull { width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--c-slate); text-align: center; margin-top: 8px; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sticky { display: block; }
.bypostauthor { display: block; }


/* ============================================================
 * Zendip Fixes v1.1 — appended overrides
 * Issue 1 (logo sizing) + Issue 2 (CTA stacking) + legal bar
 * ============================================================ */
.site-logo img,
.custom-logo,
.custom-logo-link img,
header .site-title img,
.site-header img.logo,
.main-header .logo img {
	max-width: 220px !important;
	height: auto !important;
	width: auto !important;
	object-fit: contain !important;
	display: block;
}

header.site-header,
.site-header,
.main-header,
#site-header,
header#masthead {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 20px;
	box-sizing: border-box;
}

.site-header .site-logo,
.site-header .custom-logo-link,
.main-header .logo { margin-right: 16px; }

.site-header .menu-toggle,
.site-header #mobile-toggle,
.main-header .menu-toggle,
.mobile-menu-button { margin-left: 16px; }

.hero,
.hero-section,
.page-hero,
.site-hero,
section.hero { padding-top: 90px; }

.hero img.logo,
.hero-section img.logo,
.hero .site-logo img,
.hero-section .custom-logo {
	max-width: 200px !important;
	height: auto !important;
	margin: 0 auto 16px;
}

.hero-buttons,
.hero-cta,
.hero-actions,
.hero .buttons,
.hero-section .cta-group {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
}

@media (max-width: 768px) {
	.site-logo img,
	.custom-logo,
	.custom-logo-link img,
	header .site-title img,
	.site-header img.logo,
	.main-header .logo img { max-width: 160px !important; }

	header.site-header,
	.site-header,
	.main-header,
	#site-header,
	header#masthead {
		min-height: 72px;
		padding: 12px 20px;
	}

	.hero,
	.hero-section,
	.page-hero,
	.site-hero,
	section.hero { padding-top: 90px; }

	.hero img.logo,
	.hero-section img.logo,
	.hero .site-logo img,
	.hero-section .custom-logo { max-width: 140px !important; }

	.hero-buttons,
	.hero-cta,
	.hero-actions,
	.hero .buttons,
	.hero-section .cta-group {
		flex-direction: column;
		width: 100%;
		gap: 14px;
	}

	.hero-buttons a,
	.hero-buttons button,
	.hero-cta a,
	.hero-cta button,
	.hero-actions .btn,
	.hero .buttons a,
	.hero-section .cta-group a {
		width: 100%;
		max-width: 360px;
		margin: 0 auto !important;
		text-align: center;
		display: block;
		box-sizing: border-box;
	}

	.hero-buttons a[href*="contact"]:nth-of-type(n+3),
	.hero-cta a[href*="contact"]:nth-of-type(n+3) {
		display: none !important;
	}
}

/* ============================================================
 * Final nav visibility fix — dark menu text on white header
 * ============================================================ */
body.zendip-fixes-active .site-header .main-nav > ul > li > a,
body.zendip-fixes-active header.site-header .main-nav > ul > li > a,
body.zendip-fixes-active .main-header .main-nav > ul > li > a,
body.zendip-fixes-active #site-header .main-nav > ul > li > a,
body.zendip-fixes-active header#masthead .main-nav > ul > li > a,
.site-header[style*="background"] .main-nav > ul > li > a {
  color: var(--c-navy, #0A1F44) !important;
}
body.zendip-fixes-active .site-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active header.site-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active .main-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active #site-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active header#masthead .main-nav > ul > li > a:hover {
  color: var(--c-gold, #C8A24B) !important;
}
@media (max-width: 768px) {
  body.zendip-fixes-active .site-header .main-nav.open a,
  body.zendip-fixes-active header.site-header .main-nav.open a {
    color: #FFFFFF !important;
  }
  body.zendip-fixes-active .site-header .main-nav.open .submenu a,
  body.zendip-fixes-active header.site-header .main-nav.open .submenu a {
    color: rgba(255,255,255,0.78) !important;
  }
}

/* ============================================================
 * Final mobile menu fix — keep dropdown below header, no hero overlap
 * ============================================================ */
@media (max-width: 768px) {
  body.zendip-fixes-active .site-header,
  body.zendip-fixes-active header.site-header {
    z-index: 1000 !important;
  }

  body.zendip-fixes-active .site-header .mobile-toggle span,
  body.zendip-fixes-active header.site-header .mobile-toggle span {
    background: var(--c-navy, #0A1F44) !important;
  }

  body.zendip-fixes-active .site-header .main-nav.open,
  body.zendip-fixes-active header.site-header .main-nav.open,
  .site-header .main-nav.open,
  header.site-header .main-nav.open {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: auto !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    background: var(--c-navy, #0A1F44) !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 18px 32px 28px !important;
    z-index: 999 !important;
  }

  body.zendip-fixes-active .site-header .main-nav.open > ul,
  body.zendip-fixes-active header.site-header .main-nav.open > ul,
  .site-header .main-nav.open > ul,
  header.site-header .main-nav.open > ul {
    gap: 0 !important;
  }

  body.zendip-fixes-active .site-header .main-nav.open > ul > li > a,
  body.zendip-fixes-active header.site-header .main-nav.open > ul > li > a,
  .site-header .main-nav.open > ul > li > a,
  header.site-header .main-nav.open > ul > li > a {
    color: #FFFFFF !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    padding: 12px 0 !important;
  }

  body.zendip-fixes-active .site-header .main-nav.open .submenu,
  body.zendip-fixes-active header.site-header .main-nav.open .submenu,
  .site-header .main-nav.open .submenu,
  header.site-header .main-nav.open .submenu {
    display: none !important;
  }
}

/* ============================================================
 * FINAL MOBILE HEADER/MENU REPAIR v1.8
 * Scope: mobile only. Keeps desktop untouched.
 * Fixes white header hamburger visibility and stable submenu layout.
 * ============================================================ */
@media (max-width: 768px) {
  html body .site-header,
  html body header.site-header,
  html body #site-header {
    background: #FFFFFF !important;
    min-height: 72px !important;
    max-height: none !important;
    height: auto !important;
    padding: 8px 16px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
    box-shadow: 0 1px 0 rgba(10,31,68,0.08) !important;
  }

  html body .site-header .container-wide,
  html body header.site-header .container-wide,
  html body #site-header .container-wide {
    width: 100% !important;
  }

  html body .site-header .header-inner,
  html body header.site-header .header-inner,
  html body #site-header .header-inner {
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  html body .site-header .site-logo,
  html body .site-header .custom-logo-link,
  html body header.site-header .site-logo,
  html body header.site-header .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    color: #0A1F44 !important;
    margin: 0 !important;
    flex: 0 1 auto !important;
    max-width: calc(100% - 56px) !important;
  }

  html body .site-header .custom-logo,
  html body .site-header .custom-logo-link img,
  html body header.site-header .custom-logo,
  html body header.site-header .custom-logo-link img {
    max-width: 128px !important;
    max-height: 52px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  html body .site-header .mobile-toggle,
  html body header.site-header .mobile-toggle,
  html body #site-header .mobile-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    padding: 10px !important;
    margin-left: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 10002 !important;
  }

  html body .site-header .mobile-toggle span,
  html body header.site-header .mobile-toggle span,
  html body #site-header .mobile-toggle span {
    display: block !important;
    width: 26px !important;
    height: 2px !important;
    background: #0A1F44 !important;
    opacity: 1 !important;
    border-radius: 2px !important;
  }

  html body .site-header .mobile-toggle.active span,
  html body header.site-header .mobile-toggle.active span,
  html body #site-header .mobile-toggle.active span {
    background: #0A1F44 !important;
  }

  html body .site-header .header-cta,
  html body header.site-header .header-cta { display: none !important; }

  html body .site-header .main-nav,
  html body header.site-header .main-nav,
  html body #site-header .main-nav {
    display: none !important;
  }

  html body .site-header .main-nav.open,
  html body header.site-header .main-nav.open,
  html body #site-header .main-nav.open {
    display: block !important;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 72px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: #0A1F44 !important;
    padding: 14px 24px 22px !important;
    z-index: 10001 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22) !important;
  }

  html body .site-header .main-nav.open > ul,
  html body header.site-header .main-nav.open > ul,
  html body #site-header .main-nav.open > ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  html body .site-header .main-nav.open li,
  html body header.site-header .main-nav.open li,
  html body #site-header .main-nav.open li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
  }

  html body .site-header .main-nav.open > ul > li > a,
  html body header.site-header .main-nav.open > ul > li > a,
  html body #site-header .main-nav.open > ul > li > a {
    color: #FFFFFF !important;
    display: block !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
    padding: 11px 0 !important;
    text-decoration: none !important;
  }

  html body .site-header .main-nav.open a::after,
  html body header.site-header .main-nav.open a::after,
  html body #site-header .main-nav.open a::after { display: none !important; }

  html body .site-header .main-nav.open .submenu,
  html body header.site-header .main-nav.open .submenu,
  html body #site-header .main-nav.open .submenu {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(255,255,255,0.06) !important;
    border: 0 !important;
    border-left: 2px solid #C8A24B !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 2px 0 8px !important;
    padding: 6px 0 6px 14px !important;
  }

  html body .site-header .main-nav.open .submenu a,
  html body header.site-header .main-nav.open .submenu a,
  html body #site-header .main-nav.open .submenu a {
    color: rgba(255,255,255,0.84) !important;
    display: block !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    padding: 7px 0 !important;
    background: transparent !important;
  }

  html body .site-main,
  html body main.site-main {
    padding-top: 0 !important;
  }
}

/* ============================================================
 * FINAL PREMIUM HEADER COLOR FIX v1.9
 * Scope: header/nav only. Keeps content, policies, addresses, and layout untouched.
 * Desktop + mobile: replaces flat white header with premium navy gradient.
 * ============================================================ */
html body .site-header,
html body header.site-header,
html body #site-header,
html body .main-header,
html body header#masthead {
  background: linear-gradient(135deg, #071a36 0%, #0A1F44 52%, #142F5C 100%) !important;
  background-color: #0A1F44 !important;
  border-bottom: 1px solid rgba(200,162,75,0.22) !important;
  box-shadow: 0 8px 28px rgba(6,22,51,0.18) !important;
  -webkit-backdrop-filter: saturate(140%) blur(10px) !important;
  backdrop-filter: saturate(140%) blur(10px) !important;
}

html body .site-header .site-logo,
html body .site-header .custom-logo-link,
html body header.site-header .site-logo,
html body header.site-header .custom-logo-link,
html body #site-header .site-logo,
html body #site-header .custom-logo-link {
  color: #FFFFFF !important;
}

html body .site-header .main-nav > ul > li > a,
html body header.site-header .main-nav > ul > li > a,
html body #site-header .main-nav > ul > li > a,
html body .main-header .main-nav > ul > li > a,
html body header#masthead .main-nav > ul > li > a,
body.zendip-fixes-active .site-header .main-nav > ul > li > a,
body.zendip-fixes-active header.site-header .main-nav > ul > li > a,
body.zendip-fixes-active #site-header .main-nav > ul > li > a,
body.zendip-fixes-active .main-header .main-nav > ul > li > a,
body.zendip-fixes-active header#masthead .main-nav > ul > li > a {
  color: #FFFFFF !important;
}

html body .site-header .main-nav > ul > li > a:hover,
html body header.site-header .main-nav > ul > li > a:hover,
html body #site-header .main-nav > ul > li > a:hover,
html body .main-header .main-nav > ul > li > a:hover,
html body header#masthead .main-nav > ul > li > a:hover,
body.zendip-fixes-active .site-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active header.site-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active #site-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active .main-header .main-nav > ul > li > a:hover,
body.zendip-fixes-active header#masthead .main-nav > ul > li > a:hover {
  color: #C8A24B !important;
}

html body .site-header .mobile-toggle span,
html body header.site-header .mobile-toggle span,
html body #site-header .mobile-toggle span,
body.zendip-fixes-active .site-header .mobile-toggle span,
body.zendip-fixes-active header.site-header .mobile-toggle span,
body.zendip-fixes-active #site-header .mobile-toggle span {
  background: #FFFFFF !important;
}

html body .site-header .mobile-toggle.active span,
html body header.site-header .mobile-toggle.active span,
html body #site-header .mobile-toggle.active span,
body.zendip-fixes-active .site-header .mobile-toggle.active span,
body.zendip-fixes-active header.site-header .mobile-toggle.active span,
body.zendip-fixes-active #site-header .mobile-toggle.active span {
  background: #FFFFFF !important;
}

html body .site-header .header-cta,
html body header.site-header .header-cta,
html body #site-header .header-cta {
  background: #C8A24B !important;
  color: #071A36 !important;
  border-color: #C8A24B !important;
}

html body .site-header .header-cta:hover,
html body header.site-header .header-cta:hover,
html body #site-header .header-cta:hover {
  background: #E5C77B !important;
  color: #071A36 !important;
}

@media (max-width: 768px) {
  html body .site-header,
  html body header.site-header,
  html body #site-header,
  body.zendip-fixes-active .site-header,
  body.zendip-fixes-active header.site-header,
  body.zendip-fixes-active #site-header {
    background: linear-gradient(135deg, #071A36 0%, #0A1F44 52%, #142F5C 100%) !important;
    background-color: #0A1F44 !important;
    border-bottom: 1px solid rgba(200,162,75,0.22) !important;
    box-shadow: 0 8px 24px rgba(6,22,51,0.20) !important;
  }

  html body .site-header .site-logo,
  html body .site-header .custom-logo-link,
  html body header.site-header .site-logo,
  html body header.site-header .custom-logo-link,
  html body #site-header .site-logo,
  html body #site-header .custom-logo-link {
    color: #FFFFFF !important;
  }

  html body .site-header .main-nav.open,
  html body header.site-header .main-nav.open,
  html body #site-header .main-nav.open,
  body.zendip-fixes-active .site-header .main-nav.open,
  body.zendip-fixes-active header.site-header .main-nav.open,
  body.zendip-fixes-active #site-header .main-nav.open {
    background: linear-gradient(180deg, #071A36 0%, #0A1F44 100%) !important;
    border-top: 1px solid rgba(200,162,75,0.22) !important;
  }
}
