/* ============================================================ */
/* AUDIT PAGE — /audit                                          */
/* ============================================================ */

/* ===== 1. HERO ===== */
.aud-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.aud-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aud-hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    animation: audFloat 22s ease-in-out infinite;
}

.aud-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 97, 70, 0.06) 0%, transparent 70%);
    animation: audFloat 28s ease-in-out infinite reverse;
}

@keyframes audFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}

.aud-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.aud-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: audFadeUp 0.6s ease;
}

.aud-hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    animation: audFadeUp 0.6s ease 0.1s both;
}

.aud-hero h1 .accent {
    color: var(--accent);
}

.aud-hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: audFadeUp 0.6s ease 0.2s both;
}

/* URL form */
.aud-hero-form {
    display: flex;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto 32px;
    animation: audFadeUp 0.6s ease 0.3s both;
}

.aud-form-input-wrap {
    flex: 1;
    position: relative;
}

.aud-form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    font-size: 1rem;
    pointer-events: none;
}

.aud-form-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-family: 'Onest', sans-serif;
    font-size: 1.05rem;
    background: white;
    transition: all 0.2s ease;
}

.aud-form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 97, 70, 0.12);
}

.aud-form-submit {
    padding: 18px 28px;
    font-size: 1.05rem;
    border-radius: 14px;
    white-space: nowrap;
}

.aud-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 36px;
    animation: audFadeUp 0.6s ease 0.4s both;
}

.aud-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.92rem;
    font-weight: 500;
}

.aud-trust-item i {
    color: var(--accent);
    font-size: 0.95rem;
}

@keyframes audFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== 2. WHAT YOU GET ===== */
.aud-deliverables {
    padding: 100px 0;
    background: var(--bg);
}

.aud-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.aud-deliverable {
    background: white;
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.aud-deliverable:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.aud-deliverable-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.aud-deliverable:hover .aud-deliverable-icon {
    background: var(--accent);
    color: white;
}

.aud-deliverable h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.aud-deliverable p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== 3. HOW IT WORKS — animated ===== */
.aud-how {
    padding: 100px 0;
    background: var(--bg-alt);
}

.aud-how-stage {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.aud-how-progress {
    height: 4px;
    background: var(--bg-alt);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 36px;
}

.aud-how-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    width: 0%;
    transition: width 0.6s ease;
    border-radius: 100px;
}

.aud-how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.aud-how-step {
    position: relative;
    padding: 24px 20px;
    background: var(--bg-alt);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0.55;
}

.aud-how-step.aud-step-active {
    opacity: 1;
    background: white;
    box-shadow: 0 8px 24px rgba(255, 97, 70, 0.12);
    transform: translateY(-3px);
}

.aud-how-step.aud-step-done {
    opacity: 1;
}

.aud-how-step-num {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 24px;
    height: 24px;
    background: var(--border);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.aud-step-active .aud-how-step-num,
.aud-step-done .aud-how-step-num {
    background: var(--accent);
}

.aud-how-step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.aud-step-active .aud-how-step-icon {
    background: var(--accent);
    color: white;
    animation: audPulse 1.4s ease-in-out infinite;
}

@keyframes audPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 97, 70, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 97, 70, 0); }
}

.aud-how-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.aud-how-step p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Live demo block */
.aud-how-demo {
    background: var(--bg-alt);
    border-radius: 18px;
    padding: 28px;
}

.aud-how-demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}

.aud-how-demo-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--dark);
    font-weight: 500;
}

.aud-status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: audPulse 1.4s ease-in-out infinite;
}

.aud-how-demo-score {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.aud-how-demo-score small {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.aud-how-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aud-how-checks li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.aud-how-checks li:last-child {
    border-bottom: none;
}

.aud-how-checks li span {
    flex: 1;
}

.aud-check-icon {
    width: 22px;
    text-align: center;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.aud-check-icon.fa-spinner {
    animation: audSpin 1s linear infinite;
}

@keyframes audSpin {
    to { transform: rotate(360deg); }
}

.aud-check-icon.aud-check-ok { color: #10b981; }
.aud-check-icon.aud-check-warn { color: var(--accent); }

.aud-check-status {
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
}

.aud-check-status.aud-check-ok { color: #10b981; }
.aud-check-status.aud-check-warn { color: var(--accent); }

/* ===== 4. WHAT WE CHECK ===== */
.aud-checks-section {
    padding: 100px 0;
    background: var(--bg);
}

.aud-checks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.aud-check-card {
    background: white;
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.aud-check-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 97, 70, 0.1);
}

.aud-check-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.aud-check-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.aud-check-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ===== 5. REPORT PREVIEW (mockup) ===== */
.aud-preview {
    padding: 100px 0;
    background: var(--bg-alt);
}

.aud-preview-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Mockup of the actual report */
.aud-mockup {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.aud-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.aud-mockup-brand-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.aud-mockup-brand-dot {
    color: var(--dark);
}

.aud-mockup-date {
    font-size: 0.82rem;
    color: var(--gray-light);
}

.aud-mockup-card {
    background: var(--bg-alt);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
}

.aud-mockup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.aud-mockup-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.aud-mockup-domain {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.aud-mockup-url {
    font-size: 0.78rem;
    color: var(--gray);
}

.aud-mockup-score {
    width: 100px;
    height: 100px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aud-mockup-score-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.aud-mockup-score-label {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 2px;
}

.aud-mockup-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.aud-mockup-card p {
    color: var(--dark-light);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

.aud-mockup-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.aud-mockup-metric {
    background: white;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.aud-mockup-metric strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.aud-mockup-metric span {
    font-size: 0.72rem;
    color: var(--gray);
}

.aud-mockup-issue {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
}

.aud-mockup-issue:last-child { margin-bottom: 0; }

.aud-mockup-issue > div {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.aud-mockup-issue strong {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
}

.aud-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.aud-dot-critical { background: var(--accent); }
.aud-dot-warning { background: #f59e0b; }
.aud-dot-ok { background: #10b981; }

.aud-mockup-priority {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.aud-priority-high { color: var(--accent); }
.aud-priority-medium { color: #f59e0b; }
.aud-priority-low { color: #10b981; }

.aud-mockup-lock {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 97, 70, 0.06) 0%, rgba(255, 97, 70, 0.02) 100%);
    border: 2px dashed rgba(255, 97, 70, 0.25);
    border-radius: 14px;
    padding: 18px 20px;
}

.aud-mockup-lock i {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.aud-mockup-lock strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.aud-mockup-lock span {
    font-size: 0.82rem;
    color: var(--gray);
}

/* Side note */
.aud-preview-note {
    padding: 20px 0;
}

.aud-preview-note h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.aud-preview-note p {
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

.aud-preview-note p:last-child { margin-bottom: 0; }

/* ===== 6. AI CONSULTANT ===== */
.aud-ai {
    padding: 100px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.aud-ai::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 97, 70, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.aud-ai-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aud-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 97, 70, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.aud-ai-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.aud-ai-content h2 .accent { color: var(--accent); }

.aud-ai-content > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

.aud-ai-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.aud-ai-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
}

.aud-ai-list li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.85rem;
}

.aud-ai-foot {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Mock chat */
.aud-ai-chat {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.aud-ai-chat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}

.aud-ai-chat-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.aud-ai-chat-meta {
    display: flex;
    flex-direction: column;
}

.aud-ai-chat-meta strong {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 700;
}

.aud-ai-chat-meta span {
    font-size: 0.78rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.aud-ai-chat-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.aud-ai-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aud-ai-msg {
    padding: 12px 16px;
    border-radius: 14px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.45;
}

.aud-ai-msg-user {
    background: var(--accent);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.aud-ai-msg-bot {
    background: var(--bg-alt);
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* ===== 7. FAQ ===== */
.aud-faq {
    padding: 100px 0;
    background: var(--bg);
}

.aud-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.aud-faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.aud-faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(255, 97, 70, 0.08);
}

.aud-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
}

.aud-faq-item summary::-webkit-details-marker { display: none; }

.aud-faq-item summary i {
    color: var(--accent);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.aud-faq-item[open] summary i {
    transform: rotate(45deg);
}

.aud-faq-item p {
    padding: 0 24px 22px;
    color: var(--dark-light);
    line-height: 1.7;
    font-size: 0.96rem;
}

/* ===== 8. FINAL CTA ===== */
.aud-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    text-align: center;
}

.aud-final-inner {
    max-width: 720px;
    margin: 0 auto;
}

.aud-final h2 {
    color: white;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.aud-final p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.5;
}

.aud-final-form .aud-form-input {
    background: white;
    border-color: transparent;
}

.aud-final-form .aud-form-submit {
    background: var(--dark);
    color: white;
}

.aud-final-form .aud-form-submit:hover {
    background: #2d2d2d;
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */
@media (max-width: 1024px) {
    .aud-deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aud-checks-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .aud-preview-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aud-ai-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .aud-hero {
        padding: 110px 0 60px;
    }

    .aud-deliverables,
    .aud-how,
    .aud-checks-section,
    .aud-preview,
    .aud-ai,
    .aud-faq,
    .aud-final {
        padding: 60px 0;
    }

    .aud-hero-form {
        flex-direction: column;
    }

    .aud-form-submit {
        width: 100%;
        justify-content: center;
    }

    .aud-hero-trust {
        gap: 16px 24px;
    }

    .aud-trust-item {
        font-size: 0.85rem;
    }

    .aud-deliverables-grid {
        grid-template-columns: 1fr;
    }

    .aud-how-stage {
        padding: 24px 20px;
    }

    .aud-how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 28px;
    }

    .aud-how-step {
        padding: 20px 14px;
    }

    .aud-how-demo {
        padding: 20px 16px;
    }

    .aud-how-demo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .aud-checks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aud-mockup {
        padding: 22px 18px;
    }

    .aud-mockup-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .aud-mockup-score {
        align-self: center;
    }

    .aud-mockup-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .aud-mockup-issue > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .aud-mockup-lock {
        flex-direction: column;
        text-align: center;
    }

    .aud-ai-chat-messages {
        gap: 8px;
    }

    .aud-faq-item summary {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .aud-faq-item p {
        padding: 0 18px 18px;
    }
}

@media (max-width: 480px) {
    .aud-checks-grid {
        grid-template-columns: 1fr;
    }

    .aud-how-steps {
        grid-template-columns: 1fr;
    }
}