/* ============================================
   AUDIT YOUR STORE - Main Stylesheet
   ============================================
   A high-converting e-commerce CRO checklist
   sales page theme for WordPress.
   ============================================ */

/* ----------------------------------------
   CSS Custom Properties
   ---------------------------------------- */
:root {
    /* Colors — matched to AuditYourStore logo (teal + dark) */
    --ays-primary: #1A1F2E;
    --ays-primary-dark: #0F1219;
    --ays-primary-light: #2D3A4E;
    --ays-accent: #3ECDB0;
    --ays-accent-hover: #2BA893;
    --ays-accent-light: #E8FAF6;
    --ays-success: #10b981;
    --ays-success-light: #ecfdf5;
    --ays-danger: #ef4444;
    --ays-warning: #f59e0b;
    --ays-purple: #7c3aed;
    --ays-bg: #ffffff;
    --ays-bg-alt: #f8fafc;
    --ays-bg-dark: #111827;
    --ays-bg-hero: #F0FAF7;
    --ays-text: #1e293b;
    --ays-text-light: #64748b;
    --ays-text-lighter: #94a3b8;
    --ays-border: #e2e8f0;
    --ays-border-light: #f1f5f9;
    --ays-gold: #f59e0b;
    --ays-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --ays-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --ays-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --ays-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --ays-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --ays-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ays-font-mono: 'SF Mono', 'Fira Code', monospace;

    /* Spacing */
    --ays-container: 1200px;
    --ays-container-narrow: 800px;
    --ays-section-padding: 100px;
    --ays-gap: 24px;

    /* Border Radius */
    --ays-radius-sm: 6px;
    --ays-radius: 10px;
    --ays-radius-lg: 16px;
    --ays-radius-xl: 24px;
    --ays-radius-full: 9999px;

    /* Transitions */
    --ays-transition: 0.2s ease;
    --ays-transition-slow: 0.4s ease;
}

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

.ays-page {
    margin: 0;
    padding: 0;
    font-family: var(--ays-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ays-text);
    background: var(--ays-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Remove Astra defaults on our pages */
.ays-page #page,
.ays-page .ast-container,
.ays-page #content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

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

.ays-page a {
    color: var(--ays-primary);
    text-decoration: none;
    transition: color var(--ays-transition);
}

.ays-page a:hover {
    color: var(--ays-accent);
}

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.ays-container {
    max-width: var(--ays-container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.ays-container--narrow {
    max-width: var(--ays-container-narrow);
}

/* ----------------------------------------
   Section Headers
   ---------------------------------------- */
.ays-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ays-accent);
    margin-bottom: 12px;
}

.ays-section-label--light {
    color: rgba(255, 255, 255, 0.8);
}

.ays-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.ays-section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--ays-text);
    margin: 0 0 16px;
}

.ays-section-subtitle {
    font-size: 18px;
    color: var(--ays-text-light);
    line-height: 1.7;
    margin: 0;
}

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

.ays-btn--primary {
    background: var(--ays-accent);
    color: #fff;
    border-color: var(--ays-accent);
}

.ays-btn--primary:hover {
    background: var(--ays-accent-hover);
    border-color: var(--ays-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--ays-shadow-md);
}

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

.ays-btn--outline:hover {
    border-color: var(--ays-primary);
    color: var(--ays-primary);
    background: var(--ays-bg-alt);
}

.ays-btn--sm {
    font-size: 13px;
    padding: 8px 16px;
}

.ays-btn--lg {
    font-size: 17px;
    padding: 16px 32px;
    border-radius: var(--ays-radius-lg);
}

.ays-btn--xl {
    font-size: 19px;
    padding: 20px 40px;
    border-radius: var(--ays-radius-lg);
}

.ays-btn--full {
    width: 100%;
}

.ays-btn--pulse {
    animation: aysPulse 2s infinite;
}

.ays-btn__strike {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.85em;
    margin-left: 4px;
}

@keyframes aysPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
}

/* ----------------------------------------
   Announcement Bar
   ---------------------------------------- */
.ays-announce {
    background: var(--ays-primary-dark);
    color: #fff;
    text-align: center;
    padding: 10px 24px;
    font-size: 14px;
    position: relative;
}

.ays-announce p {
    margin: 0;
}

.ays-announce__strike {
    text-decoration: line-through;
    opacity: 0.6;
}

.ays-announce__close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.ays-announce__close:hover {
    color: #fff;
}

.ays-announce__countdown {
    display: inline-flex;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.ays-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ays-border-light);
    transition: box-shadow var(--ays-transition);
}

.ays-header--scrolled {
    box-shadow: var(--ays-shadow);
}

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

.ays-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ays-text);
}

.ays-logo:hover {
    color: var(--ays-text);
}

.ays-logo__text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.ays-logo__text strong {
    font-weight: 800;
}

.ays-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ays-nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--ays-text-light);
    text-decoration: none;
    transition: color var(--ays-transition);
}

.ays-nav__link:hover {
    color: var(--ays-text);
}

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

.ays-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ays-text);
    transition: all var(--ays-transition);
    border-radius: 2px;
}

.ays-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ays-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.ays-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.ays-hero {
    position: relative;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 50%, #f5f0ff 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.ays-hero__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ays-hero__content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ays-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--ays-border);
    padding: 6px 16px;
    border-radius: var(--ays-radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--ays-text);
    margin-bottom: 24px;
}

.ays-badge--glow {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.ays-hero__title {
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ays-primary-dark);
    margin: 0 0 24px;
    letter-spacing: -1px;
}

.ays-hero__title-accent {
    background: linear-gradient(135deg, var(--ays-accent) 0%, #e11d48 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ays-hero__subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--ays-text-light);
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ays-hero__cta-group {
    margin-bottom: 40px;
}

.ays-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.ays-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ays-text-light);
    font-weight: 500;
}

/* ----------------------------------------
   Hero Product Preview
   ---------------------------------------- */
.ays-hero__preview {
    margin-top: 36px !important;
    text-align: center;
}

.ays-hero__preview-img {
    width: 100% !important;
    max-width: 900px !important;
    height: auto !important;
    border-radius: 12px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.07),
        0 20px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* ----------------------------------------
   Trust Badge
   ---------------------------------------- */
.ays-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--ays-border);
    padding: 10px 20px;
    border-radius: var(--ays-radius-full);
    box-shadow: var(--ays-shadow-sm);
}

.ays-trust-badge--centered {
    display: flex;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto 48px;
}

.ays-trust-badge__avatars {
    display: flex;
}

.ays-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}

.ays-avatar:first-child {
    margin-left: 0;
}

.ays-avatar--sm {
    width: 36px;
    height: 36px;
    font-size: 13px;
    margin-left: 0;
    object-fit: cover;
}

.ays-header .ays-logo .ays-logo__img {
    height: 28px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain;
}

.ays-footer .ays-logo .ays-logo__img {
    height: 32px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain;
}

.ays-trust-badge__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ays-trust-badge__stars {
    display: flex;
    gap: 1px;
}

.ays-trust-badge__text {
    font-size: 13px;
    color: var(--ays-text-light);
}

.ays-trust-badge__text strong {
    color: var(--ays-text);
}

/* ----------------------------------------
   Platform Logos
   ---------------------------------------- */
.ays-logos {
    padding: 48px 0;
    border-bottom: 1px solid var(--ays-border-light);
    background: var(--ays-bg);
}

.ays-logos__label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ays-text-lighter);
    font-weight: 600;
    margin: 0 0 24px;
}

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

.ays-logos__item {
    font-size: 18px;
    font-weight: 700;
    color: var(--ays-text-lighter);
    opacity: 0.5;
    transition: opacity var(--ays-transition);
    letter-spacing: -0.3px;
}

.ays-logos__item:hover {
    opacity: 0.8;
}

/* ----------------------------------------
   Problem Section
   ---------------------------------------- */
.ays-problem {
    padding: var(--ays-section-padding) 0;
    background: var(--ays-bg);
}

.ays-problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ays-gap);
}

.ays-problem__card {
    background: var(--ays-bg);
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--ays-transition);
}

.ays-problem__card:hover {
    box-shadow: var(--ays-shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.ays-problem__icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.ays-problem__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--ays-text);
}

.ays-problem__text {
    font-size: 15px;
    color: var(--ays-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------
   Solution Section
   ---------------------------------------- */
.ays-solution {
    padding: var(--ays-section-padding) 0;
    background: var(--ays-bg-alt);
}

.ays-solution__inner {
    max-width: 800px;
    margin: 0 auto;
}

.ays-solution__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ays-solution__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--ays-bg);
    padding: 24px;
    border-radius: var(--ays-radius);
    border: 1px solid var(--ays-border-light);
    transition: all var(--ays-transition);
}

.ays-solution__feature:hover {
    box-shadow: var(--ays-shadow-sm);
    border-color: var(--ays-border);
}

.ays-solution__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ays-success-light);
    border-radius: var(--ays-radius);
}

.ays-solution__feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--ays-text);
}

.ays-solution__feature p {
    font-size: 14px;
    color: var(--ays-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ----------------------------------------
   Features Grid (What's Inside)
   ---------------------------------------- */
.ays-features {
    padding: var(--ays-section-padding) 0;
    background: var(--ays-bg);
}

.ays-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ays-gap);
}

.ays-features__card {
    background: var(--ays-bg);
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius-lg);
    padding: 28px;
    transition: all var(--ays-transition);
    position: relative;
    overflow: hidden;
}

.ays-features__card:hover {
    box-shadow: var(--ays-shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.ays-features__card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--ays-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ays-features__card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ays-text);
}

.ays-features__card-desc {
    font-size: 14px;
    color: var(--ays-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

.ays-features__card-count {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--ays-accent);
    background: var(--ays-accent-light);
    padding: 4px 12px;
    border-radius: var(--ays-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ays-features__total {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ays-features__total-inner {
    display: inline-block;
    background: linear-gradient(135deg, var(--ays-primary) 0%, var(--ays-primary-light) 100%);
    color: #fff;
    padding: 32px 48px;
    border-radius: var(--ays-radius-xl);
    text-align: center;
    width: 100%;
}

.ays-features__total-number {
    display: block;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.ays-features__total-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
}

.ays-features__total-inner p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0 auto;
    max-width: 320px;
}

/* ----------------------------------------
   Preview / Screenshots Section
   ---------------------------------------- */
.ays-preview {
    padding: var(--ays-section-padding) 0;
    background: var(--ays-bg-alt);
}

.ays-preview__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ays-gap);
    margin-bottom: 24px;
}

.ays-preview__item {
    position: relative;
}

.ays-preview__img-placeholder {
    position: relative;
    border-radius: var(--ays-radius-lg);
    overflow: hidden;
    box-shadow: var(--ays-shadow-lg);
    transition: all var(--ays-transition-slow);
}

.ays-preview__item:hover .ays-preview__img-placeholder {
    transform: translateY(-8px);
    box-shadow: var(--ays-shadow-xl);
}

.ays-preview__mock {
    background: #fff;
    border-radius: var(--ays-radius-lg);
    overflow: hidden;
}

.ays-preview__mock-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--ays-border);
}

.ays-preview__mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ays-preview__mock-body {
    padding: 20px;
}

.ays-preview__mock-body h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--ays-text);
}

.ays-preview__mock-line {
    height: 3px;
    background: var(--ays-border);
    border-radius: 2px;
    margin-bottom: 16px;
}

.ays-preview__mock-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--ays-text);
    border-bottom: 1px solid var(--ays-border-light);
}

.ays-preview__mock-check span {
    color: var(--ays-success);
    font-weight: 700;
    font-size: 14px;
}

.ays-preview__mock-check--blur {
    filter: blur(3px);
    opacity: 0.6;
    user-select: none;
}

.ays-preview__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ays-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--ays-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ays-preview__caption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ays-text-light);
    margin: 12px 0 0;
}

.ays-preview__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ays-text-lighter);
    text-align: center;
    margin: 0;
}

/* ----------------------------------------
   Comparison Table
   ---------------------------------------- */
.ays-compare {
    padding: var(--ays-section-padding) 0;
    background: var(--ays-bg);
}

.ays-compare__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 32px;
}

.ays-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.ays-compare__table thead th {
    padding: 20px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid var(--ays-border);
    vertical-align: bottom;
}

.ays-compare__table thead th:first-child {
    width: 40%;
}

.ays-compare__highlight {
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.04) 0%, rgba(249, 115, 22, 0.08) 100%);
}

.ays-compare__rec {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ays-accent);
    margin-bottom: 4px;
}

.ays-compare__price {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--ays-text);
    margin-top: 4px;
}

.ays-compare__price--muted {
    color: var(--ays-text-light);
    font-size: 16px;
}

.ays-compare__table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--ays-border-light);
    vertical-align: middle;
}

.ays-compare__table tbody tr:hover {
    background: var(--ays-bg-alt);
}

.ays-check {
    color: var(--ays-success);
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
}

.ays-cross {
    color: var(--ays-danger);
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
}

.ays-partial {
    color: var(--ays-warning);
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
}

.ays-compare__cost-good {
    color: var(--ays-success);
    font-size: 18px;
}

.ays-compare__cost-bad {
    color: var(--ays-danger);
    font-size: 16px;
}

.ays-compare__savings {
    text-align: center;
    font-size: 18px;
    color: var(--ays-text-light);
}

.ays-compare__savings strong {
    color: var(--ays-accent);
}

.ays-text-accent {
    color: var(--ays-accent);
}

/* ----------------------------------------
   Testimonials
   ---------------------------------------- */
.ays-testimonials {
    padding: var(--ays-section-padding) 0;
    background: var(--ays-bg-alt);
    overflow: hidden !important;
}

.ays-testimonials__slider {
    overflow: hidden !important;
    position: relative !important;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    touch-action: pan-y !important;
    -webkit-touch-callout: none;
}

section.ays-testimonials .ays-testimonials__track,
.ays-testimonials__track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    width: max-content !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    will-change: transform;
}

.ays-testimonials__hint {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--ays-text-lighter);
    letter-spacing: 0.3px;
}

section.ays-testimonials .ays-testimonial,
.ays-testimonials .ays-testimonial {
    background: var(--ays-bg) !important;
    border: 1px solid var(--ays-border) !important;
    border-radius: var(--ays-radius-lg) !important;
    padding: 28px !important;
    transition: box-shadow var(--ays-transition), border-color var(--ays-transition);
    min-width: 360px !important;
    max-width: 360px !important;
    width: 360px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    flex-basis: 360px !important;
    box-sizing: border-box !important;
    display: block !important;
    float: none !important;
}

.ays-testimonial:hover {
    box-shadow: var(--ays-shadow-md);
    border-color: transparent;
}

.ays-testimonial__stars {
    color: var(--ays-gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

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

.ays-testimonial__author strong {
    display: block;
    font-size: 14px;
    color: var(--ays-text);
}

.ays-testimonial__author span {
    font-size: 12px;
    color: var(--ays-text-lighter);
}

/* ----------------------------------------
   Pricing Section
   ---------------------------------------- */
.ays-pricing {
    padding: var(--ays-section-padding) 0;
    background: linear-gradient(180deg, var(--ays-bg) 0%, var(--ays-bg-alt) 100%);
}

.ays-pricing__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto 60px;
    align-items: start;
}

.ays-pricing__card {
    background: var(--ays-bg);
    border: 2px solid var(--ays-border);
    border-radius: var(--ays-radius-xl);
    overflow: hidden;
    transition: all var(--ays-transition);
}

.ays-pricing__card--main {
    border-color: var(--ays-accent);
    box-shadow: var(--ays-shadow-lg);
    position: relative;
}

.ays-pricing__card-badge {
    background: var(--ays-accent);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ays-pricing__card-preview {
    padding: 24px 24px 0;
}

.ays-pricing__card-preview-img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ays-pricing__card-header {
    padding: 24px 32px 0;
}

.ays-pricing__card-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--ays-text);
}

.ays-pricing__card-header p {
    font-size: 14px;
    color: var(--ays-text-light);
    margin: 0;
}

.ays-pricing__card-price {
    padding: 24px 32px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.ays-pricing__currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--ays-text);
}

.ays-pricing__amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--ays-text);
    line-height: 1;
}

.ays-pricing__original {
    font-size: 24px;
    color: var(--ays-text-lighter);
    text-decoration: line-through;
}

.ays-pricing__save {
    font-size: 13px;
    font-weight: 700;
    color: var(--ays-success);
    background: var(--ays-success-light);
    padding: 4px 12px;
    border-radius: var(--ays-radius-full);
}

.ays-pricing__features {
    list-style: none;
    padding: 0 32px;
    margin: 0 0 24px;
}

.ays-pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--ays-text);
    border-bottom: 1px solid var(--ays-border-light);
}

.ays-pricing__features li:last-child {
    border-bottom: none;
}

.ays-pricing__features li svg {
    flex-shrink: 0;
}

.ays-pricing__card--main .ays-btn {
    margin: 0 32px 24px;
    width: calc(100% - 64px);
}

.ays-pricing__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ays-text-lighter);
    padding: 0 32px 24px;
    margin: 0;
}

/* Upsells */
.ays-pricing__upsells {
    background: var(--ays-bg);
    border: 2px solid var(--ays-border);
    border-radius: var(--ays-radius-xl);
    padding: 32px;
}

.ays-pricing__upsells-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--ays-text);
}

.ays-pricing__upsells-subtitle {
    font-size: 14px;
    color: var(--ays-text-light);
    margin: 0 0 24px;
}

.ays-upsell {
    background: var(--ays-bg-alt);
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius);
    padding: 20px;
    margin-bottom: 16px;
    transition: all var(--ays-transition);
}

.ays-upsell.active {
    border-color: var(--ays-accent);
    background: var(--ays-accent-light);
}

.ays-upsell__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ays-upsell__toggle {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.ays-upsell__toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ays-upsell__switch {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--ays-border);
    border-radius: 12px;
    position: relative;
    transition: background var(--ays-transition);
}

.ays-upsell__switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--ays-shadow-sm);
    transition: transform var(--ays-transition);
}

.ays-upsell__toggle input:checked + .ays-upsell__switch {
    background: var(--ays-accent);
}

.ays-upsell__toggle input:checked + .ays-upsell__switch::after {
    transform: translateX(20px);
}

.ays-upsell__info {
    flex: 1;
}

.ays-upsell__info h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--ays-text);
}

.ays-upsell__info p {
    font-size: 13px;
    color: var(--ays-text-light);
    margin: 0;
    line-height: 1.6;
}

.ays-upsell__price {
    font-size: 16px;
    font-weight: 800;
    color: var(--ays-accent);
    white-space: nowrap;
}

.ays-pricing__order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 2px solid var(--ays-border);
    font-size: 16px;
}

.ays-pricing__order-total strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--ays-text);
}

/* Checkout Opt-in */
.ays-checkout-optin {
    background: var(--ays-bg);
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius);
    padding: 20px;
    margin-bottom: 16px;
}

.ays-checkout-optin .ays-form-group {
    margin-bottom: 12px;
}

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

.ays-checkout-optin .ays-form-group input {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--ays-font);
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius-sm);
    outline: none;
    background: var(--ays-bg-alt);
    color: var(--ays-text);
    transition: border-color var(--ays-transition);
}

.ays-checkout-optin .ays-form-group input:focus {
    border-color: var(--ays-accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.ays-optin-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--ays-text-light);
    line-height: 1.5;
}

.ays-optin-label input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--ays-accent);
    flex-shrink: 0;
}

/* Value Stack */
.ays-pricing__value-stack {
    max-width: 600px;
    margin: 0 auto;
    background: var(--ays-bg);
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius-xl);
    padding: 36px;
}

.ays-pricing__value-stack h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 20px;
    text-align: center;
    color: var(--ays-text);
}

.ays-pricing__value-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ays-pricing__value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--ays-border-light);
}

.ays-pricing__value-name {
    font-size: 14px;
    color: var(--ays-text);
}

.ays-pricing__value-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--ays-text-light);
}

.ays-pricing__value-price--strike {
    text-decoration: line-through;
    color: var(--ays-text-lighter);
}

.ays-pricing__value-item--total {
    border-bottom: 2px solid var(--ays-border);
    padding-top: 16px;
}

.ays-pricing__value-item--total .ays-pricing__value-name {
    font-weight: 700;
}

.ays-pricing__value-item--you-pay {
    border-bottom: none;
    padding-top: 12px;
}

.ays-pricing__value-item--you-pay .ays-pricing__value-name {
    font-size: 18px;
    font-weight: 800;
}

.ays-pricing__value-price--accent {
    font-size: 28px !important;
    font-weight: 900;
    color: var(--ays-accent);
}

/* ----------------------------------------
   Consultation Section
   ---------------------------------------- */
.ays-consultation {
    padding: var(--ays-section-padding) 0;
    background: linear-gradient(135deg, var(--ays-primary-dark) 0%, var(--ays-primary) 100%);
    color: #fff;
}

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

.ays-consultation__title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #fff;
}

.ays-consultation__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 24px;
}

.ays-consultation__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.ays-consultation__benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.ays-consultation__note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.ays-consultation__form-wrap {
    position: relative;
}

.ays-consultation__form {
    background: #fff;
    border-radius: var(--ays-radius-xl);
    padding: 36px;
    box-shadow: var(--ays-shadow-xl);
}

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

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

.ays-optional {
    font-weight: 400;
    color: var(--ays-text-lighter);
}

.ays-form-group input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--ays-font);
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius);
    transition: border-color var(--ays-transition);
    outline: none;
    background: var(--ays-bg);
    color: var(--ays-text);
}

.ays-form-group input:focus {
    border-color: var(--ays-accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.ays-form-group input::placeholder {
    color: var(--ays-text-lighter);
}

.ays-consultation__form-note {
    text-align: center;
    font-size: 12px;
    color: var(--ays-text-lighter);
    margin: 12px 0 0;
}

.ays-consultation__success {
    text-align: center;
    background: #fff;
    border-radius: var(--ays-radius-xl);
    padding: 48px 36px;
    box-shadow: var(--ays-shadow-xl);
}

.ays-consultation__success svg {
    margin: 0 auto 16px;
}

.ays-consultation__success h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--ays-text);
}

.ays-consultation__success p {
    color: var(--ays-text-light);
    font-size: 15px;
    margin: 0;
}

/* ----------------------------------------
   FAQ Section
   ---------------------------------------- */
.ays-faq {
    padding: var(--ays-section-padding) 0;
    background: var(--ays-bg);
}

.ays-faq__list {
    max-width: 780px;
    margin: 0 auto;
}

.ays-faq__item {
    border: 1px solid var(--ays-border);
    border-radius: var(--ays-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--ays-transition);
}

.ays-faq__item:hover {
    border-color: var(--ays-primary-light);
}

.ays-faq__item.active {
    border-color: var(--ays-accent);
}

.ays-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--ays-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--ays-text);
    text-align: left;
    cursor: pointer;
    transition: background var(--ays-transition);
}

.ays-faq__question:hover {
    background: var(--ays-bg-alt);
}

.ays-faq__icon {
    flex-shrink: 0;
    transition: transform var(--ays-transition);
    color: var(--ays-text-lighter);
}

.ays-faq__item.active .ays-faq__icon {
    transform: rotate(180deg);
    color: var(--ays-accent);
}

.ays-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ays-faq__item.active .ays-faq__answer {
    max-height: 500px;
}

.ays-faq__answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--ays-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------
   Final CTA
   ---------------------------------------- */
.ays-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 50%, #f5f0ff 100%);
}

.ays-final-cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ays-final-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--ays-text);
}

.ays-final-cta__text {
    font-size: 17px;
    color: var(--ays-text-light);
    line-height: 1.7;
    margin: 0 0 28px;
}

.ays-final-cta__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.ays-final-cta__price-now {
    font-size: 48px;
    font-weight: 900;
    color: var(--ays-text);
}

.ays-final-cta__price-was {
    font-size: 24px;
    color: var(--ays-text-lighter);
    text-decoration: line-through;
}

.ays-final-cta__price-save {
    font-size: 14px;
    font-weight: 700;
    color: var(--ays-success);
    background: var(--ays-success-light);
    padding: 4px 12px;
    border-radius: var(--ays-radius-full);
}

.ays-final-cta__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.ays-final-cta__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ays-text-light);
    font-weight: 500;
}

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

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

.ays-footer .ays-logo--light .ays-logo__text {
    color: #fff;
}

.ays-footer__desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.5);
    max-width: 320px;
}

.ays-footer__heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 16px;
}

.ays-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ays-footer__links li {
    margin-bottom: 10px;
}

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

.ays-footer__links a:hover {
    color: #fff;
}

.ays-footer__payment-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin: 20px 0 10px;
}

.ays-footer__cards {
    display: flex;
    gap: 8px;
}

.ays-payment-icon {
    opacity: 0.6;
    transition: opacity var(--ays-transition);
}

.ays-payment-icon:hover {
    opacity: 1;
}

.ays-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.ays-footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.ays-footer__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------
   Legal Pages
   ---------------------------------------- */
.ays-legal {
    padding: 120px 0 80px;
    background: var(--ays-bg);
    min-height: 100vh;
}

.ays-legal__header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--ays-border);
}

.ays-legal__header h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--ays-text);
    margin: 0 0 8px;
}

.ays-legal__updated {
    font-size: 14px;
    color: var(--ays-text-lighter);
    margin: 0;
}

.ays-legal__content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ays-text);
}

.ays-legal__section {
    margin-bottom: 36px;
}

.ays-legal__section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ays-text);
    margin: 0 0 12px;
    padding-top: 16px;
}

.ays-legal__section h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ays-text);
    margin: 20px 0 8px;
}

.ays-legal__section p {
    margin: 0 0 12px;
    color: var(--ays-text-light);
}

.ays-legal__section ul {
    margin: 0 0 12px;
    padding-left: 24px;
}

.ays-legal__section li {
    margin-bottom: 8px;
    color: var(--ays-text-light);
}

.ays-legal__section a {
    color: var(--ays-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ays-legal__section a:hover {
    color: var(--ays-accent-hover);
}

.ays-legal__nav {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--ays-border);
    margin-top: 48px;
}

/* ----------------------------------------
   Animations (scroll-triggered)
   ---------------------------------------- */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------
   Responsive Design
   ---------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --ays-section-padding: 80px;
    }

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

    section.ays-testimonials .ays-testimonial,
    .ays-testimonials .ays-testimonial {
        min-width: 320px !important;
        max-width: 320px !important;
        width: 320px !important;
        flex-basis: 320px !important;
    }

    .ays-pricing__wrapper {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .ays-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --ays-section-padding: 64px;
        --ays-gap: 16px;
    }

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

    /* Mobile Nav */
    .ays-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 16px;
        box-shadow: var(--ays-shadow-xl);
        transition: right 0.3s ease;
        z-index: 1001;
        align-items: stretch;
    }

    .ays-nav.active {
        right: 0;
    }

    .ays-nav__link {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid var(--ays-border-light);
    }

    .ays-hamburger {
        display: flex;
        z-index: 1002;
    }

    /* Hero */
    .ays-hero {
        padding: 60px 0 50px;
    }

    .ays-hero__title {
        font-size: 32px;
    }

    .ays-hero__subtitle {
        font-size: 16px;
    }

    .ays-hero__preview {
        margin-top: 36px !important;
    }

    .ays-hero__preview-img {
        border-radius: 8px;
    }

    .ays-hero__meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .ays-trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 16px;
    }

    .ays-trust-badge__avatars {
        justify-content: center;
    }

    /* Problem Grid */
    .ays-problem__grid {
        grid-template-columns: 1fr;
    }

    /* Features Grid */
    .ays-features__grid {
        grid-template-columns: 1fr;
    }

    .ays-features__total {
        grid-column: span 1;
    }

    /* Preview */
    .ays-preview__gallery {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    section.ays-testimonials .ays-testimonial,
    .ays-testimonials .ays-testimonial {
        min-width: 280px !important;
        max-width: 280px !important;
        width: 280px !important;
        flex-basis: 280px !important;
        padding: 20px !important;
    }

    section.ays-testimonials .ays-testimonials__track,
    .ays-testimonials .ays-testimonials__track {
        animation-duration: 30s !important;
    }

    /* Comparison Table - Scrollable */
    .ays-compare__table {
        min-width: 600px;
    }

    /* Consultation */
    .ays-consultation__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ays-consultation__benefits {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .ays-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .ays-legal__nav {
        flex-direction: column;
        gap: 12px;
    }

    .ays-legal__nav .ays-btn {
        text-align: center;
        justify-content: center;
    }

    /* Logos */
    .ays-logos__grid {
        gap: 20px;
    }

    .ays-logos__item {
        font-size: 15px;
    }

    /* Buttons */
    .ays-btn--lg {
        font-size: 15px;
        padding: 14px 24px;
    }

    .ays-btn--xl {
        font-size: 17px;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .ays-hero__title {
        font-size: 28px;
    }

    .ays-section-title {
        font-size: 24px;
    }

    .ays-pricing__amount {
        font-size: 44px;
    }

    .ays-upsell__header {
        flex-wrap: wrap;
    }

    .ays-upsell__price {
        margin-left: 56px;
    }

    .ays-features__total-number {
        font-size: 44px;
    }

    .ays-final-cta__price-now {
        font-size: 40px;
    }
}

/* ----------------------------------------
   Sticky Mobile CTA
   ---------------------------------------- */
@media (max-width: 768px) {
    .ays-mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        border-top: 1px solid var(--ays-border);
        padding: 12px 16px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .ays-mobile-cta.visible {
        transform: translateY(0);
    }

    .ays-mobile-cta__price {
        font-size: 13px;
        color: var(--ays-text-light);
    }

    .ays-mobile-cta__price strong {
        font-size: 22px;
        font-weight: 800;
        color: var(--ays-text);
        display: block;
    }

    .ays-mobile-cta__price s {
        color: var(--ays-text-lighter);
    }

    .ays-mobile-cta .ays-btn {
        flex: 1;
        text-align: center;
    }
}

/* ----------------------------------------
   Overlay for mobile nav
   ---------------------------------------- */
.ays-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ays-transition);
}

.ays-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------
   Print Styles
   ---------------------------------------- */
@media print {
    .ays-announce,
    .ays-header,
    .ays-footer,
    .ays-consultation,
    .ays-final-cta,
    .ays-mobile-cta {
        display: none !important;
    }

    .ays-legal {
        padding: 20px 0;
    }

    .ays-page {
        font-size: 12px;
    }
}
