/*
Theme Name: Appljack
Theme URI: https://appljack.com
Author: Appljack
Author URI: https://appljack.com
Description: Lead-generation and informational theme for Appljack — programmatic job advertising platform.
Version: 1.0.0
License: Proprietary
Text Domain: appljack
*/

/* ========== Design Tokens ========== */
:root {
  --aj-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --aj-dark: #2a3d44;
  --aj-dark-hover: #1e2d33;
  --aj-teal: #4e6766;
  --aj-green: #7aaa4b;
  --aj-green-hover: #5c8038;
  --aj-green-light: #e6f9f0;
  --aj-accent: #0070f3;
  --aj-accent-hover: #005bb5;
  --aj-accent-light: #e8f4ff;
  --aj-bg: #ffffff;
  --aj-bg-warm: #fafafa;
  --aj-bg-section: #f7f7f5;
  --aj-text: #171717;
  --aj-text-secondary: #666666;
  --aj-text-muted: #999999;
  --aj-border: #eaeaea;
  --aj-danger: #e5484d;
  --aj-radius: 8px;
  --aj-radius-lg: 12px;
  --aj-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --aj-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --aj-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --aj-transition: 150ms ease;
  --aj-container: 1200px;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

a:hover {
  color: var(--aj-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--aj-text);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1em;
}

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

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

.aj-section {
  padding: 80px 0;
}

.aj-section--alt {
  background-color: var(--aj-bg-section);
}

.aj-section--dark {
  background-color: var(--aj-dark);
  color: #ffffff;
}

.aj-section--dark h2,
.aj-section--dark h3 {
  color: #ffffff;
}

.aj-section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

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

.aj-text-secondary {
  color: var(--aj-text-secondary);
}

.aj-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--aj-green);
  margin-bottom: 12px;
}

.aj-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.aj-section-subtitle {
  font-size: 1.125rem;
  color: var(--aj-text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ========== Buttons ========== */
.aj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--aj-font);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--aj-radius);
  cursor: pointer;
  transition: all var(--aj-transition);
  text-decoration: none;
  line-height: 1.4;
}

.aj-btn--primary {
  background-color: var(--aj-green);
  color: #ffffff;
  border-color: var(--aj-green);
}

.aj-btn--primary:hover {
  background-color: var(--aj-green-hover);
  border-color: var(--aj-green-hover);
  color: #ffffff;
}

.aj-btn--dark {
  background-color: var(--aj-dark);
  color: #ffffff;
  border-color: var(--aj-dark);
}

.aj-btn--dark:hover {
  background-color: var(--aj-dark-hover);
  border-color: var(--aj-dark-hover);
  color: #ffffff;
}

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

.aj-btn--outline:hover {
  background-color: var(--aj-bg-section);
  border-color: #ccc;
  color: var(--aj-dark);
}

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

.aj-btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--aj-dark);
}

.aj-btn--lg {
  padding: 16px 36px;
  font-size: 17px;
}

.aj-btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ========== Header / Navigation ========== */
.aj-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--aj-border);
}

.aj-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.aj-header__logo img,
.aj-header__logo .custom-logo-link img,
.custom-logo-link img,
.aj-header .custom-logo {
  height: 40px;
  width: auto;
  max-height: 40px;
}

.aj-header__logo span {
  font-size: 22px;
  font-weight: 700;
  color: var(--aj-dark);
  margin-left: 10px;
}

.aj-header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.aj-header__nav a {
  padding: 6px 8px;
}

.aj-header__nav a {
  color: var(--aj-text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--aj-transition);
}

.aj-header__nav a:hover {
  color: var(--aj-text);
}

.aj-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.aj-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--aj-text);
}

.aj-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ========== Hero ========== */
.aj-hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--aj-bg) 0%, var(--aj-bg-section) 100%);
}

.aj-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--aj-green-light);
  color: var(--aj-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.aj-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--aj-dark);
}

.aj-hero__title span {
  color: var(--aj-green);
}

.aj-hero__subtitle {
  font-size: 1.2rem;
  color: var(--aj-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.aj-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.aj-hero__visual {
  position: relative;
}

.aj-hero__image {
  width: 100%;
  border-radius: var(--aj-radius-lg);
  box-shadow: var(--aj-shadow-lg);
}

/* ========== Trusted By / Logo Bar ========== */
.aj-logos {
  padding: 40px 0;
  border-top: 1px solid var(--aj-border);
  border-bottom: 1px solid var(--aj-border);
}

.aj-logos__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--aj-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 24px;
}

.aj-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.aj-logos__grid img {
  height: 28px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity var(--aj-transition);
}

.aj-logos__grid img:hover {
  opacity: 0.7;
}

/* ========== Features Grid ========== */
.aj-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.aj-feature-card {
  background: var(--aj-bg);
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius-lg);
  padding: 32px;
  text-align: left;
  transition: all var(--aj-transition);
}

.aj-feature-card:hover {
  box-shadow: var(--aj-shadow-md);
  border-color: #ddd;
  transform: translateY(-2px);
}

.aj-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--aj-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.aj-feature-card__icon--green {
  background-color: var(--aj-green-light);
  color: var(--aj-green);
}

.aj-feature-card__icon--blue {
  background-color: var(--aj-accent-light);
  color: var(--aj-accent);
}

.aj-feature-card__icon--dark {
  background-color: #f0f0f0;
  color: var(--aj-dark);
}

.aj-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.aj-feature-card p {
  color: var(--aj-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ========== Stats Bar ========== */
.aj-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.aj-stat {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.aj-stat:last-child {
  border-right: none;
}

.aj-stat__number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.aj-stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ========== How It Works ========== */
.aj-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}

.aj-step {
  text-align: center;
  position: relative;
}

.aj-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--aj-dark);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.aj-step h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.aj-step p {
  color: var(--aj-text-secondary);
  font-size: 14px;
  max-width: 280px;
  margin: 0 auto;
}

/* ========== Testimonials ========== */
.aj-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.aj-testimonial {
  background: var(--aj-bg);
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius-lg);
  padding: 32px;
}

.aj-testimonial__stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 16px;
}

.aj-testimonial__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--aj-text);
  margin-bottom: 20px;
  font-style: italic;
}

.aj-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aj-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--aj-teal);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.aj-testimonial__name {
  font-weight: 600;
  font-size: 14px;
}

.aj-testimonial__role {
  font-size: 13px;
  color: var(--aj-text-muted);
}

/* ========== CTA Section ========== */
.aj-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--aj-dark) 0%, var(--aj-teal) 100%);
  color: #ffffff;
}

.aj-cta h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.aj-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.aj-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========== Lead Gen Form ========== */
.aj-lead-form {
  background: var(--aj-bg);
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius-lg);
  padding: 40px;
  box-shadow: var(--aj-shadow-lg);
  max-width: 500px;
  color: var(--aj-text);
}

.aj-lead-form h3,
.aj-lead-form h4,
.aj-lead-form label,
.aj-lead-form p,
.aj-lead-form span,
.aj-lead-form .wpcf7-form-control-wrap,
.aj-lead-form .wpcf7 label {
  color: var(--aj-text);
}

.aj-lead-form .wpcf7-response-output {
  color: var(--aj-text);
  border-color: var(--aj-border);
}

.aj-lead-form .wpcf7-form input[type="text"],
.aj-lead-form .wpcf7-form input[type="email"],
.aj-lead-form .wpcf7-form input[type="tel"],
.aj-lead-form .wpcf7-form textarea,
.aj-lead-form .wpcf7-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius);
  font-family: var(--aj-font);
  font-size: 14px;
  color: var(--aj-text);
  background: var(--aj-bg);
}

.aj-lead-form .wpcf7-form input[type="submit"] {
  width: 100%;
  background-color: var(--aj-green);
  color: #ffffff;
  border: none;
  border-radius: var(--aj-radius);
  padding: 12px 28px;
  font-family: var(--aj-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color var(--aj-transition);
}

.aj-lead-form .wpcf7-form input[type="submit"]:hover {
  background-color: var(--aj-green-hover);
}

.aj-lead-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.aj-lead-form__subtitle {
  color: var(--aj-text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ========== Contact Page ========== */
.aj-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.aj-contact-info h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

.aj-contact-prop {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.aj-contact-prop__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--aj-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.aj-contact-prop h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.aj-contact-prop p {
  font-size: 14px;
  color: var(--aj-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.aj-contact-cta-note {
  margin-top: 32px;
  padding: 20px;
  background: var(--aj-bg-section);
  border-radius: var(--aj-radius);
  border-left: 4px solid var(--aj-green);
}

.aj-contact-cta-note p {
  margin: 0;
  font-size: 14px;
  color: var(--aj-text-secondary);
  line-height: 1.6;
}

.aj-lead-form--page {
  max-width: none;
  position: sticky;
  top: 96px;
}

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

  .aj-lead-form--page {
    position: static;
  }
}

.aj-form-group {
  margin-bottom: 16px;
}

.aj-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--aj-text);
  margin-bottom: 6px;
}

.aj-form-group input,
.aj-form-group select,
.aj-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius);
  font-family: var(--aj-font);
  font-size: 14px;
  color: var(--aj-text);
  transition: border-color var(--aj-transition), box-shadow var(--aj-transition);
}

.aj-form-group input:focus,
.aj-form-group select:focus,
.aj-form-group textarea:focus {
  outline: none;
  border-color: var(--aj-accent);
  box-shadow: 0 0 0 3px var(--aj-accent-light);
}

.aj-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.aj-lead-form .aj-btn {
  width: 100%;
  margin-top: 8px;
}

.aj-lead-form__disclaimer {
  font-size: 12px;
  color: var(--aj-text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ========== Footer ========== */
.aj-footer {
  background-color: var(--aj-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.aj-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aj-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6);
}

.aj-footer__brand img {
  height: 36px;
  margin-bottom: 16px;
}

.aj-footer__col h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.aj-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aj-footer__col li {
  margin-bottom: 10px;
}

.aj-footer__col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color var(--aj-transition);
}

.aj-footer__col a:hover {
  color: #ffffff;
}

.aj-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.aj-footer__social {
  display: flex;
  gap: 16px;
}

.aj-footer__social a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
}

.aj-footer__social a:hover {
  color: #ffffff;
}

/* ========== Blog / Content ========== */
.aj-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.aj-post-card {
  background: var(--aj-bg);
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius-lg);
  overflow: hidden;
  transition: all var(--aj-transition);
}

.aj-post-card:hover {
  box-shadow: var(--aj-shadow-md);
  transform: translateY(-2px);
}

.aj-post-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.aj-post-card__body {
  padding: 24px;
}

.aj-post-card__category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--aj-green);
  margin-bottom: 8px;
}

.aj-post-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.aj-post-card__title a {
  color: var(--aj-text);
}

.aj-post-card__title a:hover {
  color: var(--aj-accent);
}

.aj-post-card__excerpt {
  font-size: 14px;
  color: var(--aj-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.aj-post-card__meta {
  font-size: 13px;
  color: var(--aj-text-muted);
}

/* Single post */
.aj-single {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

.aj-single__header {
  margin-bottom: 32px;
}

.aj-single__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.aj-single__meta {
  color: var(--aj-text-muted);
  font-size: 14px;
}

.aj-single__content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--aj-text);
}

.aj-single__content h2 {
  margin-top: 2em;
  font-size: 1.75rem;
}

.aj-single__content h3 {
  margin-top: 1.5em;
}

.aj-single__content img {
  border-radius: var(--aj-radius);
  margin: 2em 0;
}

.aj-single__content blockquote {
  border-left: 4px solid var(--aj-green);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--aj-bg-section);
  border-radius: 0 var(--aj-radius) var(--aj-radius) 0;
  font-style: italic;
  color: var(--aj-text-secondary);
}

/* ========== Page Template ========== */
.aj-page-header {
  background: var(--aj-bg-section);
  padding: 64px 0;
  border-bottom: 1px solid var(--aj-border);
}

.aj-page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.aj-page-header p {
  color: var(--aj-text-secondary);
  font-size: 1.125rem;
  margin: 0;
}

.aj-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
  font-size: 16px;
  line-height: 1.8;
}

/* ========== 404 ========== */
.aj-404 {
  text-align: center;
  padding: 120px 24px;
}

.aj-404__code {
  font-size: 8rem;
  font-weight: 800;
  color: var(--aj-border);
  line-height: 1;
  margin-bottom: 16px;
}

.aj-404 h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.aj-404 p {
  color: var(--aj-text-secondary);
  margin-bottom: 32px;
}

/* ========== Pagination ========== */
.aj-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px 0;
}

.aj-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--aj-text);
  transition: all var(--aj-transition);
}

.aj-pagination .page-numbers:hover {
  background-color: var(--aj-bg-section);
  border-color: #ccc;
}

.aj-pagination .page-numbers.current {
  background-color: var(--aj-dark);
  border-color: var(--aj-dark);
  color: #ffffff;
}

/* ========== WordPress Specifics ========== */
.wp-block-image img {
  border-radius: var(--aj-radius);
}

.alignwide {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .aj-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .aj-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .aj-hero__actions {
    justify-content: center;
  }

  .aj-hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .aj-features__grid,
  .aj-testimonials__grid,
  .aj-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 960px) {
  .aj-header__nav {
    display: none;
  }

  .aj-menu-toggle {
    display: block;
  }

  /* Mobile nav overlay */
  .aj-header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 32px 24px;
    gap: 16px;
    z-index: 99;
  }

  .aj-header__nav.open a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--aj-border);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2, .aj-section-title { font-size: 1.75rem; }

  .aj-hero__title {
    font-size: 2.5rem;
  }

  .aj-features__grid,
  .aj-features__grid--2col,
  .aj-steps,
  .aj-testimonials__grid,
  .aj-post-grid {
    grid-template-columns: 1fr;
  }

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

  .aj-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px 24px;
  }

  .aj-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aj-section {
    padding: 48px 0;
  }

  .aj-lead-form {
    padding: 24px;
  }

  .aj-cta h2 {
    font-size: 1.75rem;
  }

  .aj-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .aj-hero__title {
    font-size: 2rem;
  }

  .aj-hero__actions {
    flex-direction: column;
  }

  .aj-hero__actions .aj-btn {
    width: 100%;
  }

  .aj-stat__number {
    font-size: 2.25rem;
  }
}
