/*
Theme Name: Timothy Backes
Theme URI: https://timothybackes.com
Author: Timothy Backes
Author URI: https://timothybackes.com
Description: Custom personal brand theme for Timothy Backes – Fractional SEO Consultant
Version: 1.0.0
License: Private
Text Domain: timothybackes
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg-dark:        #07090f;
  --bg-card:        #0d1120;
  --bg-card-hover:  #111827;
  --bg-section:     #f8fafc;
  --bg-section-alt: #eef2f7;

  --accent-sky:     #38bdf8;
  --accent-indigo:  #818cf8;
  --accent-teal:    #2dd4bf;
  --gradient-main:  linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  --gradient-hero:  linear-gradient(160deg, #07090f 0%, #0d1528 60%, #101a2e 100%);

  --text-light:     #f1f5f9;
  --text-muted:     #94a3b8;
  --text-dark:      #1e293b;
  --text-mid:       #475569;
  --border-dark:    rgba(255,255,255,0.07);
  --border-light:   rgba(0,0,0,0.08);

  --font-sans:      'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:   'Plus Jakarta Sans', 'Inter', sans-serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-pill:    999px;

  --shadow-card:    0 1px 3px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.25);
  --shadow-glow:    0 0 60px rgba(56,189,248,0.12);
  --transition:     all 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:      1200px;
  --section-pad:    96px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { max-width: 68ch; color: var(--text-muted); }
.dark-bg p { color: var(--text-muted); }
.light-bg p { color: var(--text-mid); }

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sky);
  margin-bottom: 1rem;
}
.light-bg .section-eyebrow { color: var(--accent-indigo); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm { padding: 64px 0; }

.dark-bg  { background: var(--bg-dark); }
.card-bg  { background: var(--bg-card); }
.light-bg { background: var(--bg-section); }
.alt-bg   { background: var(--bg-section-alt); }

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

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

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  :root { --section-pad: 64px; }
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 24px rgba(56,189,248,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56,189,248,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--accent-sky);
  color: var(--accent-sky);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.15);
}
.btn-outline-dark:hover {
  border-color: var(--accent-indigo);
  color: var(--accent-indigo);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(7,9,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.site-logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-sky);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  margin-left: 8px;
  padding: 9px 22px !important;
  background: var(--gradient-main) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gradient-main) !important;
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,17,32,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border-dark);
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; }
  .nav-cta { text-align: center; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}
.hero-mesh::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129,140,248,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-sky);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-sky);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 { margin-bottom: 24px; }
.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 58ch;
}
.hero .btn-group { margin-bottom: 56px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.6rem; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(56,189,248,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(56,189,248,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p  { font-size: 0.95rem; }

/* Light section cards */
.light-bg .card,
.alt-bg .card {
  background: #fff;
  border-color: var(--border-light);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.light-bg .card:hover,
.alt-bg .card:hover {
  border-color: rgba(129,140,248,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.light-bg .card h3,
.alt-bg .card h3 { color: var(--text-dark); }
.light-bg .card p,
.alt-bg .card p  { color: var(--text-mid); }
.light-bg .card-icon { background: rgba(129,140,248,0.1); }

/* ============================================================
   DIVIDER / TRUST BAR
   ============================================================ */
.trust-bar {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
  background: rgba(255,255,255,0.015);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item svg { flex-shrink: 0; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

.section-header.centered {
  text-align: center;
}
.section-header.centered p { margin: 0 auto; }

.light-bg h1, .light-bg h2, .light-bg h3, .light-bg h4,
.alt-bg h1,  .alt-bg h2,  .alt-bg h3,  .alt-bg h4  { color: var(--text-dark) !important; }
.light-bg .section-header p,
.alt-bg  .section-header p  { color: var(--text-mid); }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
}
.check-item .check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(56,189,248,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  color: var(--accent-sky);
  font-size: 0.75rem;
}
.light-bg .check-item,
.alt-bg .check-item { color: var(--text-mid); }
.light-bg .check-icon,
.alt-bg .check-icon  { background: rgba(129,140,248,0.12); color: var(--accent-indigo); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(56,189,248,0.3), transparent);
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(56,189,248,0.1);
  border: 1.5px solid rgba(56,189,248,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-sky);
}
.step-content {
  padding-bottom: 40px;
}
.step-content h4 { margin-bottom: 6px; color: var(--text-light); font-size: 1.05rem; }
.step-content p  { font-size: 0.95rem; }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-block {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--accent-sky);
  border-radius: var(--radius-md);
  padding: 32px 36px;
}
.quote-block p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: none;
}
.quote-attr {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: #fff; position: relative; z-index: 1; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.85); position: relative; z-index: 1; margin: 0 auto 36px; max-width: 52ch; font-size: 1.05rem; }
.cta-banner .btn-group { justify-content: center; position: relative; z-index: 1; }
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.cta-banner .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.cta-banner .btn-white {
  background: #fff;
  color: var(--text-dark);
  border: none;
}
.cta-banner .btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .cta-banner { padding: 48px 28px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent-sky); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(56,189,248,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-sky);
  font-size: 1.2rem;
  font-weight: 300;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(56,189,248,0.2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Light bg FAQ */
.light-bg .faq-item, .alt-bg .faq-item {
  background: #fff;
  border-color: var(--border-light);
}
.light-bg .faq-question, .alt-bg .faq-question { color: var(--text-dark); }
.light-bg .faq-answer-inner, .alt-bg .faq-answer-inner { color: var(--text-mid); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
#site-footer {
  background: #040608;
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .site-logo { margin-bottom: 16px; font-size: 1.1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 30ch; }

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--text-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent-sky); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.97rem;
  color: var(--text-muted);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(56,189,248,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-light);
  font-size: 0.97rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-sky);
  background: rgba(56,189,248,0.04);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* CF7 overrides */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-light);
  font-size: 0.97rem;
  transition: var(--transition);
  outline: none;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-textarea:focus {
  border-color: var(--accent-sky);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.1);
}
.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.wpcf7-form .wpcf7-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form-box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-content h1 { margin-bottom: 12px; }
.legal-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 12px;
  color: var(--text-light);
}
.legal-content h3 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--text-light);
}
.legal-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: none;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.legal-content a { color: var(--accent-sky); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 104px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 58ch; }

/* ============================================================
   PILL TAGS
   ============================================================ */
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.18);
  color: var(--accent-sky);
}
.light-bg .tag, .alt-bg .tag {
  background: rgba(129,140,248,0.08);
  border-color: rgba(129,140,248,0.2);
  color: var(--accent-indigo);
}

/* ============================================================
   PRICING CARD
   ============================================================ */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 0 60px rgba(56,189,248,0.08), var(--shadow-card);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 16px 0 8px;
}
.pricing-period { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   TWO-COL FEATURE
   ============================================================ */
.feature-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-two-col.reverse { direction: rtl; }
.feature-two-col.reverse > * { direction: ltr; }

.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

@media (max-width: 900px) {
  .feature-two-col { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}

/* ============================================================
   UTILS
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
