/*
Theme Name: Clearwave
Theme URI: https://juncipriano.online
Author: Jun Cipriano
Author URI: https://juncipriano.online
Description: Clean, modern freelance services theme based on TemplateMo Clearwave design. Light teal aesthetic with scroll animations.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clearwave
Tags: one-column, custom-background, custom-logo, editor-style, featured-images, wide-blocks
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
*/

/* ── TOKENS ── */
:root {
  --bg:           #E8F4F2;
  --bg-alt:       #DFF0EE;
  --surface:      #F4FAFA;
  --surface-2:    #FFFFFF;
  --accent:       #1A7A6E;
  --accent-mid:   #2A9D8F;
  --accent-light: #5BBFB5;
  --accent-ghost: rgba(26,122,110,0.08);
  --accent-border:rgba(26,122,110,0.15);
  --text-1:       #0D1E1C;
  --text-2:       #3A5C58;
  --text-3:       #6B8C88;
  --border:       rgba(13,30,28,0.08);
  --shadow-sm:    0 2px 12px rgba(13,30,28,0.06);
  --shadow-md:    0 8px 32px rgba(13,30,28,0.10);
  --shadow-lg:    0 24px 64px rgba(13,30,28,0.13);
  --silk:         cubic-bezier(0.16, 1, 0.3, 1);
  --silk-dur:     0.8s;
  --radius:       16px;
  --radius-lg:    24px;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SUBTLE NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── UTILITY ── */
.container { max-width: 1280px !important; margin: 0 auto !important; padding: 0 48px !important; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; color: var(--text-1);
}
.section-title em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--accent);
}
.section-sub {
  font-size: 1.0625rem; line-height: 1.75;
  color: var(--text-2); max-width: 520px; margin-top: 16px;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--silk), transform 0.7s var(--silk); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   1. NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: padding var(--silk-dur) var(--silk), background var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(232,244,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px !important; margin: 0 auto !important; padding: 0 48px !important;
}
.nav-logo {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.04em;
  color: var(--text-1);
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  position: relative; padding: 7px 16px; border-radius: 100px;
  background: transparent;
  box-shadow: inset 0 0 0 0px var(--accent-border);
  transition: color 0.4s var(--silk), background 0.4s var(--silk), box-shadow 0.4s var(--silk);
}
.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-ghost);
  box-shadow: inset 0 0 0 1px var(--accent-border);
}
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-ghost {
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  padding: 9px 20px; border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}
.btn-ghost:hover { color: var(--accent); background: var(--accent-ghost); }
.btn-primary {
  font-size: 0.875rem; font-weight: 600; color: #fff;
  background: var(--accent); padding: 10px 22px; border-radius: 100px;
  transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
  box-shadow: 0 4px 16px rgba(26,122,110,0.25);
}
.btn-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,122,110,0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s var(--silk);
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(232,244,242,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--silk);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-1);
  padding: 12px 24px;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--accent);
}
.mobile-cta {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════════
   2. HERO
══════════════════════════════════════════ */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--text-2);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--accent);
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 16px 32px;
  border-radius: 100px;
  transition: all var(--silk-dur) var(--silk);
  box-shadow: 0 4px 24px rgba(26,122,110,0.3);
}
.btn-primary-lg:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,122,110,0.4);
}
.btn-arrow {
  transition: transform 0.3s var(--silk);
}
.btn-primary-lg:hover .btn-arrow {
  transform: translateX(4px);
}
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--silk);
}
.btn-outline-lg:hover {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-ghost);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-3);
}
.trust-item svg {
  color: var(--accent);
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-dashboard {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dashboard-bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-alt);
}
.db-dot:first-child { background: #FF6B6B; }
.db-dot:nth-child(2) { background: #FFD93D; }
.db-dot:nth-child(3) { background: #6BCB77; }
.dashboard-body {
  padding: 24px;
}
.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.db-title {
  font-weight: 600;
  color: var(--text-1);
}
.db-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-ghost);
  padding: 4px 10px;
  border-radius: 100px;
}
.db-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 24px;
}
.db-bar {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 6px 6px 0 0;
  transition: height 0.6s var(--silk);
}
.db-bar.active {
  background: var(--accent);
}
.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.db-stat {
  text-align: center;
}
.db-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
}
.db-stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 4px;
}
.db-stat-change {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* Floating Badges */
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}
.float-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-ghost);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.float-badge-text strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-1);
}
.float-badge-text span {
  font-size: 0.75rem;
  color: var(--text-3);
}
.hero-float-badge-2 {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(26,122,110,0.3);
  color: #fff;
  animation: float 6s ease-in-out infinite 1s;
}
.float-badge-2-val {
  font-size: 1.5rem;
  font-weight: 700;
}
.float-badge-2-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-float-badge, .hero-float-badge-2 { display: none; }
}

/* ══════════════════════════════════════════
   3. LOGO TICKER
══════════════════════════════════════════ */
.ticker-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 24px;
}
.ticker-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
}
.ticker-item-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-ghost);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   4. FEATURES
══════════════════════════════════════════ */
.features-section {
  padding: 120px 0;
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row:nth-child(even) .feature-content {
  order: 2;
}
.feature-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 16px;
}
.feature-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 24px;
}
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.check-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.feature-visual {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.feature-visual-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fv-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
}
.fv-card-label {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 8px;
}
.fv-card-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
}
.fv-card-bar {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}
.fv-card-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 1s var(--silk);
}

@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row:nth-child(even) .feature-content { order: 0; }
}

/* ══════════════════════════════════════════
   5. PRICING
══════════════════════════════════════════ */
.pricing-section {
  padding: 120px 0;
  background: var(--bg-alt);
}
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--border);
  transition: all var(--silk-dur) var(--silk);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(26,122,110,0.03) 0%, var(--surface-2) 100%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-name {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-bottom: 24px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.pricing-feature .check-icon {
  width: 20px;
  height: 20px;
  font-size: 10px;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s var(--silk);
}
.pricing-cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,122,110,0.25);
}
.pricing-cta-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
}
.pricing-cta-outline {
  border: 1px solid var(--border);
  color: var(--text-2);
}
.pricing-cta-outline:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-ghost);
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ══════════════════════════════════════════
   6. TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section {
  padding: 120px 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--silk-dur) var(--silk);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFD93D;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}
.testimonial-name {
  font-weight: 600;
  color: var(--text-1);
  font-size: 0.9375rem;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-3);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   7. FAQ
══════════════════════════════════════════ */
.faq-section {
  padding: 120px 0;
  background: var(--bg-alt);
}
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--silk);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--silk), padding 0.4s var(--silk);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
}

/* ══════════════════════════════════════════
   8. CTA
══════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
}
.cta-box {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 32px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all var(--silk-dur) var(--silk);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════
   9. FOOTER
══════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-2);
}
.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-2);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-3);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}

/* ══════════════════════════════════════════
   10. PAGE CONTENT
══════════════════════════════════════════ */
.site-content {
  padding-top: 80px;
}
.entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 32px;
}
.entry-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-1);
}
.entry-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--text-1);
}
.entry-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text-1);
}
.entry-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 20px;
}
.entry-content ul, .entry-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.entry-content li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 8px;
}
.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover {
  color: var(--accent-mid);
}
.entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-2);
}
.entry-content img {
  border-radius: var(--radius);
  margin: 32px 0;
}
.entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s var(--silk);
}
.entry-content .wp-block-button__link:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   11. STATS
══════════════════════════════════════════ */
.stats-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--silk-dur) var(--silk);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-rule {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-suffix {
  font-size: 1.5rem;
  color: var(--accent);
}
.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
}
.stat-sublabel {
  font-size: 0.8125rem;
  color: var(--text-3);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   12. FAQ INNER LAYOUT
══════════════════════════════════════════ */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 120px;
}
.faq-toggle-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 24px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--accent-border);
  background: var(--accent-ghost);
  transition: all 0.3s var(--silk);
}
.faq-toggle-all:hover {
  background: var(--accent);
  color: #fff;
}
.faq-answer-inner {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
}

@media (max-width: 768px) {
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
}

/* ══════════════════════════════════════════
   13. CTA INNER LAYOUT
══════════════════════════════════════════ */
.cta-inner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 80px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-title em {
  font-style: italic;
  font-family: var(--font-display);
}
.cta-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all var(--silk-dur) var(--silk);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s var(--silk);
}
.btn-cta-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; padding: 48px 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-cta-primary, .btn-cta-ghost { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   14. PRICING ADDITIONS
══════════════════════════════════════════ */
.pricing-tier {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-2);
  vertical-align: top;
}
.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
}
.price-period {
  font-size: 0.9375rem;
  color: var(--text-3);
}
.price-annual-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  min-height: 20px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.pricing-check {
  width: 20px;
  height: 20px;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   15. FEATURE VISUAL ADDITIONS
══════════════════════════════════════════ */
.fv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fv-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--surface-2);
  border-radius: 8px;
}
.fv-list-name {
  font-size: 0.8125rem;
  color: var(--text-2);
}
.fv-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.fv-pill.green {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}
.fv-pill.blue {
  background: rgba(59,130,246,0.1);
  color: #2563eb;
}
.fv-pill.dim {
  background: var(--bg-alt);
  color: var(--text-3);
}
.fv-wide {
  grid-column: span 2;
}

/* ══════════════════════════════════════════
   16. TESTIMONIAL ADDITIONS
══════════════════════════════════════════ */
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
}
.author-name {
  font-weight: 600;
  color: var(--text-1);
  font-size: 0.9375rem;
}
.author-role {
  font-size: 0.8125rem;
  color: var(--text-3);
}
.testimonial-card.tall {
  grid-row: span 2;
}

/* ══════════════════════════════════════════
   17. BUTTON ADDITIONS
══════════════════════════════════════════ */
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--accent-border);
  transition: all 0.3s var(--silk);
}
.btn-outline-sm:hover {
  background: var(--accent-ghost);
  border-color: var(--accent);
}
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--accent);
  transition: all 0.3s var(--silk);
}
.btn-primary-sm:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   18. FOOTER ADDITIONS
══════════════════════════════════════════ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-col-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--accent);
  color: #fff;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-3);
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ══════════════════════════════════════════
   19. SERVICE HERO
══════════════════════════════════════════ */
.service-hero {
  padding: 180px 0 120px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,122,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-hero-visual {
  position: relative;
}
.demo-preview {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.demo-bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.demo-body {
  padding: 24px;
}
.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.demo-title {
  font-weight: 600;
  color: var(--text-1);
}
.demo-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-ghost);
  padding: 4px 10px;
  border-radius: 100px;
}
.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.demo-stat {
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
}
.demo-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
}
.demo-stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 4px;
}
.demo-map-placeholder {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  border: 1px dashed var(--border);
}
.map-pin {
  font-size: 2rem;
  margin-bottom: 8px;
}
.map-text {
  font-size: 0.875rem;
  color: var(--text-3);
}

@media (max-width: 768px) {
  .service-hero { padding: 120px 0 60px; }
  .service-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-hero-visual { order: -1; }
}
