/* ===================================================
   pSEO v2 — incometaxnotices.com
   Matches homepage design exactly:
   Navy #0a1f44 + Teal #0d9488 + WhatsApp #25D366
   Serif headings (Playfair Display) + Inter body
   =================================================== */

:root {
  /* Brand colors — extracted from homepage */
  --navy:        #0a1f44;
  --navy-dark:   #07172e;
  --navy-light:  #1a3563;
  --teal:        #0d9488;
  --teal-light:  #14b8a6;
  --teal-dark:   #0f766e;
  --wa-green:    #25d366;
  --wa-green-d:  #1ea951;
  --btn-blue:    #2945e0;
  --btn-blue-d:  #1d35b5;
  --phone-pink:  #e3475a;

  /* Surfaces */
  --bg-page:     #ffffff;
  --bg-soft:     #eef2fa;       /* lavender-blue used in sections */
  --bg-warning:  #fff5d6;       /* yellow deadline pill */
  --warning-tx:  #806000;
  --card-bg:     #ffffff;
  --footer-bg:   #0a1d3a;       /* slightly darker than navy */

  /* Text */
  --text:        #1a2440;
  --text-muted:  #5b6680;
  --text-light:  #8a93a8;

  /* Borders / dividers */
  --border:      #e5e9f2;
  --border-light:#f0f2f8;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(10, 31, 68, 0.04);
  --shadow:      0 4px 14px rgba(10, 31, 68, 0.08);
  --shadow-md:   0 8px 24px rgba(10, 31, 68, 0.10);
  --shadow-lg:   0 16px 40px rgba(10, 31, 68, 0.14);

  /* Radii */
  --r-sm:        6px;
  --r:           10px;
  --r-md:        14px;
  --r-lg:        20px;

  /* Type */
  --font-serif:  'Playfair Display', 'Lora', Georgia, serif;
  --font-sans:   'Inter', -apple-system, system-ui, sans-serif;

  --transition:  0.2s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.pseo-page {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal); }
img { max-width: 100%; height: auto; display: block; }
strong, b { font-weight: 700; color: var(--text); }

/* =====================================================
   LAYOUT
   ===================================================== */
.pseo-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   TICKER / DEADLINE BAR (top blue strip)
   ===================================================== */
.pseo-ticker {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.pseo-ticker-inner {
  display: inline-flex;
  gap: 60px;
  align-items: center;
  animation: tickerSlide 50s linear infinite;
  padding-left: 100%;
}
.pseo-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pseo-ticker-sep { color: rgba(255,255,255,0.4); font-size: 8px; }
@keyframes tickerSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.pseo-header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.pseo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pseo-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pseo-logo-mark {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
}
.pseo-logo-text { display: flex; flex-direction: column; }
.pseo-logo-text strong {
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.pseo-logo-text span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.pseo-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pseo-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.pseo-nav-phone::before { content: '📞'; color: var(--phone-pink); font-size: 14px; }
.pseo-nav-signin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--btn-blue);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.pseo-nav-signin:hover { background: var(--btn-blue-d); color: #fff !important; }
.pseo-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--wa-green);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.pseo-nav-wa:hover { background: var(--wa-green-d); color: #fff !important; }

/* =====================================================
   HERO — soft lavender bg with serif H1
   ===================================================== */
.pseo-hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 56px 0 80px;
  position: relative;
}
.pseo-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.pseo-hero-left {}
.pseo-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-warning);
  color: var(--warning-tx);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}
.pseo-hero-pill::before { content: '●'; color: #d97706; font-size: 10px; }
.pseo-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 8px;
}
.pseo-hero h1 .accent {
  color: var(--teal);
  display: inline-block;
}
.pseo-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 24px 0 28px;
  max-width: 540px;
}

/* Section code pills under hero */
.pseo-hero-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.pseo-hero-sec-pill {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg-soft);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #d8e0f0;
}

/* Stats row */
.pseo-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 560px;
}
.pseo-stat {
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.pseo-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  line-height: 1;
}
.pseo-stat-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* Hero right — lead form card */
.pseo-hero-form {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.pseo-hero-form-head {
  background: var(--navy);
  color: #fff;
  padding: 22px 26px;
}
.pseo-hero-form-head h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 4px;
}
.pseo-hero-form-head p {
  font-size: 13px;
  color: #b8c4dc;
}
.pseo-hero-form-body { padding: 24px 26px; }
.pseo-form-field { margin-bottom: 14px; }
.pseo-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.pseo-form-field input,
.pseo-form-field select,
.pseo-form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  background: #f8faff;
  transition: var(--transition);
}
.pseo-form-field input:focus,
.pseo-form-field select:focus,
.pseo-form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.pseo-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--wa-green);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.pseo-form-submit:hover { background: var(--wa-green-d); }
.pseo-form-foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.pseo-breadcrumb {
  background: #fff;
  font-size: 13px;
  padding: 12px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}
.pseo-breadcrumb .sep { margin: 0 8px; color: var(--text-light); }
.pseo-breadcrumb .current { color: var(--navy); font-weight: 500; }
.pseo-breadcrumb a { color: var(--text-muted); }
.pseo-breadcrumb a:hover { color: var(--teal); }

/* =====================================================
   MAIN — 2 column with sidebar
   ===================================================== */
.pseo-main {
  background: var(--bg-soft);
  padding: 60px 0 80px;
}
.pseo-main .pseo-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* =====================================================
   ARTICLE / CONTENT BLOCKS
   ===================================================== */
.pseo-article {
  background: #fff;
  padding: 48px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}

/* Section label (small caps teal) */
.pseo-sec-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}
.pseo-sec-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--teal);
  transform: translateY(-50%);
}

.pseo-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.pseo-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.pseo-section h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.pseo-section h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 12px;
}
.pseo-section p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text);
}
.pseo-section ul, .pseo-section ol {
  margin: 16px 0 16px 8px;
  padding-left: 24px;
}
.pseo-section li {
  margin-bottom: 12px;
  line-height: 1.7;
}
.pseo-lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
}

/* Scenarios list with teal checkmarks */
.pseo-scenarios {
  list-style: none;
  padding-left: 0;
}
.pseo-scenarios li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}
.pseo-scenarios li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
}
.pseo-scenarios li:last-child { border-bottom: none; }

/* Documents list */
.pseo-documents {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pseo-documents li {
  position: relative;
  padding: 14px 14px 14px 38px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  font-size: 14px;
  margin-bottom: 0;
}
.pseo-documents li::before {
  content: '📄';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* Process steps (numbered, navy with gradient circles) */
.pseo-process {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
}
.pseo-process li {
  counter-increment: step;
  position: relative;
  padding: 22px 22px 22px 80px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pseo-process li:hover {
  border-color: var(--teal);
  transform: translateX(4px);
}
.pseo-process li::before {
  content: '0' counter(step);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--btn-blue) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.pseo-process .step-header {
  margin-bottom: 4px;
}
.pseo-process .step-header strong {
  color: var(--navy);
  font-size: 16px;
}
.pseo-process .step-days {
  display: inline-block;
  color: var(--teal);
  font-weight: 600;
  font-size: 12px;
  margin-left: 6px;
}
.pseo-process .step-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Warning section (consequences) */
.pseo-section-warning {
  background: #fff5f5;
  border: 1px solid #fecaca;
  padding: 28px;
  border-radius: var(--r-md);
  border-left: 4px solid #dc2626;
}
.pseo-section-warning h2 { color: #b91c1c; }
.pseo-consequences {
  list-style: none;
  padding-left: 0;
}
.pseo-consequences li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 12px;
}
.pseo-consequences li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  top: 0;
  color: #dc2626;
  font-weight: 700;
}

/* Facts grid */
.pseo-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
}
.pseo-facts > div {
  background: var(--bg-soft);
  padding: 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-light);
}
.pseo-facts dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 6px;
  font-weight: 700;
}
.pseo-facts dd {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.4;
}

/* Why us cards grid */
.pseo-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.pseo-why-card {
  padding: 22px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
}
.pseo-why-card h4 {
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.pseo-why-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   FAQ — accordion style
   ===================================================== */
.pseo-faq-item {
  background: var(--bg-soft);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.pseo-faq-item[open] { background: #fff; box-shadow: var(--shadow); }
.pseo-faq-item summary {
  padding: 18px 56px 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
  position: relative;
}
.pseo-faq-item summary::-webkit-details-marker { display: none; }
.pseo-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}
.pseo-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.pseo-faq-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =====================================================
   CTA SECTION (closing, navy bg like homepage)
   ===================================================== */
.pseo-section-cta {
  background: var(--navy);
  color: #fff;
  padding: 40px;
  border-radius: var(--r-md);
  text-align: center;
  border: none !important;
}
.pseo-section-cta h2 { color: #fff !important; }
.pseo-section-cta p { color: #c8d3e8 !important; }
.pseo-section-cta strong { color: #fff !important; }
.pseo-section-cta a:not(.pseo-btn) {
  color: var(--teal-light);
  font-weight: 600;
}
.pseo-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.pseo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}
.pseo-btn-primary {
  background: var(--wa-green);
  color: #fff !important;
}
.pseo-btn-primary:hover {
  background: var(--wa-green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
}
.pseo-btn-secondary {
  background: var(--btn-blue);
  color: #fff !important;
}
.pseo-btn-secondary:hover {
  background: var(--btn-blue-d);
  transform: translateY(-2px);
}
.pseo-btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
}
.pseo-btn-outline:hover {
  background: var(--navy);
  color: #fff !important;
}
.pseo-btn-block { display: flex; width: 100%; }

/* =====================================================
   SIDEBAR
   ===================================================== */
.pseo-sidebar { position: sticky; top: 100px; }
.pseo-sidebar-block {
  background: #fff;
  padding: 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.pseo-sidebar-block h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}
.pseo-sidebar-block ul { list-style: none; padding: 0; }
.pseo-sidebar-block li {
  border-bottom: 1px solid var(--border-light);
}
.pseo-sidebar-block li:last-child { border-bottom: none; }
.pseo-sidebar-block li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 14px;
  color: var(--text);
}
.pseo-sidebar-block li a:hover { color: var(--teal); }
.pseo-sidebar-block li a::after {
  content: '→';
  color: var(--text-light);
  transition: var(--transition);
}
.pseo-sidebar-block li a:hover::after {
  color: var(--teal);
  transform: translateX(3px);
}

.pseo-sidebar-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.pseo-sidebar-cta h3 { color: #fff; }
.pseo-sidebar-cta p {
  color: #c8d3e8;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.pseo-sidebar-tel {
  margin-top: 14px;
  font-size: 14px;
  color: #c8d3e8;
}
.pseo-sidebar-tel a {
  color: #fff;
  font-weight: 700;
}
.pseo-sidebar-tel a:hover { color: var(--teal-light); }

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.pseo-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}
.pseo-whatsapp-float:hover {
  background: var(--wa-green-d);
  transform: scale(1.1);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* =====================================================
   FOOTER — expanded with all services + cities
   ===================================================== */
.pseo-footer {
  background: var(--footer-bg);
  color: #b8c4dc;
  padding: 64px 0 0;
}
.pseo-footer h3 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}
.pseo-footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.pseo-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.pseo-footer-brand p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.7;
}
.pseo-footer-brand .pseo-footer-positioning {
  display: inline-block;
  background: rgba(13, 148, 136, 0.15);
  color: var(--teal-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.pseo-footer-contact {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
}
.pseo-footer-contact a { color: #fff; font-weight: 500; }
.pseo-footer-contact a:hover { color: var(--teal-light); }

.pseo-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}
.pseo-footer li { font-size: 13px; line-height: 1.5; }
.pseo-footer a { color: #b8c4dc; }
.pseo-footer a:hover { color: var(--teal-light); }

/* Footer cities block — multi-column dense */
.pseo-footer-cities-block {
  background: rgba(255,255,255,0.02);
  padding: 32px 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pseo-footer-cities-block h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.pseo-footer-cities-grid {
  columns: 5;
  column-gap: 24px;
  font-size: 13px;
}
.pseo-footer-cities-grid a {
  display: block;
  padding: 5px 0;
  color: #94a3c4;
}
.pseo-footer-cities-grid a:hover { color: var(--teal-light); }

.pseo-footer-bottom {
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12.5px;
  margin-top: 16px;
}
.pseo-footer-bottom p {
  margin-bottom: 8px;
  opacity: 0.85;
}
.pseo-disclaimer {
  font-size: 11.5px;
  max-width: 900px;
  margin: 12px auto 0;
  opacity: 0.65;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .pseo-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pseo-hero-form { position: static; }
  .pseo-main .pseo-container { grid-template-columns: 1fr; }
  .pseo-sidebar { position: static; }
  .pseo-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pseo-footer-cities-grid { columns: 3; }
}
@media (max-width: 768px) {
  .pseo-article { padding: 28px 20px; }
  .pseo-section h2 { font-size: 24px; }
  .pseo-hero { padding: 36px 0 56px; }
  .pseo-hero h1 { font-size: 36px; }
  .pseo-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .pseo-nav-phone, .pseo-nav-signin { display: none; }
  .pseo-documents { grid-template-columns: 1fr; }
  .pseo-why-grid { grid-template-columns: 1fr; }
  .pseo-footer-grid { grid-template-columns: 1fr; }
  .pseo-footer-cities-grid { columns: 2; }
  .pseo-ticker { font-size: 11px; }
}
@media (max-width: 480px) {
  .pseo-container { padding: 0 16px; }
  .pseo-process li { padding: 20px 18px 20px 70px; }
  .pseo-process li::before { width: 38px; height: 38px; font-size: 14px; left: 18px; }
  .pseo-footer-cities-grid { columns: 1; }
}

/* =====================================================
   v3 — AEO + GEO ELEMENTS
   ===================================================== */

/* Author byline (after hero subtitle) */
.pseo-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(13, 148, 136, 0.06);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-sm);
  margin: 24px 0 28px;
  max-width: 540px;
}
.pseo-byline-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--btn-blue) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.pseo-byline-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.3;
}
.pseo-byline-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Quick Answer box (AEO featured snippet target) */
.pseo-quick-answer-section { padding-bottom: 32px; }
.pseo-quick-answer {
  background: linear-gradient(135deg, #fff8e6 0%, #fef3c7 100%);
  border-left: 4px solid #d97706;
  padding: 20px 24px;
  border-radius: var(--r-md);
  position: relative;
}
.pseo-quick-answer-label {
  display: inline-block;
  background: #d97706;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.pseo-quick-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a3520;
  margin: 0;
  font-weight: 500;
}
.pseo-quick-answer p strong { color: #806000; }

/* Key Facts table (GEO LLM-extractable) */
.pseo-key-facts {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pseo-key-facts th, .pseo-key-facts td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  vertical-align: top;
}
.pseo-key-facts tr:nth-child(odd) { background: var(--bg-soft); }
.pseo-key-facts tr:nth-child(even) { background: #fff; }
.pseo-key-facts tr:last-child th,
.pseo-key-facts tr:last-child td { border-bottom: none; }
.pseo-key-facts th {
  color: var(--navy);
  font-weight: 600;
  width: 38%;
  white-space: nowrap;
}
.pseo-key-facts td { color: var(--text); }

/* Author bio (at end before CTA — E-E-A-T) */
.pseo-author-bio { padding-bottom: 32px; }
.pseo-author-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
}
.pseo-author-avatar-lg {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--btn-blue) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
}
.pseo-author-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 8px;
}
.pseo-author-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 8px;
  color: var(--text);
}
.pseo-author-card p:last-child { margin-bottom: 0; }
.pseo-author-card a { color: var(--teal); font-weight: 600; }

@media (max-width: 768px) {
  .pseo-key-facts th, .pseo-key-facts td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .pseo-key-facts th { width: 40%; }
  .pseo-author-card { flex-direction: column; text-align: center; }
  .pseo-author-avatar-lg { margin: 0 auto; }
}

/* Print */
@media print {
  .pseo-ticker, .pseo-nav, .pseo-sidebar, .pseo-whatsapp-float,
  .pseo-cta-buttons, .pseo-hero-form { display: none; }
  .pseo-main .pseo-container { grid-template-columns: 1fr; }
  .pseo-hero { background: white; }
}
/* ===================================================
   HUB PAGES — service cards, city cards grids
   Append to pseo.css
   =================================================== */

/* Cities grid (used on service hubs + cities index) */
.pseo-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 16px 0 8px;
}
.pseo-city-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}
.pseo-city-card:hover {
  background: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--navy);
}
.pseo-city-card-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.pseo-city-card-state {
  font-size: 12px;
  color: var(--text-muted);
}

/* Services grid (used on city hubs + services index) */
.pseo-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin: 16px 0 8px;
}
.pseo-service-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}
.pseo-service-card:hover {
  background: #fff;
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}
.pseo-service-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.pseo-service-card-body { flex: 1; }
.pseo-service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.3;
}
.pseo-service-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 10px;
}
.pseo-service-card-meta {
  display: block;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}

@media (max-width: 600px) {
  .pseo-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .pseo-services-grid { grid-template-columns: 1fr; }
}
