/*
Theme Name: Ask4Lead
Theme URI: https://ask4lead.com
Author: Ask4Lead Team
Author URI: https://ask4lead.com
Description: AI-Powered WhatsApp CRM SaaS Landing Page Theme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ask4lead
Tags: saas, crm, landing-page, business, modern, responsive
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --primary-dark: #031242;
  --primary-green: #11B956;
  --primary-green-dark: #0da348;
  --primary-green-light: #e8f9ee;
  --accent-blue: #2563eb;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-soft2: #f1f5f9;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(3,18,66,0.06), 0 1px 2px rgba(3,18,66,0.04);
  --shadow-md: 0 4px 16px rgba(3,18,66,0.08), 0 2px 8px rgba(3,18,66,0.05);
  --shadow-lg: 0 10px 40px rgb(3 18 66 / 0%), 0 4px 16px rgba(3, 18, 66, 0.06);
  --shadow-xl: 0 20px 60px rgba(3,18,66,0.15), 0 8px 24px rgba(3,18,66,0.08);
  --shadow-green: 0 8px 24px rgba(17,185,86,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-primary: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-green { color: var(--primary-green); }
.text-dark { color: var(--primary-dark); }
.text-muted { color: var(--text-muted); }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  box-shadow: 0 12px 32px rgba(17,185,86,0.35);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-color);
  background: var(--bg-white);
}

.btn-outline:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.btn-dark:hover {
  background: #041a5a;
  transform: translateY(-1px);
  color: #fff;
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =============================================
   BADGES / TAGS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-primary);
  letter-spacing: 0.01em;
}

.badge-green {
  background: var(--primary-green-light);
  color: var(--primary-green);
  border: 1px solid rgba(17,185,86,0.2);
}

.badge svg { width: 14px; height: 14px; }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 12px;
  background-color: #E7F8EE;
  padding: 5px 15px;
  border-radius: 50pc;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header h2 .highlight {
  color: var(--primary-green);
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transform: translateZ(0);
  will-change: background-color, box-shadow, border-color;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

body.has-inner-hero #site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-md);
}

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

/* WordPress custom logo: one link only (see .site-branding in header.php) */
.site-branding {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition);
}

.site-branding .custom-logo-link:hover {
  opacity: 0.88;
}

.site-branding .custom-logo-link:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 3px;
}

.site-branding .custom-logo-link img {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-logo .logo-text {
  color: var(--primary-dark);
}

.site-logo .logo-text span {
  color: var(--primary-green);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  background: #0312420d;
}

.main-nav .has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  pointer-events: none;
}

.main-nav .has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover { background: var(--bg-soft); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px 24px;
  z-index: 999;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}

.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary-green); }

.mobile-nav a.mobile-nav__sublink {
  padding-left: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mobile-nav a.mobile-nav__sublink:hover {
  color: var(--primary-green);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: clamp(72px, 10vw, 100px);
  background-color: #fff;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: visible;
}

.hero-bg-dots {
  position: absolute;
  top: 15%;
  right: 2px;
  z-index: 1;
  width: 100px;
  height: 100px;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-dots__svg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-bg-gradient {
  position: absolute;
  top: -200px;
  right: -100px;
  z-index: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(17, 185, 86, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-gradient-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  z-index: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 18, 66, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 10px 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .badge {
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
a.btn.btn-outline.btn-lg.hero-chat {
    padding: 22px 30px;
}
.hero-btn-primary {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #11d85e 0%, #06be4f 100%);
  box-shadow: 0 12px 28px rgba(6, 190, 79, 0.35);
  line-height: 1.1;
}

.hero-btn-primary:hover {
  background: linear-gradient(180deg, #11dd61 0%, #05b347 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 32px rgba(6, 190, 79, 0.4);
}

.hero-btn-primary__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.hero-btn-primary__subtext {
  font-size: 10px;
  font-weight: 600;
}

.hero-btn-primary__icon {
  width: 23px;
  height: 23px;
  stroke-width: 2.3;
  flex-shrink: 0;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1rem;
}

.trust-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
}

.trust-text span {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.75rem;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border-color);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary-dark);
}

/* Hero Visual — CRM dashboard mockup: assets/css/hero-dashboard.css */


/* =============================================
   FEATURE BAR (overlaps hero bottom + next section)
   ============================================= */
.hero-feature-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  transform: translateY(50%);
  pointer-events: none;
}

.hero-feature-bar__container {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  width: min(1140px, 90%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3vw, 24px);
  padding-right: clamp(16px, 3vw, 24px);
  box-sizing: border-box;
}

.feature-bar-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 22px 56px rgba(3, 18, 66, 0.1),
    0 10px 28px rgba(3, 18, 66, 0.06);
  overflow: hidden;
}

.feature-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 45px) clamp(16px, 2vw, 24px);
  border-right: 1px solid var(--border-color);
}

.feature-bar-item:last-child { border-right: none; }

.feature-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-green-light);
}

.feature-bar-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
}

.feature-bar-icon.blue { background: #eff6ff; }
.feature-bar-icon.blue svg { color: var(--accent-blue); }
.feature-bar-icon.orange { background: #fff7ed; }
.feature-bar-icon.orange svg { color: #f97316; }
.feature-bar-icon.purple { background: #faf5ff; }
.feature-bar-icon.purple svg { color: #7c3aed; }

.feature-bar-content div {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-primary);
}

.feature-bar-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   GROWTH FEATURES
   ============================================= */
.growth-features {
  background: linear-gradient(359deg, #ffffff 0%, #f8fafc 38%, #f1f5f9 62%, #f5f5ff 100%);
}

.growth-features.section-pad {
  padding-top: calc(96px + clamp(48px, 6.5vw, 72px));
}

.growth-features__layout {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 70%);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.growth-features__intro {
  max-width: 480px;
}

.growth-features__accent {
  display: block;
  width: 56px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--primary-green);
  margin-bottom: 20px;
}

.growth-features__intro p {
  padding-top: 15px;
  padding-bottom: 10px;
}

.growth-features__cta {
  border-radius: var(--radius-full);
  padding: 14px 28px;
}

.growth-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.gf-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  min-height: 100%;
}

.gf-card--light {
  background: var(--bg-white);
  color: var(--primary-dark);
}

.gf-card--dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    #031242 0%,
    #052a6e 42%,
    #0a4da8 78%,
    #1d6fd4 100%
  );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 44px rgba(3, 18, 66, 0.22);
}

.gf-card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 100% 0%, rgba(96, 165, 250, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 60% 55% at 0% 100%, rgba(17, 185, 86, 0.12) 0%, transparent 52%);
  pointer-events: none;
}

.gf-card--dark > * {
  position: relative;
  z-index: 1;
}

.gf-card--dark.gf-card--followups {
  background: linear-gradient(
    135deg,
    #041a52 0%,
    #073d8f 48%,
    #0f5bb5 100%
  );
}

.gf-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gf-card__icon svg {
  width: 26px;
  height: 26px;
}

.gf-card__icon--green {
  background: var(--primary-green);
  color: #fff;
}

.gf-card__icon--white {
  background: #fff;
  color: var(--primary-green);
}

.gf-card--dark .gf-card__icon--white {
  color: var(--primary-green);
}

.gf-card--dark.gf-card--followups .gf-card__icon--white {
  color: var(--primary-dark);
}

.gf-card__body h3 {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.gf-card--light .gf-card__body h3 {
  color: var(--primary-dark);
}

.gf-card--dark .gf-card__body h3 {
  color: #fff;
  letter-spacing: 0em;
}

.gf-card__body p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.gf-card--light .gf-card__body p {
  color: var(--text-body);
}

.gf-card--dark .gf-card__body p {
  color: rgba(255, 255, 255, 0.78);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    #031242 0%,
    #052a6e 38%,
    #0a4da8 72%,
    #031242 100%
  );
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 15% 10%, rgba(59, 130, 246, 0.35) 0%, transparent 58%),
    radial-gradient(ellipse 65% 50% at 88% 90%, rgba(17, 185, 86, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works.section-pad {
  padding-top: 96px;
  padding-bottom: 0;
}

.how-it-works .section-header h2 {
  color: #fff;
}

.how-it-works .section-label {
  color: var(--primary-green);
}

.how-it-works-video {
  max-width: min(920px, 100%);
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.how-it-works-video__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.how-it-works-video__inner iframe,
.how-it-works-video__inner video,
.how-it-works-video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .how-it-works-video__inner iframe,
  .how-it-works-video__player {
    display: none;
  }

  .how-it-works-video__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
  }
}

.how-it-works .step-content h3 {
  color: #fff;
}

.how-it-works .step-content p {
  color: rgba(255, 255, 255, 0.78);
}

.steps-track {
  --step-icon-size: clamp(65px, 8.5vw, 50px);
  --step-badge-size: clamp(40px, 5vw, 50px);
  --step-connector-offset: calc(var(--step-icon-size) / 2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 0;
  padding: 0 clamp(12px, 2vw, 24px);
  box-sizing: border-box;
}

.step-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(22px, 3vw, 28px);
  gap: 10px;
}

.step-number-badge {
  flex-shrink: 0;
  width: var(--step-badge-size);
  height: var(--step-badge-size);
  margin-right: -4px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-primary);
  font-size: clamp(1.02rem, 1.6vw, 1.30rem);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-icon-wrap {
  flex-shrink: 0;
  width: var(--step-icon-size);
  height: var(--step-icon-size);
  background: #fff;
  border-radius: 50%;
  border: 2px solid rgba(17, 185, 86, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.step-icon-wrap svg {
  width: clamp(28px, 3.5vw, 25px);
  height: clamp(28px, 3.5vw, 25px);
  color: var(--primary-green);
}


.step-robot-img {
  display: block;
  width: 68%;
  height: 68%;
  object-fit: contain;
  object-position: center;
}

/* Dotted line between steps (desktop / tablet landscape). */
.step-connector {
  flex: 1 1 0;
  min-width: 20px;
  max-width: 100px;
  height: 0;
  align-self: flex-start;
  margin-top: var(--step-connector-offset);
  border-top: 2px dotted var(--primary-green);
  position: relative;
  opacity: 0.9;
}

.step-connector::after {
  content: '';
  position: absolute;
  left: 0%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.step-content {
  width: 100%;
  max-width: 260px;
}

.step-content h3 {
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary-dark);
  line-height: 1.3;
}

.step-content p {
  font-size: clamp(0.875rem, 1.35vw, 0.9375rem);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   AI ENGINE SECTION
   ============================================= */
.ai-engine {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.ai-engine-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(17, 185, 86, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.ai-engine-dots {
  position: absolute;
  z-index: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
  overflow: visible;
}
.ai-engine-dots--left svg path, .ai-engine-dots--right svg path {
    fill: #999999;
}

.ai-engine-dots--left {
  left: -15px;
  transform: rotate(89deg);
  bottom: 30px;
}

.ai-engine-dots--right {
  right: -15px;
  top: 30px;
}

.ai-engine-dots__svg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

.ai-engine .section-header {
  position: relative;
  z-index: 1;
}

.ai-engine-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 290px) minmax(0, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-template-areas:
    "l1 center r1"
    "l2 center r2"
    "l3 center r3";
  column-gap: clamp(8px, 2vw, 24px);
  row-gap: clamp(28px, 4vw, 40px);
  align-items: center;
}

.ai-feature-list--left,
.ai-feature-list--right {
  display: contents;
}

.ai-feature-list--left .ai-feature-item:nth-child(1) { grid-area: l1; }
.ai-feature-list--left .ai-feature-item:nth-child(2) { grid-area: l2; }
.ai-feature-list--left .ai-feature-item:nth-child(3) { grid-area: l3; }

.ai-feature-list--right .ai-feature-item:nth-child(1) { grid-area: r1; }
.ai-feature-list--right .ai-feature-item:nth-child(2) { grid-area: r2; }
.ai-feature-list--right .ai-feature-item:nth-child(3) { grid-area: r3; }

.ai-center {
  grid-area: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.ai-feature-item {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: default;
  min-width: 0;
  max-width: 100%;
}

.ai-feature-item:hover {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: none;
}

.ai-feature-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 72px;
  /* Keep diagram LTR so connector stays before icon (not flipped in RTL). */
  direction: ltr;
}

.ai-feature-item--left .ai-feature-inner {
  flex-direction: row;
}

.ai-feature-item--right .ai-feature-inner {
  flex-direction: row;
}

/* Explicit order: dotted line always immediately before the icon pill. */
.ai-feature-item--left .ai-feature-connector {
  order: 2;
}

.ai-feature-item--left .ai-feature-icon {
  order: 3;
}

.ai-feature-item--right .ai-feature-connector {
  order: 1;
}

.ai-feature-item--right .ai-feature-icon {
  order: 2;
}

.ai-feature-text {
  flex: 1;
  min-width: 0;
}

.ai-feature-item--left .ai-feature-text {
  order: 1;
  text-align: right;
}

.ai-feature-item--right .ai-feature-text {
  order: 3;
  text-align: left;
}

.ai-feature-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 6px;
  line-height: 1.25;
}

.ai-feature-text p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
  max-width: min(280px, 100%);
}

.ai-feature-item--left .ai-feature-text p {
  margin-left: auto;
}

.ai-feature-item--right .ai-feature-text p {
  margin-right: auto;
}

/* Dotted connector + end caps */
.ai-feature-connector {
  flex: 1 1 20px;
  max-width: 100px;
  min-width: 16px;
  height: 0;
  align-self: center;
  border-top: 2px dotted var(--primary-green);
  position: relative;
  opacity: 0.9;
}

.ai-feature-connector::before,
.ai-feature-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ai-feature-item--left .ai-feature-connector::before {
  left: -1px;
}

.ai-feature-item--left .ai-feature-connector::after {
  right: -1px;
}

.ai-feature-item--right .ai-feature-connector::before {
  left: -1px;
}

.ai-feature-item--right .ai-feature-connector::after {
  right: -1px;
}

.ai-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #e8f9ee;
  border: none;
  box-shadow: none;
}

.ai-feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary-green);
}

/* Robot frame matches upload (~270×369px); height follows width via aspect-ratio. */
.robot-container {
  --robot-aspect: 270 / 369;
  width: clamp(250px, 22vw, 270px);
  aspect-ratio: var(--robot-aspect);
  height: auto;
  max-height: clamp(369px, 34vw, 375px);
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 55%, #ecfdf5 100%);
  border: 2px solid rgba(17, 185, 86, 0.45);
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  padding: clamp(10px, 6%, 18px);
  box-sizing: border-box;
  box-shadow: 0 12px 40px rgba(3, 18, 66, 0.08);
}

.robot-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
/**
 * Features page — core feature cards (pricing-card icon colors)
 */

.features-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.features-section.section-pad {
  padding-top: clamp(48px, 6vw, 72px);
}

.features-section__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(32px, 5vw, 48px);
}

.features-section__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.features-section__header h2 .highlight {
  color: var(--primary-green);
}

.features-section__lead {
  margin: 0 auto;
  max-width: 680px;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-body);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
  align-items: stretch;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 18px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 8px 24px rgba(3, 18, 66, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  flex-direction: column;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
}

.feature-card__title {
  margin: 2px 0 0;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.feature-card__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* Icon themes — same palette as .pricing-card */
.feature-card--green .feature-card__icon {
  background: rgba(17, 185, 86, 0.12);
  color: #11b956;
}

.feature-card--green:hover {
  border-color: #11b956;
  box-shadow: 0 8px 20px rgba(17, 185, 86, 0.1);
}

.feature-card--blue .feature-card__icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.feature-card--blue:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.feature-card--purple .feature-card__icon {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.feature-card--purple:hover {
  border-color: #8b5cf6;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.1);
}

.feature-card--orange .feature-card__icon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.feature-card--orange:hover {
  border-color: #f97316;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.1);
}

.feature-card--teal .feature-card__icon {
  background: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
}

.feature-card--teal:hover {
  border-color: #14b8a6;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.1);
}

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 18px 16px 16px;
  }

  .feature-card__icon {
    width: 36px;
    height: 36px;
  }

  .feature-card__icon svg {
    width: 18px;
    height: 18px;
  }
}

/* =============================================
   INDUSTRIES SECTION
   ============================================= */
.industries {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    #031242 0%,
    #052a6e 38%,
    #0a4da8 72%,
    #1d6fd4 100%
  );
}

.industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 10% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 58%),
    radial-gradient(ellipse 65% 50% at 92% 80%, rgba(17, 185, 86, 0.12) 0%, transparent 52%);
  pointer-events: none;
}

.industries .container {
  position: relative;
  z-index: 1;
}

.industries .section-header {
  margin-bottom: 40px;
}

.industries .section-header h2 {
  color: #fff;
}

.industries .section-header h2 .highlight {
  color: var(--primary-green);
}

.industries .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

/* Full-width slider breakout */
.industries-slider-outer {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.industries-track {
  overflow: hidden;
  padding: 8px 0 16px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.industries-track-inner {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: industries-marquee 55s linear infinite;
  will-change: transform;
}

.industries-track:hover .industries-track-inner {
  animation-play-state: paused;
}

@keyframes industries-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .industries-track {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .industries-track::-webkit-scrollbar {
    display: none;
  }

  .industries-track-inner {
    animation: none;
    padding: 0 16px;
  }
}

.industries .industry-card {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 248px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  cursor: default;
}

.industry-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--bg-soft);
}

.industry-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.industry-icon { background: var(--primary-green) }

.industry-label {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.industry-desc {
  font-size: 14px;
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.55;
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-primary)
}

/* =============================================
   HOME PAGE VIDEO SECTION
   ============================================= */
.homepage-video {
  background: linear-gradient(180deg, #f0f8ff4a 0%, #f0f8ff94 100%);
  border-top: 1px solid var(--border-color);
}

.homepage-video .section-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.homepage-video .section-header h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.homepage-video .section-header p {
  max-width: min(640px, 92vw);
}

.homepage-video__player-wrap {
  max-width: min(1000px, 100%);
  margin: 0 auto;
}

.homepage-video__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  background: var(--primary-dark);
  border: 1px solid var(--border-color);
  box-shadow:
    0 20px 50px rgba(3, 18, 66, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.homepage-video__inner iframe,
.homepage-video__inner video,
.homepage-video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .homepage-video__inner iframe,
  .homepage-video__player {
    display: none;
  }

  .homepage-video__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 66, 0.08);
  }
}
/**
 * AI Credits pricing section
 */

.pricing-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(28px, 4vw, 20px);
}

.pricing-section__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.pricing-section__header h2 .highlight {
  color: var(--primary-green);
}

.pricing-section__lead {
  margin: 0 auto 22px;
  max-width: 640px;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-body);
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px clamp(20px, 4vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pricing-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--primary-green);
  flex-shrink: 0;
}

.pricing-trust__icon svg {
  width: 14px;
  height: 14px;
}

.pricing-trust__label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #374151;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 15px);
  align-items: stretch;
}

/* Trust bar below pricing cards */
.pricing-trust-bar {
  max-width: 900px;
  margin-top: clamp(24px, 4vw, 40px);
  margin-left: auto;
  margin-right: auto;
}

.pricing-trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  padding: clamp(18px, 2.5vw, 15px) clamp(16px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.pricing-trust-bar__item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 14px);
  min-width: 0;
  padding: 4px clamp(8px, 1.5vw, 20px);
}

.pricing-trust-bar__divider {
  flex: 0 0 1px;
  align-self: stretch;
  width: 1px;
  min-height: 48px;
  margin: 4px 0;
  background: #e5e7eb;
}

.pricing-trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--primary-green);
  flex-shrink: 0;
}

.pricing-trust-bar__icon svg {
  width: 18px;
  height: 18px;
}

.pricing-trust-bar__copy {
  min-width: 0;
}

.pricing-trust-bar__title {
  margin: 0 0 4px;
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1e293b;
}

.pricing-trust-bar__text {
  margin: 0;
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  font-weight: 500;
  line-height: 1.4;
  color: #64748b;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 16px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 8px 24px rgba(3, 18, 66, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.pricing-card--popular {
  border: 2px solid #8b5cf6;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #8b5cf6;
}

.pricing-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.pricing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
}

.pricing-card__icon svg {
  width: 18px;
  height: 18px;
}

.pricing-card__credits-wrap {
  min-width: 0;
}

.pricing-card__credits {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2vw, 1.30rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.pricing-card__credits-label {
  margin: 4px 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card__desc {
  margin: 0 0 14px;
  font-size: 0.80rem;
  line-height: 1.55;
  color: var(--text-body);
  min-height: 2.8em;
}

.pricing-card__price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 14px 14px;
  border-radius: 12px;
  background: #f4f7fb;
}

.pricing-card__price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.pricing-card__price-icon svg {
  width: 22px;
  height: 22px;
}

.pricing-card__price-text {
  min-width: 0;
}

.pricing-card__price {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2vw, 1.20rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.pricing-card__currency {
  font-weight: 800;
  margin-right: 0.2em;
}

.pricing-card__gst {
  margin: 5px 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #6b7280;
}

.pricing-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.pricing-card__btn:hover,
.pricing-card__btn:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.05);
  outline: none;
}

/* Theme colors */
.pricing-card--green .pricing-card__icon {
  background: rgba(17, 185, 86, 0.12);
  color: #11b956;
}

.pricing-card--green .pricing-card__credits-label {
  color: #11b956;
}

.pricing-card--green .pricing-card__price-box {
  background: rgba(17, 185, 86, 0.08);
}

.pricing-card--green .pricing-card__price-icon {
  color: #11b956;
}

.pricing-card--green .pricing-card__btn {
  background: #11b956;
  box-shadow: 0 8px 20px rgba(17, 185, 86, 0.28);
}

.pricing-card--green:hover {
  border-color: #11b956;
  box-shadow: 0 8px 20px rgba(17, 185, 86, 0.1);
}

.pricing-card--blue .pricing-card__icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.pricing-card--blue .pricing-card__credits-label {
  color: #3b82f6;
}

.pricing-card--blue .pricing-card__price-box {
  background: rgba(59, 130, 246, 0.08);
}

.pricing-card--blue .pricing-card__price-icon {
  color: #3b82f6;
}

.pricing-card--blue .pricing-card__btn {
  background: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.28);
}

.pricing-card--blue:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.pricing-card--purple .pricing-card__icon {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.pricing-card--purple .pricing-card__credits-label {
  color: #8b5cf6;
}

.pricing-card--purple .pricing-card__price-box {
  background: rgba(139, 92, 246, 0.08);
}

.pricing-card--purple .pricing-card__price-icon {
  color: #8b5cf6;
}

.pricing-card--purple .pricing-card__btn {
  background: #8b5cf6;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.28);
}

.pricing-card--orange .pricing-card__icon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.pricing-card--orange .pricing-card__credits-label {
  color: #f97316;
}

.pricing-card--orange .pricing-card__price-box {
  background: rgba(249, 115, 22, 0.08);
}

.pricing-card--orange .pricing-card__price-icon {
  color: #f97316;
}

.pricing-card--orange .pricing-card__btn {
  background: #f97316;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.28);
}

.pricing-card--orange:hover {
  border-color: #f97316;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.1);
}

.pricing-card--teal .pricing-card__icon {
  background: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
}

.pricing-card--teal .pricing-card__credits-label {
  color: #14b8a6;
}

.pricing-card--teal .pricing-card__price-box {
  background: rgba(20, 184, 166, 0.08);
}

.pricing-card--teal .pricing-card__price-icon {
  color: #14b8a6;
}

.pricing-card--teal .pricing-card__btn {
  background: #14b8a6;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.28);
}

.pricing-card--teal:hover {
  border-color: #14b8a6;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.1);
}
@media (max-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-card--popular {
    transform: none;
  }
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-card__desc {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .pricing-trust {
    flex-direction: column;
    align-items: flex-start;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-trust__item {
    width: 100%;
  }
}

@media (min-width: 1281px) {
  .pricing-card--popular {
    min-height: calc(100% + 8px);
  }
}

/* =============================================
   BLOG / INSIGHTS
   ============================================= */
.insights {
  background: var(--bg-white);
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.insights-header h2 { margin-bottom: 0; }

.insights-header h2 .highlight {
  color: var(--primary-green);
}

.insights-header .view-all-link {
  flex-shrink: 0;
}

.insights-header .view-all-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-image {
  position: relative;
  display: block;
  height: 204px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f4f5 0%, #18181b 100%);
  text-decoration: none;
}

/* Black & white gradient overlay on featured images */
.blog-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 35%, rgb(0 0 0 / 36%) 60%, rgb(0 0 0 / 71%) 90%);
  pointer-events: none;
  transition: opacity var(--transition);
}

.blog-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--transition-slow),
    filter var(--transition);
}

.blog-card:hover .blog-card-image img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.blog-card-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e4e4e7 0%, #27272a 55%, #09090b 100%);
}

.blog-card-image-fallback svg {
  width: 32px;
  height: 32px;
  color: #fafafa;
}

.blog-card-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.tag-automation {
  color: var(--primary-green-dark);
  background: var(--primary-green-light);
}

.tag-crm {
  color: var(--primary-green-dark);
  background: var(--primary-green-light);
}

.tag-growth {
  color: var(--primary-green-dark);
  background: var(--primary-green-light);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.blog-card-meta time {
  display: inline;
}

.blog-card-meta__sep {
  color: var(--text-muted);
  opacity: 0.6;
}

.blog-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-body h3 a:hover {
  color: var(--primary-green);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-green);
  background: none;
  border: none;
  box-shadow: none;
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-more:hover {
  color: var(--primary-green-dark);
  background: none;
  box-shadow: none;
  transform: none;
}
.blog-card-more span{
  display: flex;
}
.blog-card-more svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.blog-card-more:hover svg {
  transform: translateX(4px);
}

.blog-card-more:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  background: #f0f8ff;
}

.faq-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 32%) minmax(0, 68%);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.faq-section__intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.faq-section__intro h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.faq-section__intro h2 .highlight {
  color: var(--primary-green);
}

.faq-section__intro p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 360px;
}

.faq-section__cta {
  border-radius: var(--radius-full);
  padding: 13px 26px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.faq-item.is-open {
  border-color: rgba(17, 185, 86, 0.35);
  box-shadow: 0 8px 28px rgba(3, 18, 66, 0.08);
}

.faq-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.5vw, 24px);
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-dark);
  transition: color var(--transition);
}

.faq-item__trigger:hover {
  color: var(--primary-green);
}

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: -2px;
}

.faq-item__question {
  flex: 1;
  min-width: 0;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-green-light);
  position: relative;
  transition:
    background var(--transition),
    transform var(--transition);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--primary-green);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), background var(--transition);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon {
  background: var(--primary-green);
  transform: rotate(0deg);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: #fff;
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-item__panel {
  overflow: hidden;
}

.faq-item__panel[hidden] {
  display: none;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 clamp(18px, 2.5vw, 24px) clamp(18px, 2.5vw, 22px);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

.faq-item.is-open .faq-item__trigger {
  color: var(--primary-dark);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: clamp(48px, 7vw, 96px) 0;
}

.cta-banner .container {
  max-width: 1200px;
}

.cta-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(16px, 2.5vw, 22px);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  box-shadow:
    0 4px 6px rgba(3, 18, 66, 0.04),
    0 24px 48px rgba(3, 18, 66, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 85% at 0% 100%, rgba(37, 99, 235, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 95% 75% at 100% 0%, rgba(96, 165, 250, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(17, 185, 86, 0.12) 0%, transparent 55%),
    linear-gradient(155deg, #030d28 0%, #051a4a 32%, #082f75 68%, #0a3d92 100%);
  pointer-events: none;
}

.cta-banner-dots {
  position: absolute;
  z-index: 0;
  width: min(200px, 28vw);
  height: min(120px, 22vw);
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 1.2px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.cta-banner-dots--left {
  left: clamp(8px, 3vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}

.cta-banner-dots--right {
  right: clamp(8px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 36px);
  width: min(160px, 24vw);
  height: min(100px, 18vw);
  mask-image: linear-gradient(-90deg, rgba(0, 0, 0, 0.45), transparent);
  -webkit-mask-image: linear-gradient(-90deg, rgba(0, 0, 0, 0.45), transparent);
}

.cta-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.cta-banner-content {
  max-width: 38rem;
}

.cta-banner-content h2 {
  color: #fff;
  font-size: clamp(1.45rem, 1.9vw + 0.4rem, 2.05rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 14px;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.cta-banner-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cta-banner-buttons .btn-primary {
  box-shadow: 0 8px 24px rgba(17, 185, 86, 0.35);
}

.cta-banner-buttons .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(17, 185, 86, 0.42);
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* =============================================
   FOOTER#site-footer
   ============================================= */
#site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #020a1f 0%,
    var(--primary-dark) 38%,
    #061a4d 72%,
    #0b2f6e 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 12% 0%, rgba(37, 99, 235, 0.24) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 88% 100%, rgba(37, 99, 235, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 50% 45%, rgba(17, 185, 86, 0.07) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

#site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.5) 35%,
    rgba(17, 185, 86, 0.35) 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) repeat(2, minmax(0, 1fr)) minmax(240px, 320px);
  gap: 48px;
  align-items: start;
}

.footer-brand .footer-branding {
  margin-bottom: 16px;
}

.footer-branding .footer-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-branding .footer-logo-link:hover {
  opacity: 0.88;
}

.footer-branding .footer-logo-link:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.footer-branding .footer-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.footer-branding .site-logo,
.footer-brand .site-logo {
  color: #fff;
}

.footer-branding .site-logo .logo-text,
.footer-brand .site-logo .logo-text {
  color: #fff;
}

.footer-branding .site-logo .logo-text span,
.footer-brand .site-logo .logo-text span {
  color: var(--primary-green);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links__title {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 5px;
  letter-spacing: 0.01em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 0;
}

.social-link {
  width: 35px;
  height: 35px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 185, 86, 0.28);
}

.social-link:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.social-link--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.social-link--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.28);
}

.social-link--instagram:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  border-color: #dd2a7b;
  box-shadow: 0 8px 20px rgba(221, 42, 123, 0.28);
}

.social-link--twitter:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.social-link--linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.28);
}

.footer-col--bordered {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col div {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary-green); }

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-cta__title {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin: 0;
  max-width: 16ch;
}

.footer-cta__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
  max-width: 28ch;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-copyright__credit {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
    text-decoration: underline;
}

.footer-copyright__credit:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-inner { gap: 40px; }

  .footer-grid {
    grid-template-columns: 220px repeat(2, minmax(0, 1fr)) minmax(220px, 280px);
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  #site-header{
    background-color: #fff;
  }
	.header-actions a.btn.btn-primary {
    font-size: 12px;
    line-height: 20px;
    padding: 5px 10px;
}
	.header-actions {
    gap: 2px;
}
  :root { --header-height: 64px; }
  .section-pad { padding: 72px 0; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-section {
    min-height: auto;
    justify-content: flex-start;
    align-items: stretch;
    background-position: 75% center;
    padding-bottom: 56px;
    overflow: visible;
  }

  .hero-bg-dots__svg {
    opacity: 0.16;
  }

  .hero-section .container {
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-inner {
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding-top: 40px;
  }

  .hero-content p { max-width: 75%; margin: 20px auto; }
  .hero-buttons { justify-content: center; margin-bottom: 10px;}
  .hero-trust { justify-content: center; }

  .hero-feature-bar {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: 40px;
    margin-bottom: 0;
    z-index: 2;
  }

  .hero-feature-bar__container {
    width: 100%;
    max-width: min(640px, 94vw);
    padding-left: 0;
    padding-right: 0;
  }

  .feature-bar-card {
    border-radius: 16px;
  }

  .feature-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-bar-item:nth-child(2) { border-right: none; }
  .feature-bar-item:nth-child(3) { border-right: 1px solid var(--border-color); border-top: 1px solid var(--border-color); }
  .feature-bar-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border-color); }

  .growth-features.section-pad {
    padding-top: calc(72px + clamp(40px, 8vw, 56px));
  }

  .growth-features__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .growth-features__intro {
    max-width: 100%;
    margin: 0 auto;
  }

  .growth-features__accent {
    margin-left: auto;
    margin-right: auto;
  }

  .growth-features__intro p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .growth-features__cta {
    margin: 0 auto;
  }

  .growth-features__grid {
    max-width: 640px;
    margin: 0 auto;
  }

  .how-it-works.section-pad {
    padding-top: 72px;
  }
  .steps-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 40px;
    max-width: 720px;
  }

  .step-connector {
    display: none;
  }

  .step-item {
    max-width: none;
    padding: 0 12px;
  }

  .ai-engine-dots__svg {
    opacity: 0.14;
  }

  .ai-engine-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    row-gap: 24px;
  }

  /* One row × 3 columns per list (left and right). */
  .ai-feature-list--left,
  .ai-feature-list--right {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 2.5vw, 20px);
    width: 100%;
  }

  /* Must match base nth-child specificity so grid-area: l1…r3 does not stick on mobile. */
  .ai-feature-list--left .ai-feature-item:nth-child(1),
  .ai-feature-list--left .ai-feature-item:nth-child(2),
  .ai-feature-list--left .ai-feature-item:nth-child(3),
  .ai-feature-list--right .ai-feature-item:nth-child(1),
  .ai-feature-list--right .ai-feature-item:nth-child(2),
  .ai-feature-list--right .ai-feature-item:nth-child(3) {
    grid-area: auto;
    grid-row: auto;
    grid-column: auto;
    min-width: 0;
    max-width: 100%;
  }

  .ai-center {
    order: -1;
    margin-bottom: 32px;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .robot-container {
    width: clamp(220px, 55vw, 270px);
    max-height: clamp(320px, 75vw, 375px);
    padding: clamp(8px, 5%, 14px);
  }

  .ai-feature-item--left .ai-feature-inner,
  .ai-feature-item--right .ai-feature-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Icon first, then heading + description (both columns). */
  .ai-feature-item--left .ai-feature-icon,
  .ai-feature-item--right .ai-feature-icon {
    order: 1;
  }

  .ai-feature-item--left .ai-feature-text,
  .ai-feature-item--right .ai-feature-text {
    order: 2;
    text-align: center;
    width: 100%;
    min-width: 0;
    flex: 0 1 auto;
  }

  .ai-feature-item--left .ai-feature-text h3,
  .ai-feature-item--right .ai-feature-text h3,
  .ai-feature-item--left .ai-feature-text p,
  .ai-feature-item--right .ai-feature-text p {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .ai-feature-item--left .ai-feature-connector,
  .ai-feature-item--right .ai-feature-connector {
    order: 3;
  }

  .ai-feature-item--left .ai-feature-text p,
  .ai-feature-item--right .ai-feature-text p {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .ai-feature-connector {
    display: none;
  }

  .cta-banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .cta-banner-content {
    max-width: 36rem;
    margin: 0 auto;
  }
  .cta-banner-actions {
    justify-self: center;
    max-width: 100%;
    align-items: center;
  }
  .cta-banner-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq-section__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-section__intro {
    position: static;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }

  .faq-section__intro p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-section__cta {
    margin: 0 auto;
  }

  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col--bordered { border-right: none; }
  .footer-cta {
    grid-column: auto;
    max-width: 360px;
  }
}

/* Phones / narrow tablets: one feature per row, full width. */
@media (max-width: 767px) {
  .ai-feature-list--left,
  .ai-feature-list--right {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  body.single-post h2 {
    font-size: 20px;
    line-height: 30px;
}
  .contact-form-card__cf7 .wpcf7-form{
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}
  .hero-content p {
    max-width: 100%;
}

  .ai-feature-list--left .ai-feature-item:nth-child(1),
  .ai-feature-list--left .ai-feature-item:nth-child(2),
  .ai-feature-list--left .ai-feature-item:nth-child(3),
  .ai-feature-list--right .ai-feature-item:nth-child(1),
  .ai-feature-list--right .ai-feature-item:nth-child(2),
  .ai-feature-list--right .ai-feature-item:nth-child(3) {
    width: 100%;
    max-width: 100%;
  }

  .ai-feature-item--left .ai-feature-inner,
  .ai-feature-item--right .ai-feature-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .ai-feature-item--left .ai-feature-icon,
  .ai-feature-item--right .ai-feature-icon {
    order: 1;
  }

  .ai-feature-item--left .ai-feature-text,
  .ai-feature-item--right .ai-feature-text {
    order: 2;
    text-align: left;
    flex: 1 1 auto;
  }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
	.ai-engine.section-pad {
    padding-top: 0;
}
  .container { padding: 0 16px; }
  h1 { font-size: 2.25rem; }

  .hero-feature-bar {
    margin-top: 32px;
  }

  .hero-feature-bar__container {
    max-width: 100%;
  }

  .feature-bar-grid { grid-template-columns: 1fr 1fr; }
  .feature-bar-item { padding: 20px; }

  .growth-features.section-pad {
    padding-top: calc(56px + clamp(32px, 10vw, 48px));
  }

  .growth-features__layout {
    gap: 32px;
  }

  .growth-features__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .gf-card {
    padding: 22px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .how-it-works.section-pad {
    padding-top: 56px;
  }
  .steps-track {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
  }

  .how-it-works .step-content {
    max-width: 340px;
  }

  div.blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid .blog-card:last-child { display: block; }
  .blog-card-image { height: 180px; }
  .blog-card-body { padding: 18px 18px 20px; }
  .blog-card-body h3 { font-size: 1rem; }
  .blog-card-excerpt { -webkit-line-clamp: 2; margin-bottom: 14px; }
  .blog-card-more { align-self: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta {
    grid-column: 1 / -1;
    max-width: 100%;
    padding-top: 8px;
  }
  .footer-cta__title {
    max-width: 100%;
  }
  .footer-cta__desc {
    max-width: 42ch;
  }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner-card {
    padding: 45px 20px;
    border-radius: 16px;
  }
  .cta-banner-dots {
    opacity: 0.22;
  }
  .insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .faq-section__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-section__intro {
    position: static;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }

  .faq-section__intro p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-section__cta {
    margin: 0 auto;
  }

  .faq-item__trigger {
    padding: 16px 18px;
    font-size: 0.9375rem;
  }

  .faq-item__panel p {
    padding: 0 18px 16px;
  }

  /* AI feature row: tighter type + icon so 3 columns fit small phones. */
  .ai-engine .ai-feature-icon {
    width: 48px;
    height: 48px;
  }
  .ai-engine .ai-feature-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  :root { --header-height: 60px; }
  h1 { font-size: 2rem; }

  .industries-track-inner {
    gap: 12px;
    animation-duration: 45s;
  }
  .industry-card {
    width: clamp(168px, 72vw, 220px);
    padding: 20px 14px 18px;
  }

  .industry-desc {
    font-size: 0.6875rem;
    max-width: 100%;
  }
  .hero-feature-bar {
    margin-top: 24px;
  }

  .growth-features__intro h2 {
    font-size: 1.5rem;
  }

  .growth-features__grid {
    max-width: 100%;
  }

  .feature-bar-grid { grid-template-columns: 1fr; }
  .feature-bar-item {
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--border-color);
  }
  .feature-bar-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta {
    padding-top: 4px;
  }
}

/* =============================================
   WORDPRESS CORE
   ============================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--text-muted); text-align: center; }
.sticky { }
.gallery-caption { }
.bypostauthor { }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { clear: both; display: block; margin: 1em auto; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Post / Page content */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  margin: 1.5em 0 0.5em;
}
.entry-content p { margin-bottom: 1.25rem; word-break: break-word; }
.entry-content ul, .entry-content ol {
  list-style: initial;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
}
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--primary-green); }
.entry-content a:hover { text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--primary-green);
  padding: 16px 24px;
  background: var(--bg-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
}
.entry-content code {
  background: var(--bg-soft2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: 'Fira Code', monospace;
}
.entry-content pre {
  background: var(--primary-dark);
  color: #e2e8f0;
  padding: 20px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.entry-content pre code { background: none; padding: 0; color: inherit; }
.entry-content img { border-radius: var(--radius-md); }
.entry-content table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  font-size: 14px;
}
.entry-content table tr:nth-child(1) {
    background-color: #11b956;
    color: #fff;
}
.entry-content table td:nth-child(1) {
 	width: 19%;
}
.entry-content table.half-column td:nth-child(1) {
    width: 50%;
}
.entry-content th, .entry-content td {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  text-align: left;
}
.entry-content th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--text-dark);
}
.table-container {
    overflow-x: auto;
	    width: 100%;
}



/* Page header */
.page-header {
  background: var(--bg-soft);
  padding: 80px 0 56px;
  margin-top: var(--header-height);
}

.page-header h1 {
  margin-bottom: 12px;
}

/* Blog */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 60px 0;
}

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

.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-2px);
}

.post-card-image {
  min-height: 180px;
  background: linear-gradient(135deg, var(--primary-green-light), #dbeafe);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
}

.post-card-body h2 { font-size: 1.25rem; margin-bottom: 10px; }
.post-card-body h2 a { color: var(--text-dark); }
.post-card-body h2 a:hover { color: var(--primary-green); }

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}

.read-more:hover { gap: 10px; }

/* Sidebar */
.sidebar-widgets {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
aside.blog-sidebar {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex: 0 0 30%;
}
.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 24px);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}


.sidebar-widget .widget-title {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

/* Sidebar search bar (input + green icon button) */
.sidebar-widget--search .search-form,
.sidebar-search-form {
  display: block;
  margin: 0;
}

.sidebar-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  background: #f5f7fa;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.sidebar-search:focus-within {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(17, 185, 86, 0.14);
  background: var(--bg-white);
}

.sidebar-search__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 11px 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--text-dark);
  box-shadow: none;
}

.sidebar-search__input::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.sidebar-search__input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.sidebar-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--primary-green);
  color: #fff;
  cursor: pointer;
  transition: background-color var(--transition);
}

.sidebar-search__btn:hover,
.sidebar-search__btn:focus-visible {
  background: var(--primary-green-dark);
  transform: none;
  box-shadow: none;
}

.sidebar-search__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-post-list,
.sidebar-category-list,
.sidebar-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-post-list__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-post-list__item:first-child {
  padding-top: 0;
}

.sidebar-post-list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-post-list__link {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.sidebar-post-list__link:hover,
.sidebar-post-list__link:focus-visible {
  color: var(--primary-green);
}

.sidebar-post-list__date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sidebar-category-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-category-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition);
}

.sidebar-category-list__link:hover,
.sidebar-category-list__link:focus-visible {
  color: var(--primary-green);
}

.sidebar-category-list__name {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

.sidebar-category-list__count {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition);
}

.sidebar-category-list__link:hover .sidebar-category-list__count,
.sidebar-category-list__link:focus-visible .sidebar-category-list__count {
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
}

.sidebar-widget--cta {
  text-align: center;
  background: linear-gradient(145deg, var(--primary-dark) 0%, #052a6e 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 44px rgba(3, 18, 66, 0.18);
}

.sidebar-widget--cta:hover {
  border-color: rgba(17, 185, 86, 0.35);
  box-shadow: 0 16px 48px rgba(3, 18, 66, 0.24);
}

.sidebar-widget--cta .widget-title {
  color: #fff;
  margin-bottom: 10px;
}

.sidebar-widget__desc {
  margin: 0 0 20px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.sidebar-widget__btn {
  width: 100%;
  justify-content: center;
}

/* WordPress dynamic sidebar widgets */
.sidebar-widget p {
  margin: 0 0 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #dbdbdb;
}

.sidebar-widget p:last-child {
  margin-bottom: 0;
}

.sidebar-widget li + li {
  margin-top: 0;
}

.sidebar-widget a:not(.btn):not(.sidebar-post-list__link):not(.sidebar-category-list__link) {
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition);
}

.sidebar-widget a:not(.btn):not(.sidebar-post-list__link):not(.sidebar-category-list__link):hover,
.sidebar-widget a:not(.btn):not(.sidebar-post-list__link):not(.sidebar-category-list__link):focus-visible {
  color: var(--primary-green);
}

/* Single post */
.single-post-body {
  background: var(--bg-white);
}

.single-post h2 {
  font-size: 24px;
  line-height: 34px;
  margin-top: 20px;
}
.single-post h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}

.single-post-body.section-pad {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.single-post-layout {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: space-between;
}
.single-post-layout .single-post-article {
    flex: 0 0 68%;
}
.single-post-featured {
  margin-bottom: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.single-post-featured img {
  display: block;
  width: 100%;
  height: auto;
}


.single-post-author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2.8vw, 28px);
  align-items: start;
  margin-top: clamp(30px, 4vw, 42px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #edf0f5;
  border-left: 6px solid #0da348;
  border-radius: 14px;
  background: #fff;
}

.single-post-author-card__avatar {
	width: clamp(74px, 9vw, 90px);
    height: clamp(74px, 9vw, 90px);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #11b956;
    background-color: #e7ffdf;
}
.single-post-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 16px;
}

.single-post-share__label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.single-post-share__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-post-share__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.single-post-share__action:hover,
.single-post-share__action:focus-visible {
  color: #fff;
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-1px);
  outline: none;
}

.single-post-share__icon {
  width: 18px;
  height: 18px;
}

.single-post-share__copy.is-copied {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.single-post-author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-author-card__name {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.single-post-author-card__role {
    margin: 8px 0 12px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #031242;
    font-weight: 700;
}

.single-post-author-card__bio {
  margin: 0 0 18px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 78ch;
  font-size: 14px;
}

.single-post-author-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.single-post-author-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: color var(--transition);
}

.single-post-author-card__link:hover,
.single-post-author-card__link:focus-visible {
  color: #11b956;
}

.single-post-author-card__link-icon {
  width: 20px;
  height: 20px;
  color: #11b956;
  flex-shrink: 0;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.single-post-tags__link {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.single-post-tags__link:hover,
.single-post-tags__link:focus-visible {
  color: var(--primary-green);
  border-color: rgba(17, 185, 86, 0.35);
  background: var(--primary-green-light);
}

.single-post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.single-post-nav a {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-green);
  text-decoration: none;
  transition: color var(--transition);
}

.single-post-nav a:hover,
.single-post-nav a:focus-visible {
  color: var(--primary-green-dark);
}

@media (max-width: 900px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card-body { padding: 20px; }
	.single-post-author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .single-post-author-card__avatar {
    margin: 0 auto 4px;
  }
  div.single-post-author-card__links {
    gap: 10px 18px;
justify-content: center;
  }
	.single-post-nav{
		 padding-bottom: 30px;
	}
}

/* 404 */
.error-404-wrap {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-soft);
}

.error-404-content .error-code {
  font-family: var(--font-primary);
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1;
  opacity: 0.3;
}

.error-404-content h2 { margin-bottom: 12px; }
.error-404-content p { margin-bottom: 28px; color: var(--text-muted); }

/* Comments */
.comments-area { padding-top: 40px; border-top: 1px solid var(--border-color); margin-top: 40px; }
.comment-list { list-style: none; }
.comment { margin-bottom: 24px; padding: 20px; background: var(--bg-soft); border-radius: var(--radius-md); }
.comment-meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 8px; }

/* Forms */
input[type="text"], input[type="email"], input[type="search"],
input[type="url"], textarea, select {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all var(--transition);
  outline: none;
}

input[type="text"]:focus, input[type="email"]:focus,
input[type="search"]:focus, textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(17,185,86,0.12);
}

input[type="submit"] {
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--transition);
}

input[type="submit"]:hover {
  background: var(--primary-green-dark);
  transform: translateY(-1px);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.page-numbers:hover, .page-numbers.current {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

/* Notification bar */
.notice-bar {
  background: var(--primary-green);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.notice-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* Search form */
.search-form {
  display: flex;
  gap: 8px;
}

.search-field { flex: 1; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(20px, 4vw, 32px);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(17, 185, 86, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  background: var(--primary-green-dark);
  box-shadow: 0 10px 28px rgba(17, 185, 86, 0.45);
  transform: translateY(-2px);
  outline: none;
}

.back-to-top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.back-to-top__icon svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 20px;
  }

  .back-to-top__icon svg {
    width: 20px;
    height: 20px;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-main {
  background: var(--bg-white);
}

.contact-main.section-pad {
  padding-top: clamp(48px, 6vw, 72px);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 4vw, 40px);
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 3vw, 36px);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.contact-social-card {
  background: linear-gradient(145deg, var(--primary-dark) 0%, #052a6e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 44px rgba(3, 18, 66, 0.22);
  padding: clamp(24px, 3vw, 36px);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.contact-form-card:hover,
.contact-info-card:hover {
  border-color: rgba(17, 185, 86, 0.25);
  box-shadow: var(--shadow-lg);
}

.contact-social-card:hover {
  border-color: rgba(17, 185, 86, 0.35);
  box-shadow: 0 16px 48px rgba(3, 18, 66, 0.28);
}

.contact-form-card h2,
.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-social-card div {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.contact-form-card__lead {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-social-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-form__alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-form__alert--success {
  background: var(--primary-green-light);
  color: var(--primary-green-dark);
  border: 1px solid rgba(17, 185, 86, 0.25);
}

.contact-form__alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.contact-form__row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__field label {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form__field label .required {
  color: var(--primary-green);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-muted);
}

.contact-form__field input:hover,
.contact-form__field textarea:hover {
  border-color: #cbd5e1;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  background: var(--bg-white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(17, 185, 86, 0.15);
}

.contact-form__field input.is-invalid,
.contact-form__field textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__error {
  display: block;
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 6px;
  min-height: 1.2em;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Contact Form 7 inside contact card */
.contact-form-card__cf7 .wpcf7 {
  margin: 0;
}

.contact-form-card__cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 20px;
  align-items: start;
  margin: 0;
}

.contact-form-card__cf7 .wpcf7-form > p {
  margin: 0 0 20px;
}
.contact-form-card__cf7 .wpcf7-form > p:nth-last-of-type(-n + 1) {
  grid-column: 1 / -1;
}

.contact-form-card__cf7 .wpcf7-form > p:last-of-type {
  margin-bottom: 0;
}

.contact-form-card__cf7 label {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-card__cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 5px;
}

.contact-form-card__cf7 input[type="text"],
.contact-form-card__cf7 input[type="email"],
.contact-form-card__cf7 input[type="tel"],
.contact-form-card__cf7 input[type="url"],
.contact-form-card__cf7 textarea,
.contact-form-card__cf7 select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.contact-form-card__cf7 textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-card__cf7 input:focus,
.contact-form-card__cf7 textarea:focus,
.contact-form-card__cf7 select:focus {
  outline: none;
  background: var(--bg-white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(17, 185, 86, 0.15);
}
.contact-form-card__cf7 input.wpcf7-form-control.wpcf7-submit.btn.btn-primary:focus {
  background-color: #11b956;
}

.contact-form-card__cf7 .wpcf7-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px 24px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary-green);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.contact-form-card__cf7 .wpcf7-submit:hover {
  background: var(--primary-green-dark, #0d9a4a);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(17, 185, 86, 0.35);
}

.contact-form-card__cf7 .wpcf7-not-valid-tip {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 6px;
}

.contact-form-card__cf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 16px;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border-width: 1px;
}

.contact-form-card__cf7 .wpcf7 form.sent .wpcf7-response-output {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
  grid-column: 1 / -1;
}

.contact-form-card__cf7 .wpcf7 form.failed .wpcf7-response-output,
.contact-form-card__cf7 .wpcf7 form.aborted .wpcf7-response-output,
.contact-form-card__cf7 .wpcf7 form.invalid .wpcf7-response-output {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
  grid-column: 1 / -1;
}

.contact-form-card__notice {
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  color: #92400e;
  font-size: 0.9375rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-green-light);
  color: var(--primary-green);
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 4px;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--primary-green);
}

.contact-social-card .social-links,
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Match #site-footer .social-link base + hover (same colors) */
.contact-social-card .social-link,
.contact-social-links .social-link {
  width: 35px;
  height: 35px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
}

.contact-social-card .social-link:hover,
.contact-social-links .social-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 185, 86, 0.28);
}

.contact-social-card .social-link--whatsapp:hover,
.contact-social-links .social-link--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.contact-social-card .social-link--facebook:hover,
.contact-social-links .social-link--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.28);
}

.contact-social-card .social-link--instagram:hover,
.contact-social-links .social-link--instagram:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  border-color: #dd2a7b;
  box-shadow: 0 8px 20px rgba(221, 42, 123, 0.28);
}

.contact-social-card .social-link--twitter:hover,
.contact-social-links .social-link--twitter:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.contact-social-card .social-link--linkedin:hover,
.contact-social-links .social-link--linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.28);
}

@media (max-width: 1024px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
	.single-post-layout {
    display: block;
}
	.single-post-layout .single-post-article , aside.blog-sidebar{
		flex: 0 0 100%;
	}
}

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

  .contact-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-form-card,
  .contact-info-card,
  .contact-social-card {
    padding: 20px;
  }
}

/* =============================================
   BLOG ARCHIVE
   ============================================= */
.blog-archive {
  background: var(--bg-white);
}

.blog-archive.section-pad {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: 0;
}

.blog-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}

.blog-archive-toolbar {
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-top: 15px;
}

.blog-archive-count {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

.blog-archive-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 28px);
}

.blog-archive-empty .card,
.empty-state.card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.empty-state {
  text-align: center;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 4vw, 40px);
}

.empty-state__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green-light), #dbeafe);
}

.empty-state__icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  line-height: 0;
}

.empty-state__icon-svg svg {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.empty-state__title {
  margin: 0 0 10px;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.empty-state__desc {
  margin: 0 auto 28px;
  max-width: 420px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.empty-state__search {
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .blog-archive-layout {
    grid-template-columns: 1fr;
  }

  .blog-archive-sidebar .sidebar-widgets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .blog-archive-sidebar .sidebar-widget--cta {
    grid-column: 1 / -1;
  }
}

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

  .blog-archive-sidebar .sidebar-widgets {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sidebar-widgets {
    gap: 16px;
  }

  .sidebar-widget {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .single-post-layout .sidebar-widgets {
    gap: 16px;
  }
}

/* =============================================
   PAGE HERO (Blog, Contact, Privacy Policy)
   ============================================= */
.page-hero {
  position: relative;
  margin-top: var(--header-height);
  padding: clamp(72px, 10vw, 100px) 0 clamp(40px, 5vw, 56px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ecfdf5 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(17, 185, 86, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(59, 130, 246, 0.1) 0%, transparent 38%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

body.single .page-hero__inner {
  max-width: 940px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.page-hero h1 .highlight {
  color: var(--primary-green);
}

.page-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 auto 20px;
  max-width: 620px;
}

.page-hero__desc:last-child {
  margin-bottom: 0;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.page-hero__chip svg {
  width: 16px;
  height: 16px;
  color: var(--primary-green);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .page-hero {
    padding-bottom: 32px;
  }

  .page-hero__chip {
    justify-content: center;
  }
}

/* =============================================
   LEGAL PAGES (Privacy Policy)
   ============================================= */
.legal-main {
  background: var(--bg-white);
}
.legal-main-content {
  display: flex;
  flex-direction: column;
}

.legal-content-card {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.legal-content-card > h2:first-child,
.legal-content-card > h3:first-child {
  margin-top: 0;
}

.legal-content-card h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--text-dark);
  padding-top: 0.25em;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-content-card h2:not(:first-child) {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d8d8d8;
}

.legal-page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.legal-page-links__label {
  font-weight: 600;
  color: var(--text-muted);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--primary-green);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus { top: 0; }
