/* ============================================
   AutoWiz KZ — Flat Design System
   Theme: Teal #0891B2 + Dark Gray #1E293B
   Font: Manrope
   Prefix: aw-
   ============================================ */

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

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

body {
    font-family: 'Manrope', sans-serif;
    color: #1E293B;
    background-color: #F8FAFC;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: #0891B2;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0E7490;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: #1E293B;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #475569;
}

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

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

.aw-section-alt {
    padding: 80px 0;
    background-color: #F1F5F9;
}

.aw-section-teal {
    padding: 80px 0;
    background-color: #0891B2;
    color: #FFFFFF;
}

.aw-section-teal h2,
.aw-section-teal h3,
.aw-section-teal p {
    color: #FFFFFF;
}

.aw-section-dark {
    padding: 80px 0;
    background-color: #1E293B;
    color: #FFFFFF;
}

.aw-section-dark h2,
.aw-section-dark h3,
.aw-section-dark p {
    color: #FFFFFF;
}

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

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

.aw-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0891B2;
    margin: 16px auto 0;
    border-radius: 0;
}

.aw-section-title p {
    font-size: 1.125rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

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

.aw-text-white {
    color: #FFFFFF;
}

.aw-mt-1 { margin-top: 8px; }
.aw-mt-2 { margin-top: 16px; }
.aw-mt-3 { margin-top: 24px; }
.aw-mt-4 { margin-top: 32px; }
.aw-mb-1 { margin-bottom: 8px; }
.aw-mb-2 { margin-bottom: 16px; }
.aw-mb-3 { margin-bottom: 24px; }
.aw-mb-4 { margin-bottom: 32px; }

/* --- Buttons --- */
.aw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    line-height: 1;
}

.aw-btn:hover {
    transform: translateY(-1px);
}

.aw-btn:active {
    transform: translateY(0);
}

.aw-btn-primary {
    background-color: #0891B2;
    color: #FFFFFF;
}

.aw-btn-primary:hover {
    background-color: #0E7490;
    color: #FFFFFF;
}

.aw-btn-secondary {
    background-color: #1E293B;
    color: #FFFFFF;
}

.aw-btn-secondary:hover {
    background-color: #334155;
    color: #FFFFFF;
}

.aw-btn-outline {
    background-color: transparent;
    color: #0891B2;
    border: 2px solid #0891B2;
}

.aw-btn-outline:hover {
    background-color: #0891B2;
    color: #FFFFFF;
}

.aw-btn-white {
    background-color: #FFFFFF;
    color: #0891B2;
}

.aw-btn-white:hover {
    background-color: #F1F5F9;
    color: #0891B2;
}

.aw-btn-lg {
    padding: 18px 40px;
    font-size: 1.0625rem;
}

.aw-btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.aw-btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* --- Header --- */
.aw-header {
    background-color: #FFFFFF;
    border-bottom: 3px solid #0891B2;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.aw-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E293B;
    text-decoration: none;
}

.aw-logo iconify-icon {
    font-size: 2rem;
    color: #0891B2;
}

.aw-logo span {
    color: #0891B2;
}

.aw-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.aw-nav a {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.aw-nav a:hover,
.aw-nav a.aw-active {
    color: #0891B2;
    background-color: #ECFEFF;
}

.aw-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.aw-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1E293B;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Banner / Top Section --- */
.aw-banner {
    background-color: #0891B2;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.aw-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
}

.aw-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    transform: rotate(30deg);
}

.aw-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.aw-banner-label {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.aw-banner h1 {
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.aw-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1875rem;
    margin-bottom: 32px;
    max-width: 560px;
}

.aw-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

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

/* --- Cards --- */
.aw-card {
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    padding: 32px;
    transition: border-color 0.2s ease, transform 0.15s ease;
}

.aw-card:hover {
    border-color: #0891B2;
    transform: translateY(-2px);
}

.aw-card-icon {
    width: 56px;
    height: 56px;
    background-color: #ECFEFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.aw-card-icon iconify-icon {
    font-size: 1.75rem;
    color: #0891B2;
}

.aw-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.aw-card p {
    font-size: 0.9375rem;
    color: #64748B;
}

/* --- Feature Block --- */
.aw-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: #FFFFFF;
    border-left: 4px solid #0891B2;
    margin-bottom: 16px;
}

.aw-feature iconify-icon {
    font-size: 1.5rem;
    color: #0891B2;
    flex-shrink: 0;
    margin-top: 2px;
}

.aw-feature h4 {
    margin-bottom: 6px;
}

.aw-feature p {
    font-size: 0.9375rem;
    color: #64748B;
    margin-bottom: 0;
}

/* --- Pricing / Tiers --- */
.aw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.aw-pricing-card {
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s ease;
}

.aw-pricing-card:hover {
    border-color: #0891B2;
}

.aw-pricing-card.aw-pricing-featured {
    border-color: #0891B2;
    border-width: 3px;
}

.aw-pricing-card.aw-pricing-featured::before {
    content: 'Популярный';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0891B2;
    color: #FFFFFF;
    padding: 4px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aw-pricing-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

.aw-pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0891B2;
    margin-bottom: 4px;
}

.aw-pricing-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 24px;
    display: block;
}

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

.aw-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

.aw-pricing-features li iconify-icon {
    color: #0891B2;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* --- Stats / Counter --- */
.aw-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px 0;
}

.aw-stat {
    text-align: center;
    padding: 24px;
}

.aw-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0891B2;
    line-height: 1;
    margin-bottom: 8px;
}

.aw-stat-label {
    font-size: 0.9375rem;
    color: #64748B;
    font-weight: 600;
}

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

.aw-team-member {
    text-align: center;
    padding: 40px 24px;
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    transition: border-color 0.2s ease;
}

.aw-team-member:hover {
    border-color: #0891B2;
}

.aw-team-avatar {
    width: 80px;
    height: 80px;
    background-color: #ECFEFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.aw-team-avatar iconify-icon {
    font-size: 2.25rem;
    color: #0891B2;
}

.aw-team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.aw-team-member .aw-team-role {
    font-size: 0.875rem;
    color: #0891B2;
    font-weight: 600;
    margin-bottom: 12px;
}

.aw-team-member p {
    font-size: 0.875rem;
    color: #64748B;
}

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

.aw-review {
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    padding: 32px;
    position: relative;
}

.aw-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #0891B2;
}

.aw-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.aw-review-stars iconify-icon {
    color: #F59E0B;
    font-size: 1.125rem;
}

.aw-review-text {
    font-size: 0.9375rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.aw-review-author {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E293B;
}

.aw-review-location {
    font-size: 0.8125rem;
    color: #94A3B8;
}

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

.aw-faq-item {
    border: 2px solid #E2E8F0;
    margin-bottom: 8px;
    background-color: #FFFFFF;
}

.aw-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1E293B;
    text-align: left;
    transition: color 0.2s ease;
}

.aw-faq-question:hover {
    color: #0891B2;
}

.aw-faq-question iconify-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: #0891B2;
    flex-shrink: 0;
}

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

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

.aw-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: #64748B;
    line-height: 1.7;
}

/* --- Table --- */
.aw-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
}

.aw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.aw-table th {
    background-color: #1E293B;
    color: #FFFFFF;
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aw-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #E2E8F0;
    color: #475569;
}

.aw-table tr:nth-child(even) {
    background-color: #F8FAFC;
}

.aw-table tr:hover {
    background-color: #ECFEFF;
}

/* --- Contact Form --- */
.aw-form {
    max-width: 640px;
    margin: 0 auto;
}

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

.aw-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
}

.aw-form-group input,
.aw-form-group textarea,
.aw-form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9375rem;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    color: #1E293B;
    transition: border-color 0.2s ease;
    outline: none;
    border-radius: 0;
}

.aw-form-group input:focus,
.aw-form-group textarea:focus,
.aw-form-group select:focus {
    border-color: #0891B2;
}

.aw-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

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

.aw-form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0891B2;
    flex-shrink: 0;
}

.aw-form-consent label {
    font-size: 0.8125rem;
    color: #64748B;
    line-height: 1.5;
}

.aw-form-consent a {
    color: #0891B2;
    text-decoration: underline;
}

.aw-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* --- Breadcrumbs --- */
.aw-breadcrumbs {
    padding: 16px 0;
    background-color: #F1F5F9;
    border-bottom: 1px solid #E2E8F0;
}

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

.aw-breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: #94A3B8;
}

.aw-breadcrumbs-list a {
    color: #64748B;
    font-weight: 600;
}

.aw-breadcrumbs-list a:hover {
    color: #0891B2;
}

.aw-breadcrumbs-list .aw-breadcrumbs-sep {
    color: #CBD5E1;
}

.aw-breadcrumbs-list .aw-breadcrumbs-current {
    color: #0891B2;
    font-weight: 600;
}

/* --- Cookie Banner --- */
.aw-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1E293B;
    color: #FFFFFF;
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.aw-cookie.aw-cookie-show {
    transform: translateY(0);
}

.aw-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.aw-cookie p {
    color: #CBD5E1;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.aw-cookie a {
    color: #22D3EE;
}

.aw-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* --- Footer --- */
.aw-footer {
    background-color: #1E293B;
    color: #CBD5E1;
    padding: 64px 0 0;
    margin-top: auto;
}

.aw-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.aw-footer-brand {
    max-width: 280px;
}

.aw-footer-brand .aw-logo {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.aw-footer-brand p {
    color: #94A3B8;
    font-size: 0.875rem;
}

.aw-footer h4 {
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.aw-footer-links a {
    color: #94A3B8;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.aw-footer-links a:hover {
    color: #22D3EE;
}

.aw-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #94A3B8;
}

.aw-footer-contact iconify-icon {
    color: #0891B2;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.aw-footer-bottom {
    border-top: 1px solid #334155;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.aw-footer-bottom p {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0;
}

.aw-footer-legal {
    display: flex;
    gap: 20px;
}

.aw-footer-legal a {
    font-size: 0.8125rem;
    color: #64748B;
}

.aw-footer-legal a:hover {
    color: #22D3EE;
}

/* --- Page Banner (Inner pages) --- */
.aw-page-banner {
    background-color: #1E293B;
    padding: 56px 0;
}

.aw-page-banner h1 {
    color: #FFFFFF;
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.aw-page-banner p {
    color: #94A3B8;
    font-size: 1.0625rem;
    margin-bottom: 0;
}

/* --- Content Page (Privacy, Terms, etc.) --- */
.aw-content {
    padding: 48px 0 80px;
}

.aw-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1E293B;
}

.aw-content h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.aw-content p {
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.8;
}

.aw-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.aw-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9375rem;
}

.aw-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #0891B2;
}

/* --- Thank You Page --- */
.aw-thankyou {
    text-align: center;
    padding: 120px 0;
}

.aw-thankyou-icon {
    width: 100px;
    height: 100px;
    background-color: #ECFEFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.aw-thankyou-icon iconify-icon {
    font-size: 3rem;
    color: #0891B2;
}

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

.aw-thankyou p {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* --- 404 Page --- */
.aw-notfound {
    text-align: center;
    padding: 120px 0;
}

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

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

.aw-notfound p {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* --- About Page --- */
.aw-about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.aw-about-img {
    background-color: #ECFEFF;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-about-img iconify-icon {
    font-size: 6rem;
    color: #0891B2;
}

/* --- Tips Info Cards --- */
.aw-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.aw-info-card {
    padding: 32px;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    border-top: 4px solid #0891B2;
}

.aw-info-card iconify-icon {
    font-size: 2rem;
    color: #0891B2;
    margin-bottom: 16px;
    display: block;
}

.aw-info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.aw-info-card p {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

/* --- CTA Block --- */
.aw-cta-block {
    background-color: #0891B2;
    padding: 56px 48px;
    text-align: center;
}

.aw-cta-block h2 {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.aw-cta-block p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

/* --- Contact Info Cards --- */
.aw-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.aw-contact-card {
    text-align: center;
    padding: 32px;
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
}

.aw-contact-card iconify-icon {
    font-size: 2rem;
    color: #0891B2;
    margin-bottom: 12px;
    display: block;
}

.aw-contact-card h4 {
    margin-bottom: 4px;
}

.aw-contact-card p {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

/* --- Steps / Process --- */
.aw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: aw-step;
}

.aw-step {
    text-align: center;
    padding: 32px 20px;
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    position: relative;
    counter-increment: aw-step;
}

.aw-step::before {
    content: counter(aw-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0891B2;
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.aw-step h4 {
    margin-bottom: 8px;
}

.aw-step p {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

/* --- Services List --- */
.aw-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.aw-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    transition: border-color 0.2s ease;
}

.aw-service-item:hover {
    border-color: #0891B2;
}

.aw-service-item iconify-icon {
    font-size: 1.5rem;
    color: #0891B2;
    flex-shrink: 0;
    margin-top: 2px;
}

.aw-service-item h4 {
    margin-bottom: 4px;
}

.aw-service-item p {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0;
}

/* --- Mobile Nav Overlay --- */
.aw-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(30, 41, 59, 0.5);
    z-index: 998;
}

.aw-mobile-overlay.aw-active {
    display: block;
}

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

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

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

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

    .aw-section,
    .aw-section-alt,
    .aw-section-teal,
    .aw-section-dark {
        padding: 56px 0;
    }

    .aw-nav {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 72px);
        background-color: #FFFFFF;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        z-index: 999;
        border-left: 3px solid #0891B2;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

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

    .aw-nav a {
        padding: 14px 16px;
        border-bottom: 1px solid #F1F5F9;
    }

    .aw-burger {
        display: flex;
    }

    .aw-grid-2,
    .aw-grid-3,
    .aw-pricing-grid,
    .aw-team-grid,
    .aw-reviews-grid,
    .aw-info-grid,
    .aw-contact-grid,
    .aw-services-list,
    .aw-about-intro {
        grid-template-columns: 1fr;
    }

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

    .aw-banner {
        padding: 72px 0 56px;
    }

    .aw-banner h1 {
        font-size: 2.25rem;
    }

    .aw-banner-actions {
        flex-direction: column;
    }

    .aw-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .aw-steps {
        grid-template-columns: 1fr;
    }

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

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

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

    .aw-banner {
        padding: 56px 0 48px;
    }

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

    .aw-pricing-card {
        padding: 32px 20px;
    }
}

/* --- Animations --- */
@keyframes aw-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aw-animate {
    opacity: 0;
    transform: translateY(20px);
}

.aw-animate.aw-visible {
    animation: aw-fadeInUp 0.5s ease forwards;
}

/* --- Rules Page Specific --- */
.aw-rules-highlight {
    background-color: #ECFEFF;
    border-left: 4px solid #0891B2;
    padding: 20px 24px;
    margin: 24px 0;
}

.aw-rules-highlight p {
    margin-bottom: 0;
    color: #0E7490;
    font-weight: 600;
}

.aw-penalty-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #0891B2;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 700;
}

/* --- Geometric Decorations (Flat Style) --- */
.aw-geo-block {
    position: relative;
    overflow: hidden;
}

.aw-geo-block::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(8, 145, 178, 0.06);
    top: -30px;
    right: -30px;
    transform: rotate(45deg);
}

.aw-geo-block::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(8, 145, 178, 0.04);
    bottom: -20px;
    left: -20px;
}

/* --- Divider --- */
.aw-divider {
    border: none;
    height: 3px;
    background-color: #E2E8F0;
    margin: 48px 0;
}

.aw-divider-teal {
    border: none;
    height: 3px;
    background-color: #0891B2;
    margin: 48px 0;
    max-width: 80px;
}

/* --- List with Icons --- */
.aw-icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: #475569;
}

.aw-icon-list iconify-icon {
    color: #0891B2;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Alert Boxes --- */
.aw-alert {
    padding: 16px 20px;
    border-left: 4px solid;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.aw-alert-info {
    background-color: #ECFEFF;
    border-color: #0891B2;
    color: #0E7490;
}

.aw-alert-warning {
    background-color: #FFFBEB;
    border-color: #F59E0B;
    color: #92400E;
}

/* --- Misc --- */
.aw-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #ECFEFF;
    color: #0891B2;
}

.aw-badge-dark {
    background-color: #1E293B;
    color: #FFFFFF;
}

.aw-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    background-color: #F1F5F9;
    color: #475569;
    margin: 4px 4px 4px 0;
}

.aw-blockquote {
    border-left: 4px solid #0891B2;
    padding: 20px 24px;
    background-color: #F8FAFC;
    margin: 24px 0;
    font-style: italic;
    color: #475569;
}

.aw-map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-map-placeholder iconify-icon {
    font-size: 3rem;
    color: #94A3B8;
}

[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}

/* === AutoWiz Blog === */
.aw-blog-section{padding:60px 0}
.aw-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.aw-blog-card{padding:1.5rem;border:1px solid #0891B233;border-radius:12px;background:#f8fdfe;transition:border-color .3s}
.aw-blog-card:hover{border-color:#0891B2}
.aw-blog-meta{color:#999;font-size:.85rem;margin-bottom:.75rem;display:flex;align-items:center;gap:.4rem}
.aw-blog-card h3{color:#1E293B;margin-bottom:.5rem;font-size:1.1rem}
.aw-blog-card p{color:#666;font-size:.95rem;margin-bottom:1rem}
.aw-blog-link{color:#0891B2;font-weight:600;text-decoration:none;display:flex;align-items:center;gap:.3rem}
@media(max-width:768px){.aw-blog-grid{grid-template-columns:1fr}}
