/* ============================================
   AutoHelp KZ — Помощник Style
   Theme: Green #16A34A + White
   Font: Open Sans
   Prefix: ah-
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #16A34A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0d7a34;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

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

p {
  margin-bottom: 1rem;
}

/* --- Container --- */
.ah-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.ah-header {
  background: #ffffff;
  border-bottom: 3px solid #16A34A;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.08);
}

.ah-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}

.ah-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.ah-logo iconify-icon {
  font-size: 2rem;
  color: #16A34A;
}

.ah-logo span {
  color: #16A34A;
}

/* --- Navigation --- */
.ah-nav {
  display: flex;
  align-items: center;
}

.ah-nav-list {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ah-nav-list li a {
  display: block;
  padding: 8px 16px;
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ah-nav-list li a:hover,
.ah-nav-list li a.ah-active {
  color: #16A34A;
  background: rgba(22, 163, 74, 0.08);
}

/* --- Mobile Menu --- */
.ah-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}

.ah-burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ah-burger.ah-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.ah-burger.ah-open span:nth-child(2) {
  opacity: 0;
}

.ah-burger.ah-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Welcome Banner --- */
.ah-welcome {
  background: linear-gradient(135deg, #16A34A 0%, #22c55e 50%, #15803d 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ah-welcome::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.ah-welcome::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.ah-welcome-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ah-welcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.ah-welcome h1 {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.ah-welcome p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 32px;
}

.ah-welcome-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.ah-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.ah-btn-primary {
  background: #ffffff;
  color: #16A34A;
}

.ah-btn-primary:hover {
  background: #f0fdf4;
  color: #0d7a34;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ah-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.ah-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.ah-btn-green {
  background: #16A34A;
  color: #ffffff;
}

.ah-btn-green:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.ah-btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.ah-btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.ah-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* --- Sections --- */
.ah-section {
  padding: 80px 0;
}

.ah-section-light {
  background: #f0fdf4;
}

.ah-section-white {
  background: #ffffff;
}

.ah-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.ah-section-title h2 {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.ah-section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #16A34A;
  border-radius: 2px;
}

.ah-section-title p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* --- Feature Grid --- */
.ah-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ah-feature-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.ah-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.12);
  border-color: #16A34A;
}

.ah-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ah-feature-icon iconify-icon {
  font-size: 28px;
  color: #16A34A;
}

.ah-feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.ah-feature-item p {
  color: #64748b;
  font-size: 0.95rem;
}

/* --- Info Cards --- */
.ah-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ah-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ah-info-card:hover {
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.1);
}

.ah-info-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ah-info-card h3 iconify-icon {
  color: #16A34A;
  font-size: 24px;
}

.ah-info-card p,
.ah-info-card ul {
  color: #64748b;
}

.ah-info-card ul {
  margin-top: 12px;
}

.ah-info-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.ah-info-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #16A34A;
  border-radius: 50%;
}

/* --- Team Section --- */
.ah-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ah-team-member {
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ah-team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.1);
}

.ah-team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #16A34A, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ah-team-avatar iconify-icon {
  font-size: 36px;
  color: #ffffff;
}

.ah-team-member h3 {
  margin-bottom: 4px;
}

.ah-team-role {
  color: #16A34A;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.ah-team-member p:last-child {
  color: #64748b;
  font-size: 0.9rem;
}

/* --- Reviews --- */
.ah-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ah-review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.ah-review-card::before {
  content: '\201C';
  font-size: 4rem;
  color: #dcfce7;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.ah-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.ah-review-stars iconify-icon {
  color: #f59e0b;
  font-size: 18px;
}

.ah-review-text {
  color: #475569;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ah-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ah-review-author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ah-review-author-avatar iconify-icon {
  color: #16A34A;
  font-size: 20px;
}

.ah-review-author-info strong {
  display: block;
  font-size: 0.95rem;
}

.ah-review-author-info span {
  color: #94a3b8;
  font-size: 0.85rem;
}

/* --- Pricing --- */
.ah-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ah-pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.ah-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.12);
}

.ah-pricing-card.ah-popular {
  border-color: #16A34A;
  transform: scale(1.03);
}

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

.ah-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #16A34A;
  color: #ffffff;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ah-pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.ah-pricing-card .ah-pricing-desc {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.ah-pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #16A34A;
  margin-bottom: 4px;
}

.ah-pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: #94a3b8;
}

.ah-pricing-period {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.ah-pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.ah-pricing-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 0.95rem;
}

.ah-pricing-features li iconify-icon {
  color: #16A34A;
  font-size: 18px;
  flex-shrink: 0;
}

/* --- Penalty Table --- */
.ah-penalty-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ah-penalty-table thead {
  background: #16A34A;
  color: #ffffff;
}

.ah-penalty-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.ah-penalty-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}

.ah-penalty-table tbody tr:hover {
  background: #f0fdf4;
}

.ah-penalty-table tbody tr:last-child td {
  border-bottom: none;
}

.ah-penalty-amount {
  color: #dc2626;
  font-weight: 700;
}

/* --- FAQ --- */
.ah-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.ah-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ah-faq-item:hover {
  border-color: #bbf7d0;
}

.ah-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.ah-faq-question:hover {
  background: #f0fdf4;
}

.ah-faq-question iconify-icon {
  color: #16A34A;
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.ah-faq-item.ah-active .ah-faq-question iconify-icon {
  transform: rotate(180deg);
}

.ah-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ah-faq-answer-inner {
  padding: 0 24px 20px;
  color: #64748b;
  line-height: 1.7;
}

.ah-faq-item.ah-active .ah-faq-answer {
  max-height: 500px;
}

/* --- Contact Form --- */
.ah-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ah-contact-info {
  background: #f0fdf4;
  border-radius: 16px;
  padding: 40px;
}

.ah-contact-info h3 {
  margin-bottom: 24px;
}

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

.ah-contact-info-item iconify-icon {
  font-size: 24px;
  color: #16A34A;
  margin-top: 2px;
}

.ah-contact-info-item strong {
  display: block;
  margin-bottom: 4px;
}

.ah-contact-info-item span,
.ah-contact-info-item a {
  color: #64748b;
  font-size: 0.95rem;
}

.ah-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e2e8f0;
}

.ah-form-group {
  margin-bottom: 20px;
}

.ah-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151;
}

.ah-form-group input,
.ah-form-group textarea,
.ah-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
  background: #ffffff;
}

.ah-form-group input:focus,
.ah-form-group textarea:focus,
.ah-form-group select:focus {
  outline: none;
  border-color: #16A34A;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.ah-form-group textarea {
  height: 120px;
  resize: vertical;
}

.ah-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.ah-form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #16A34A;
  flex-shrink: 0;
}

.ah-form-consent label {
  font-size: 0.85rem;
  color: #64748b;
  cursor: pointer;
}

.ah-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* --- Breadcrumbs --- */
.ah-breadcrumbs {
  padding: 16px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.ah-breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.ah-breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ah-breadcrumbs-list li a {
  color: #64748b;
}

.ah-breadcrumbs-list li a:hover {
  color: #16A34A;
}

.ah-breadcrumbs-list li span {
  color: #94a3b8;
}

.ah-breadcrumbs-list li.ah-current {
  color: #16A34A;
  font-weight: 600;
}

/* --- Page Header --- */
.ah-page-header {
  background: linear-gradient(135deg, #16A34A, #22c55e);
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
}

.ah-page-header h1 {
  color: #ffffff;
  margin-bottom: 8px;
}

.ah-page-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* --- Content Block --- */
.ah-content-block {
  padding: 60px 0;
}

.ah-content-block h2 {
  margin-bottom: 16px;
}

.ah-content-block h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.ah-content-block p {
  color: #475569;
}

.ah-content-block ul,
.ah-content-block ol {
  margin: 16px 0;
  padding-left: 24px;
}

.ah-content-block ul {
  list-style: disc;
}

.ah-content-block ol {
  list-style: decimal;
}

.ah-content-block li {
  padding: 4px 0;
  color: #475569;
}

/* --- Tip Cards --- */
.ah-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.ah-tip-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ah-tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.1);
}

.ah-tip-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ah-tip-card-icon iconify-icon {
  font-size: 26px;
  color: #16A34A;
}

.ah-tip-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.ah-tip-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* --- Thank You --- */
.ah-thankyou {
  text-align: center;
  padding: 100px 0;
}

.ah-thankyou-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.ah-thankyou-icon iconify-icon {
  font-size: 48px;
  color: #16A34A;
}

.ah-thankyou h1 {
  margin-bottom: 16px;
}

.ah-thankyou p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* --- 404 --- */
.ah-notfound {
  text-align: center;
  padding: 100px 0;
}

.ah-notfound-code {
  font-size: 8rem;
  font-weight: 800;
  color: #dcfce7;
  line-height: 1;
  margin-bottom: 16px;
}

.ah-notfound h1 {
  margin-bottom: 16px;
}

.ah-notfound p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* --- Footer --- */
.ah-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 0;
  margin-top: auto;
}

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

.ah-footer-brand {
  max-width: 300px;
}

.ah-footer-brand .ah-logo {
  color: #ffffff;
  margin-bottom: 16px;
}

.ah-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.ah-footer h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.ah-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #16A34A;
  border-radius: 2px;
}

.ah-footer-links li {
  margin-bottom: 10px;
}

.ah-footer-links li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.ah-footer-links li a:hover {
  color: #16A34A;
  padding-left: 4px;
}

.ah-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.ah-footer-contact-item iconify-icon {
  color: #16A34A;
  font-size: 18px;
  margin-top: 2px;
}

.ah-footer-contact-item a {
  color: #94a3b8;
}

.ah-footer-contact-item a:hover {
  color: #16A34A;
}

.ah-footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

.ah-footer-bottom span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
}

/* --- Cookie Banner --- */
.ah-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.ah-cookie-banner.ah-show {
  display: block;
}

.ah-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ah-cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.ah-cookie-inner p a {
  color: #22c55e;
  text-decoration: underline;
}

.ah-cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ah-cookie-accept {
  background: #16A34A;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.ah-cookie-accept:hover {
  background: #15803d;
}

.ah-cookie-decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #334155;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.ah-cookie-decline:hover {
  border-color: #94a3b8;
  color: #e2e8f0;
}

/* --- Stat Counter --- */
.ah-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.ah-stat-item {
  padding: 32px 16px;
}

.ah-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #16A34A;
  margin-bottom: 4px;
}

.ah-stat-label {
  color: #64748b;
  font-size: 0.95rem;
}

/* --- About Highlight --- */
.ah-highlight-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 16px;
  padding: 40px;
  border-left: 5px solid #16A34A;
  margin: 32px 0;
}

.ah-highlight-box h3 {
  margin-bottom: 12px;
}

.ah-highlight-box p {
  color: #475569;
}

/* --- Legal Text --- */
.ah-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.ah-legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.ah-legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.ah-legal-content p {
  color: #475569;
  margin-bottom: 14px;
}

.ah-legal-content ul {
  margin: 12px 0;
  padding-left: 24px;
  list-style: disc;
}

.ah-legal-content ul li {
  color: #475569;
  padding: 4px 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ah-features {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .ah-burger {
    display: flex;
  }

  .ah-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .ah-nav.ah-nav-open {
    right: 0;
  }

  .ah-nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .ah-nav-list li a {
    padding: 12px 16px;
    width: 100%;
  }

  .ah-welcome {
    padding: 50px 0;
  }

  .ah-welcome h1 {
    font-size: 2rem;
  }

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

  .ah-section {
    padding: 50px 0;
  }

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

  .ah-info-grid {
    grid-template-columns: 1fr;
  }

  .ah-team-grid {
    grid-template-columns: 1fr;
  }

  .ah-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ah-pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .ah-cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .ah-penalty-table {
    font-size: 0.85rem;
  }

  .ah-penalty-table th,
  .ah-penalty-table td {
    padding: 10px 12px;
  }

  .ah-notfound-code {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }

  .ah-container {
    padding: 0 16px;
  }

  .ah-header-inner {
    padding: 0 16px;
  }

  .ah-welcome {
    padding: 40px 0;
  }

  .ah-section {
    padding: 40px 0;
  }

  .ah-info-card,
  .ah-form,
  .ah-contact-info {
    padding: 24px;
  }

  .ah-stats-row {
    grid-template-columns: 1fr;
  }

  .ah-stat-number {
    font-size: 2rem;
  }

  .ah-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* --- Scroll Animations --- */
.ah-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Overlay --- */
.ah-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ah-overlay.ah-visible {
  opacity: 1;
  visibility: visible;
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === AutoHelp Stats === */
.ah-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.ah-stats-card{text-align:center;padding:2rem;background:#f0fdf4;border-radius:12px;border:1px solid #15803d22}
.ah-stats-card iconify-icon{font-size:2rem;color:#15803d}
.ah-stats-card__num{font-size:2.5rem;font-weight:800;color:#15803d;margin:.5rem 0 .25rem}
.ah-stats-card__label{color:#666}
@media(max-width:768px){.ah-stats-grid{grid-template-columns:repeat(2,1fr)}}
/* === AutoHelp Process === */
.ah-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.ah-process-step{padding:2rem;background:#fff;border-radius:12px;border:1px solid #e5e7eb;text-align:center;position:relative}
.ah-process-step__num{position:absolute;top:.75rem;right:.75rem;font-size:1.5rem;font-weight:800;color:#15803d22}
.ah-process-step iconify-icon{font-size:1.5rem;color:#15803d;margin-bottom:.75rem}
.ah-process-step h3{color:#333;margin-bottom:.5rem}
.ah-process-step p{color:#666;font-size:.9rem}
@media(max-width:768px){.ah-process-grid{grid-template-columns:repeat(2,1fr)}}
