/*
Theme Name: ANSA Solutions
Theme URI: https://ansasolutions.com
Description: Custom theme for ANSA Solutions - AI Strategy & Implementation
Version: 1.0.0
Author: ANSA Solutions
Author URI: https://ansasolutions.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ansa-solutions
Domain Path: /languages
*/

:root {
  --primary: #374151;
  --accent: #462CED;
  --background: #FFFFFF;
  --text: #111827;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
  color: var(--text-light);
}

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

a:hover {
  color: #5538f0;
}

strong {
  font-weight: 600;
  color: var(--text);
}

em {
  font-style: italic;
}

/* Headings */
.wp-block-heading {
  margin-bottom: 1.5rem;
}

/* Lists */
ul,
ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Code */
code,
pre {
  background-color: var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.25em 0.5em;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875em;
}

pre {
  padding: 1rem;
  overflow-x: auto;
}

/* Blockquote */
blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-light);
  font-style: italic;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th,
td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background-color: var(--border-light);
  font-weight: 600;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 70px;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-logo a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.site-logo .logo-sa {
  color: var(--accent);
}

.nav-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2rem;
}

.primary-nav {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.primary-nav > li {
  position: relative;
  margin: 0;
}

.primary-nav > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.primary-nav > li > a:hover {
  background-color: var(--border-light);
  color: var(--accent);
}

.nav-dropdown-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  display: inline-block;
  transform: rotate(45deg);
  margin-left: 0.25rem;
  transition: var(--transition);
}

.primary-nav li.menu-item-has-children > a:hover::after {
  transform: rotate(45deg) translateY(-2px);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.primary-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.sub-menu a:hover {
  background-color: var(--border-light);
  color: var(--accent);
  padding-left: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
  font-size: 1.5rem;
}

/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary,
button:not([class]),
input[type="submit"] {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover,
button:not([class]):hover,
input[type="submit"]:hover {
  background-color: #5538f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--accent);
  border: 2px solid transparent;
}

.btn-white:hover {
  background-color: var(--border-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--border-light);
  color: var(--text);
}

.btn-secondary:hover {
  background-color: var(--border);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  background-color: var(--border-light);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn:disabled,
button:disabled,
input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Forms */
form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background-color: var(--background);
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(70, 44, 237, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 0.5rem;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-error {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-success {
  color: var(--success);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.input-group {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.input-group input {
  flex: 1;
  border: none;
  border-radius: 0;
  padding: 0.75rem 1rem;
}

.input-group button {
  padding: 0.75rem 1.5rem;
  border-radius: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--border-light) 0%, var(--background) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
}

.hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-image {
  margin-top: 3rem;
  display: none;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 200px;
  background-color: var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

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

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-footer a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-footer a::after {
  content: "→";
  transition: var(--transition);
}

.card-footer a:hover::after {
  transform: translateX(4px);
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Badges & Tags */
.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--accent);
  color: #FFFFFF;
}

.badge-outline {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.badge-light {
  background-color: var(--border-light);
  color: var(--text);
}

.badge-success {
  background-color: var(--success);
  color: #FFFFFF;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--border-light);
  color: var(--text);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Process Steps / Timeline */
.process-steps {
  position: relative;
  counter-reset: step-counter;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 64px;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: var(--border);
}

.step-number {
  counter-increment: step-counter;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0;
}

/* Stats Bar */
.stats-bar {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 3rem 1.5rem;
}

.stats-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1f2937 100%);
  color: #FFFFFF;
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-xl);
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .btn {
  margin: 0.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 4rem 1.5rem 2rem;
  margin-top: 5rem;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-section a:hover {
  color: #FFFFFF;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.footer-logo .logo-an {
  color: #FFFFFF;
}

.footer-logo .logo-sa {
  color: var(--accent);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Images & Media */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 2rem 0;
}

figcaption {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

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

.text-accent {
  color: var(--accent);
}

.text-light {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-lighter);
}

.bg-primary {
  background-color: var(--primary);
  color: #FFFFFF;
}

.bg-accent {
  background-color: var(--accent);
  color: #FFFFFF;
}

.bg-light {
  background-color: var(--border-light);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.flex {
  display: flex;
}

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

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  .header-wrapper {
    height: 60px;
  }

  .primary-nav {
    display: none !important;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column !important;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0 !important;
    gap: 0;
  }

  .primary-nav.active {
    display: flex !important;
  }

  .primary-nav > li > a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
  }

  .sub-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background-color: var(--border-light);
    border: none;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    transition: var(--transition);
  }

  .primary-nav li.menu-item-has-children.active > .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .sub-menu a {
    padding-left: 2.5rem;
  }

  .sub-menu a:hover {
    padding-left: 3rem;
  }

  .mobile-menu-toggle {
    display: block !important;
  }

  .nav-wrapper {
    gap: 1rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero .cta-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .grid {
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .stats-wrapper {
    gap: 1.5rem;
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
  }

  .process-steps {
    margin-left: 1rem;
  }

  .process-step {
    gap: 1.5rem;
  }

  .process-step:not(:last-child)::after {
    left: 16px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 2.5rem 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn,
  button,
  input[type="button"],
  input[type="submit"],
  a.button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  input[type="url"],
  input[type="date"],
  textarea,
  select {
    padding: 0.625rem 0.875rem;
    font-size: 16px;
  }
}

/* WordPress Specific */
.wp-block-image {
  margin: 2rem 0;
}

.wp-block-image img {
  border-radius: var(--radius-lg);
}

.wp-block-group {
  margin: 2rem 0;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  z-index: 100;
}

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

/* ==========================================
   INNER PAGE STYLES
   ========================================== */

/* Page Hero (used by Contact, About, Case Studies) */
.page-hero,
.hero--dark-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #1f2937 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  color: #FFFFFF;
}

.page-hero.hero-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #1f2937 100%);
}

.page-hero .hero-content,
.hero--dark-gradient .hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title,
.hero__title {
  color: #FFFFFF !important;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero-subtitle,
.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Badge variants */
.badge--primary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Button classes (templates use .button instead of .btn) */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.button--primary {
  background-color: var(--accent);
  color: #FFFFFF;
}

.button--primary:hover {
  background-color: #5538f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #FFFFFF;
}

.button--secondary {
  background-color: var(--border-light);
  color: var(--text);
}

.button--secondary:hover {
  background-color: var(--border);
}

.button--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.button--full-width {
  width: 100%;
}

/* Section Header (BEM style used in inner pages) */
.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  margin-bottom: 0.75rem;
}

.section__header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section__intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

/* Dark CTA sections */
.section--cta-dark,
.cta-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #1f2937 100%);
  color: #FFFFFF;
  padding: 4rem 1.5rem;
  text-align: center;
  margin-top: 0;
}

.section--cta-dark h2,
.cta-gradient h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.section--cta-dark p,
.cta-gradient p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   PROCESS AUTOMATION PAGE
   ========================================== */

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cards-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.card--capability {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

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

.card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card__description {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline__item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.timeline__step {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.timeline__content {
  padding-top: 0.5rem;
}

.timeline__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Partnership */
.partnership__content {
  max-width: 700px;
}

.partnership__content p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
  padding: 4rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-column h2 {
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(70, 44, 237, 0.1);
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.contact-info-column {
  position: sticky;
  top: 100px;
}

.contact-info-card {
  background: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.contact-info-block {
  margin-bottom: 1.5rem;
}

.contact-info-block h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-info-block p {
  color: var(--text);
  margin-bottom: 0;
}

.contact-info-block a {
  color: var(--accent);
  font-weight: 500;
}

.link-primary {
  color: var(--accent);
  font-weight: 600;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.mission-section {
  padding: 4rem 0;
}

.mission-content {
  max-width: 700px;
}

.mission-statement {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
}

.leadership-section {
  padding: 4rem 0;
  background: var(--border-light);
}

.leadership-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.leadership-image {
  width: 100%;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-lighter);
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.placeholder-text {
  font-size: 0.875rem;
  color: var(--text-lighter);
}

.leadership-content h2 {
  margin-bottom: 0.25rem;
}

.leadership-title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.leadership-bio {
  color: var(--text-light);
  line-height: 1.7;
}

.leadership-location {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.approach-section {
  padding: 4rem 0;
}

.approach-intro {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.approach-content {
  max-width: 700px;
}

.approach-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================
   CASE STUDIES PAGE
   ========================================== */

.case-studies-section {
  padding: 4rem 0;
}

.case-studies-section .case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.case-study-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.case-study-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--border-light);
}

.industry-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.case-study-title {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.case-study-content {
  padding: 1.5rem 2rem;
}

.case-study-section {
  margin-bottom: 1.25rem;
}

.case-study-section:last-child {
  margin-bottom: 0;
}

.case-study-section .section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.case-study-section p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Common Thread Section */
.common-thread-section {
  padding: 4rem 0;
  background: var(--border-light);
}

.common-thread-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-intro {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.common-threads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.thread-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.thread-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.thread-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================
   AI READINESS ASSESSMENT PAGE
   ========================================== */

/* Highlights list */
.highlights-list {
  max-width: 600px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--success);
}

.highlight-item span {
  color: var(--text);
  font-size: 1rem;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Process steps (BEM variant) */
.process-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-step__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.process-step__description {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  background: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.benefit-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Report preview */
.report-preview-container {
  max-width: 700px;
  margin: 0 auto;
}

.report-preview-card {
  background: var(--border-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.report-preview-header h3 {
  margin-bottom: 1.25rem;
}

.report-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.report-preview-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.report-preview-list li:last-child {
  border-bottom: none;
}

.report-preview-list li strong {
  color: var(--text);
}

.report-preview-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Demo request form */
.demo-request-form input,
.demo-request-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.demo-request-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.demo-request-form select option {
  color: var(--text);
  background: var(--background);
}

/* Custom logo in header */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo .custom-logo {
  max-height: 45px;
  width: auto;
}

/* ==========================================
   INNER PAGE RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr !important;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero,
  .hero--dark-gradient {
    padding: 3.5rem 1.5rem;
  }

  .hero-title,
  .hero__title {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-column {
    position: static;
  }

  .leadership-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leadership-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .cards-grid--2x2 {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .common-threads-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-section .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    margin-bottom: 0;
  }
}

/* ==========================================
   PRICING CARDS (AI Readiness page)
   ========================================== */

.pricing-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card__price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-light);
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  text-align: left;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

/* ==========================================
   AUTOMATION ACCELERATORS PAGE
   ========================================== */

/* Flow diagram */
.accelerator-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.flow-step {
  text-align: center;
  max-width: 200px;
  flex: 1;
}

.flow-step__icon {
  margin-bottom: 1rem;
}

.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
}

.flow-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.flow-step__description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.flow-connector {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  padding-top: 1rem;
}

/* Bundle cards */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bundle-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.bundle-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.bundle-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
}

.bundle-icon svg {
  width: 24px;
  height: 24px;
}

.revenue-icon { background: #10B981; }
.success-icon { background: #3B82F6; }
.finance-icon { background: #F59E0B; }
.security-icon { background: #8B5CF6; }

.bundle-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.bundle-card__target {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.bundle-card__description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.bundle-card__accelerators {
  margin-bottom: 1rem;
}

.bundle-card__accelerators h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.bundle-card__accelerators ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bundle-card__accelerators li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
}

.bundle-card__accelerators li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Reasons grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.reason-item {
  background: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.reason-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.reason-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================
   SAMPLE REPORT PREVIEW PAGE
   ========================================== */

.report-preview-section {
  padding: 4rem 0;
}

.report-preview-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.report-teaser-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.report-header {
  background: var(--primary);
  color: #FFFFFF;
  padding: 2rem;
  text-align: center;
}

.report-header h3 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.overall-score {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.report-content {
  padding: 2rem;
}

.scorecard-section {
  margin-bottom: 2rem;
}

.scorecard-section h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.scorecard-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scorecard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.scorecard-item:last-child {
  border-bottom: none;
}

.metric-label {
  color: var(--text);
  font-size: 0.95rem;
}

.metric-score {
  font-weight: 600;
  color: var(--accent);
}

.blur {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}

.opportunities-section,
.gap-analysis-section {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--border-light);
  border-radius: var(--radius-md);
}

.opportunities-section h4,
.gap-analysis-section h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.opportunity-hint,
.gap-hint {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.teaser-note {
  padding: 1.5rem 2rem;
  background: var(--border-light);
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Gated form section */
.gated-form-section {
  padding: 4rem 0;
  background: var(--border-light);
}

.gated-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.gated-form-wrapper h2 {
  margin-bottom: 0.75rem;
}

.form-intro {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.gated-form .form-group {
  text-align: left;
  margin-bottom: 1.25rem;
}

/* What's inside section */
.whats-inside-section {
  padding: 4rem 0;
}

.whats-inside-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.whats-inside-section .section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.report-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.feature-icon .icon {
  width: 24px;
  height: 24px;
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================
   ADDITIONAL RESPONSIVE (new pages)
   ========================================== */

@media (max-width: 768px) {
  .accelerator-flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .flow-step {
    max-width: 100%;
  }

  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .report-features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* Print Styles */
@media print {
  body {
    color: #000;
    background-color: #fff;
  }

  a {
    text-decoration: underline;
  }

  .site-header,
  .site-footer,
  .mobile-menu-toggle,
  .btn,
  .cta-section {
    display: none;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  img {
    max-width: 100%;
  }
}