/* ═══ GUARANTEED BASE RESET ═══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}body{-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}a{text-decoration:none}
ul,ol{list-style:none;margin:0;padding:0}li{list-style:none}button{cursor:pointer}
.awb-nav,.awb-nav ul,.awb-nav ol,.awb-nav li,nav ul,nav ol,nav li,.menu,.menu ul,.menu li{list-style:none!important;list-style-type:none!important;margin:0;padding:0}
.awb-nav>ul{display:flex;align-items:center;gap:0;flex-wrap:wrap}
.awb-nav>ul>li{position:relative}.awb-nav>ul>li>a{display:block;padding:10px 16px;font-size:14px;font-weight:600;white-space:nowrap}
.awb-nav>ul>li.awb-cta-item>a,.awb-nav .awb-nav-cta{border-radius:50px!important;padding:10px 24px!important}
.awb-nav>a{display:inline-flex;align-items:center;padding:10px 16px;font-size:14px;font-weight:600}
.awb-container{max-width:1200px;margin:0 auto;padding:0 24px}
.awb-menu-toggle{display:none;background:none;border:none;font-size:28px;cursor:pointer;padding:4px}
@media(max-width:768px){
.awb-menu-toggle{display:block}
.awb-nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;padding:12px 0;box-shadow:0 8px 24px rgba(0,0,0,.1);z-index:999}
.awb-nav.active{display:block}.awb-nav>ul{flex-direction:column}.awb-nav>ul>li>a{padding:12px 24px}.awb-nav>a{display:block;padding:12px 24px}}
body.admin-bar .awb-header{top:32px}@media(max-width:782px){body.admin-bar .awb-header{top:46px}}

/* ═══ AI-GENERATED STYLES ═══ */

/*
Theme Name: AI Website Builder Blog
Description: A comprehensive educational platform dedicated to empowering business owners with AI website creation knowledge
Version: 1.0
Author: AI Website Builder Blog
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --awb-primary: #6366f1;
  --awb-primary-dark: #4f46e5;
  --awb-secondary: #8b5cf6;
  --awb-accent: #06b6d4;
  --awb-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --awb-gradient-dark: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --awb-dark: #0f172a;
  --awb-dark-light: #1e293b;
  --awb-dark-lighter: #334155;
  --awb-gray: #64748b;
  --awb-light-gray: #94a3b8;
  --awb-bg-gray: #f8fafc;
  --awb-white: #ffffff;
  --awb-black: #000000;
  --awb-success: #10b981;
  --awb-warning: #f59e0b;
  --awb-error: #ef4444;
  --awb-border: #e2e8f0;
  --awb-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --awb-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --awb-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --awb-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --awb-radius: 8px;
  --awb-radius-sm: 4px;
  --awb-radius-lg: 12px;
  --awb-radius-xl: 16px;
  --awb-font-primary: 'Space Grotesk', sans-serif;
  --awb-font-mono: 'JetBrains Mono', monospace;
  --awb-transition: all 0.3s ease;
  --awb-transition-fast: all 0.15s ease;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--awb-dark);
  margin-bottom: 0.75rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
  color: var(--awb-primary);
  text-decoration: none;
  transition: var(--awb-transition-fast);
}

a:hover {
  color: var(--awb-primary-dark);
}

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

ul {
  list-style: none;
}

p {
  margin-bottom: 1rem;
  color: var(--awb-gray);
}

/* CONTAINER */
.awb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.awb-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.awb-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.awb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--awb-font-primary);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--awb-radius);
  cursor: pointer;
  transition: var(--awb-transition);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

.awb-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--awb-transition);
}

.awb-btn:hover:before {
  left: 100%;
}

.awb-btn-primary {
  background: var(--awb-gradient);
  color: var(--awb-white);
  box-shadow: var(--awb-shadow-md);
}

.awb-btn-primary:hover {
  background: var(--awb-gradient-dark);
  color: var(--awb-white);
  transform: translateY(-2px);
  box-shadow: var(--awb-shadow-lg);
}

.awb-btn-outline {
  background: transparent;
  color: var(--awb-primary);
  border-color: var(--awb-primary);
}

.awb-btn-outline:hover {
  background: var(--awb-primary);
  color: var(--awb-white);
  transform: translateY(-2px);
}

.awb-btn-white {
  background: var(--awb-white);
  color: var(--awb-primary);
  box-shadow: var(--awb-shadow-md);
}

.awb-btn-white:hover {
  background: var(--awb-bg-gray);
  color: var(--awb-primary-dark);
  transform: translateY(-2px);
}

.awb-btn-dark {
  background: var(--awb-dark);
  color: var(--awb-white);
  box-shadow: var(--awb-shadow-md);
}

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

.awb-btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  min-width: 100px;
}

.awb-btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  min-width: 180px;
}

/* TOPBAR */
.awb-topbar {
  background: var(--awb-gradient);
  color: var(--awb-white);
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}

.awb-topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.awb-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--awb-white);
  font-weight: 500;
}

/* HEADER */
.awb-header {
  background: var(--awb-white);
  box-shadow: var(--awb-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--awb-transition);
}

.awb-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

/* LOGO */
.awb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--awb-dark);
}

.awb-logo:hover {
  color: var(--awb-dark);
}

.awb-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--awb-gradient);
  border-radius: var(--awb-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-white);
  font-weight: 700;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.awb-logo-icon:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.awb-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--awb-dark);
  font-family: var(--awb-font-mono);
}

/* NAVIGATION */
.awb-nav {
  display: flex;
  align-items: center;
}

.awb-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.awb-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.awb-nav a {
  color: var(--awb-dark-lighter);
  padding: 26px 16px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: var(--awb-transition);
  position: relative;
}

.awb-nav a:hover {
  color: var(--awb-primary);
}

.awb-nav a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--awb-gradient);
  transition: var(--awb-transition);
  transform: translateX(-50%);
}

.awb-nav a:hover:before {
  width: 80%;
}

.awb-nav-cta {
  background: var(--awb-gradient) !important;
  color: var(--awb-white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  margin-left: 16px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: var(--awb-shadow-md);
}

.awb-nav-cta:hover {
  background: var(--awb-gradient-dark) !important;
  color: var(--awb-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--awb-shadow-lg);
}

.awb-nav-cta:before {
  display: none;
}

/* MOBILE MENU */
.awb-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--awb-dark);
  padding: 8px;
}

/* HERO */
.awb-hero {
  background: var(--awb-gradient);
  color: var(--awb-white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.awb-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 200px 200px;
  animation: float 20s ease-in-out infinite;
}

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

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

.awb-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--awb-white);
  line-height: 1.1;
}

.awb-hero p {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.awb-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.awb-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.awb-hero-stat {
  text-align: center;
}

.awb-hero-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--awb-white);
  display: block;
  font-family: var(--awb-font-mono);
}

.awb-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* PAGE HERO */
.awb-page-hero {
  background: var(--awb-gradient);
  color: var(--awb-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.awb-page-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 300px 300px;
}

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

.awb-page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--awb-white);
}

.awb-page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* SECTIONS */
.awb-section {
  padding: 80px 0;
}

.awb-section-white {
  background: var(--awb-white);
}

.awb-section-gray {
  background: var(--awb-bg-gray);
}

.awb-section-dark {
  background: var(--awb-dark);
  color: var(--awb-white);
}

.awb-section-dark h1,
.awb-section-dark h2,
.awb-section-dark h3,
.awb-section-dark h4,
.awb-section-dark h5,
.awb-section-dark h6 {
  color: var(--awb-white);
}

.awb-section-dark p {
  color: var(--awb-light-gray);
}

.awb-section-primary {
  background: var(--awb-gradient);
  color: var(--awb-white);
}

.awb-section-primary h1,
.awb-section-primary h2,
.awb-section-primary h3,
.awb-section-primary h4,
.awb-section-primary h5,
.awb-section-primary h6 {
  color: var(--awb-white);
}

.awb-section-primary p {
  color: rgba(255, 255, 255, 0.9);
}

/* SECTION HEADER */
.awb-section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.awb-section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--awb-dark);
}

.awb-section-header p {
  font-size: 18px;
  color: var(--awb-gray);
  max-width: 600px;
  margin: 0 auto;
}

.awb-section-header:after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--awb-gradient);
  display: block;
  margin: 24px auto 0;
  border-radius: 2px;
}

/* GRIDS */
.awb-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

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

/* CARDS */
.awb-card {
  background: var(--awb-white);
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-radius-lg);
  padding: 32px;
  transition: var(--awb-transition);
  position: relative;
  overflow: hidden;
}

.awb-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--awb-gradient);
  transform: scaleX(0);
  transition: var(--awb-transition);
}

.awb-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--awb-shadow-xl);
}

.awb-card:hover:before {
  transform: scaleX(1);
}

.awb-card-icon {
  width: 56px;
  height: 56px;
  background: var(--awb-gradient);
  border-radius: var(--awb-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-white);
  font-size: 24px;
  margin-bottom: 24px;
}

.awb-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--awb-dark);
}

.awb-card p {
  color: var(--awb-gray);
  margin-bottom: 0;
}

.awb-card-dark {
  background: var(--awb-dark-light);
  border-color: var(--awb-dark-lighter);
}

.awb-card-dark h3 {
  color: var(--awb-white);
}

.awb-card-dark p {
  color: var(--awb-light-gray);
}

/* BENEFIT CARDS */
.awb-benefit {
  background: var(--awb-white);
  border-radius: var(--awb-radius-lg);
  padding: 32px;
  border-left: 4px solid var(--awb-primary);
  transition: var(--awb-transition);
}

.awb-benefit:hover {
  border-left-color: var(--awb-secondary);
  transform: translateX(8px);
}

.awb-benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--awb-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-primary);
  font-size: 20px;
  margin-bottom: 20px;
}

.awb-benefit h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--awb-dark);
}

.awb-benefit p {
  color: var(--awb-gray);
  margin-bottom: 0;
  font-size: 14px;
}

/* STEPS */
.awb-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

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

.awb-step-counter {
  width: 64px;
  height: 64px;
  background: var(--awb-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-white);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
  font-family: var(--awb-font-mono);
}

.awb-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--awb-dark);
}

.awb-step p {
  color: var(--awb-gray);
  margin-bottom: 0;
  font-size: 14px;
}

/* CTA */
.awb-cta {
  background: var(--awb-gradient);
  color: var(--awb-white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.awb-cta:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: slide 10s linear infinite;
}

@keyframes slide {
  to { transform: translate(30px, 30px); }
}

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

.awb-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--awb-white);
}

.awb-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.awb-contact-info {
  background: var(--awb-dark);
  color: var(--awb-white);
  padding: 48px;
  border-radius: var(--awb-radius-lg);
}

.awb-contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--awb-white);
}

.awb-contact-info p {
  color: var(--awb-light-gray);
  margin-bottom: 32px;
}

.awb-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.awb-contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--awb-gradient);
  border-radius: var(--awb-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-white);
  font-size: 16px;
}

.awb-contact-item-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--awb-white);
}

.awb-contact-item-content p {
  color: var(--awb-light-gray);
  margin-bottom: 0;
  font-size: 14px;
}

.awb-contact-form {
  background: var(--awb-white);
  padding: 48px;
  border-radius: var(--awb-radius-lg);
  box-shadow: var(--awb-shadow-lg);
}

/* FORM */
.awb-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--awb-dark);
}

.awb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.awb-form-group {
  margin-bottom: 24px;
}

.awb-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--awb-dark);
  margin-bottom: 8px;
}

.awb-form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--awb-font-primary);
  border: 2px solid var(--awb-border);
  border-radius: var(--awb-radius);
  background: var(--awb-white);
  color: var(--awb-dark);
  transition: var(--awb-transition);
}

.awb-form-input:focus {
  outline: none;
  border-color: var(--awb-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.awb-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.awb-form-select {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" fill="%23374151"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  appearance: none;
}

/* FAQ */
.awb-faq-item {
  background: var(--awb-white);
  border: 1px solid var(--awb-border);
  border-radius: var(--awb-radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--awb-transition);
}

.awb-faq-item:hover {
  box-shadow: var(--awb-shadow-md);
}

.awb-faq-q {
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--awb-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--awb-transition);
}

.awb-faq-q:hover {
  background: var(--awb-bg-gray);
}

.awb-faq-icon {
  font-size: 18px;
  color: var(--awb-primary);
  transition: var(--awb-transition);
}

.awb-faq-item.active .awb-faq-icon {
  transform: rotate(45deg);
}

.awb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.awb-faq-item.active .awb-faq-a {
  max-height: 500px;
}

.awb-faq-a-content {
  padding: 0 24px 24px;
  color: var(--awb-gray);
}

/* FOOTER */
.awb-footer {
  background: var(--awb-dark);
  color: var(--awb-white);
  padding: 64px 0 24px;
}

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

.awb-footer-brand h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--awb-white);
  font-family: var(--awb-font-mono);
}

.awb-footer-brand p {
  color: var(--awb-light-gray);
  margin-bottom: 24px;
}

.awb-footer-social {
  display: flex;
  gap: 16px;
}

.awb-footer-social-link {
  width: 40px;
  height: 40px;
  background: var(--awb-dark-light);
  border-radius: var(--awb-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awb-white);
  text-decoration: none;
  transition: var(--awb-transition);
}

.awb-footer-social-link:hover {
  background: var(--awb-primary);
  color: var(--awb-white);
}

.awb-footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--awb-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.awb-footer-links {
  list-style: none;
}

.awb-footer-links li {
  margin-bottom: 12px;
}

.awb-footer-links a {
  color: var(--awb-light-gray);
  text-decoration: none;
  font-size: 14px;
  transition: var(--awb-transition);
}

.awb-footer-links a:hover {
  color: var(--awb-white);
}

.awb-footer-bottom {
  border-top: 1px solid var(--awb-dark-lighter);
  padding-top: 24px;
  text-align: center;
}

.awb-footer-bottom p {
  color: var(--awb-light-gray);
  margin-bottom: 0;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .awb-container { padding: 0 20px; }
  
  .awb-hero h1 { font-size: 48px; }
  .awb-page-hero h1 { font-size: 40px; }
  .awb-section-header h2 { font-size: 36px; }
  
  .awb-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .awb-grid-3 { grid-template-columns: repeat(2, 1fr); }
  
  .awb-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .awb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .awb-contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .awb-container { padding: 0 16px; }
  
  .awb-menu-toggle { display: block; }
  
  .awb-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--awb-white);
    box-shadow: var(--awb-shadow-lg);
    z-index: 999;
    flex-direction: column;
  }
  
  .awb-nav.active { display: flex; }
  
  .awb-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .awb-nav li { width: 100%; }
  
  .awb-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--awb-border);
  }
  
  .awb-nav-cta {
    margin: 16px 24px 24px 24px !important;
    padding: 12px 24px !important;
    border-radius: var(--awb-radius) !important;
  }
  
  .awb-hero { padding: 80px 0; }
  .awb-hero h1 { font-size: 36px; }
  .awb-hero p { font-size: 16px; }
  
  .awb-page-hero { padding: 60px 0; }
  .awb-page-hero h1 { font-size: 32px; }
  
  .awb-section { padding: 60px 0; }
  .awb-section-header { margin-bottom: 48px; }
  .awb-section-header h2 { font-size: 28px; }
  
  .awb-grid-4,
  .awb-grid-3,
  .awb-grid-2 { grid-template-columns: 1fr; }
  
  .awb-hero-buttons { flex-direction: column; }
  .awb-hero-stats { grid-template-columns: 1fr; gap: 24px; }
  
  .awb-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .awb-contact-info,
  .awb-contact-form { padding: 32px; }
  
  .awb-form-row { grid-template-columns: 1fr; }
  
  .awb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .awb-footer { padding: 48px 0 24px; }
  
  .awb-cta { padding: 48px 0; }
  .awb-cta h2 { font-size: 28px; }
  
  .awb-card,
  .awb-benefit { padding: 24px; }
}

/* ADMIN BAR */
body.admin-bar .awb-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .awb-header { top: 46px; }
}
/* ═══ IMAGE HELPERS ═══ */
.awb-hero img, .awb-page-hero img { max-width: 100%; height: auto; }
.awb-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
img[style*="object-fit"] { display: block; }
@media (max-width: 768px) {
    .awb-card img { height: 160px; }
    img[style*="height:400px"] { height: 200px !important; }
    img[style*="height:300px"] { height: 180px !important; }
}