/* ============================================
   Anything Search - Product Page Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --secondary: #0F172A;
    --accent: #22C55E;
    --accent-dark: #16A34A;

    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --border: #E5E7EB;
    --border-light: #F1F5F9;

    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;

    --danger: #EF4444;
    --warning: #F59E0B;
    --disabled: #CBD5E1;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

/* Base Styles */
.as-product-page {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg);
}

.as-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Section Headers
   ============================================ */

.as-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.as-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    margin-bottom: 16px;
}

.as-section-badge--success {
    color: var(--accent);
    background: rgba(34, 197, 94, 0.1);
}

.as-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 16px;
    line-height: 1.2;
}

.as-section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */

.as-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.as-btn--primary {
    background: var(--primary);
    color: white;
}

.as-btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.as-btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.as-btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.as-btn--white {
    background: white;
    color: var(--primary);
}

.as-btn--white:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.as-btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ============================================
   Badges
   ============================================ */

.as-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.as-badge--primary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.as-badge--success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent);
}

.as-badge--small {
    padding: 4px 8px;
    font-size: 10px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
}

/* ============================================
   Hero Section
   ============================================ */

.as-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.as-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.as-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #EEF2FF 0%, #F8FAFC 50%, #F0FDF4 100%);
}

.as-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.as-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.as-hero__badge {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.as-hero__title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 12px;
    line-height: 1.1;
}

.as-hero__title-icon {
    font-size: 48px;
}

.as-hero__tagline {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    margin: 0 0 20px;
}

.as-hero__description {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0 0 32px;
    line-height: 1.7;
}

.as-hero__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.as-stat {
    display: flex;
    flex-direction: column;
}

.as-stat__value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.as-stat__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.as-hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.as-hero__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.as-hero__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.as-stars {
    display: flex;
    gap: 2px;
}

.as-stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBF24;
}

.as-hero__platforms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.as-divider {
    color: var(--border);
}

/* Screenshot Frame */
.as-hero__visual {
    position: relative;
}

.as-hero__screenshot-wrapper {
    position: relative;
}

.as-hero__screenshot-frame {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.as-hero__screenshot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.as-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.as-dot--red { background: #EF4444; }
.as-dot--yellow { background: #F59E0B; }
.as-dot--green { background: #22C55E; }

.as-hero__screenshot-title {
    margin-left: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.as-hero__screenshot-content {
    padding: 0;
}

.as-hero__screenshot {
    display: block;
    width: 100%;
    height: auto;
}

.as-hero__screenshot-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* ============================================
   Trust Badges
   ============================================ */

.as-trust {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.as-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.as-trust__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.as-trust__item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.as-trust__item div {
    display: flex;
    flex-direction: column;
}

.as-trust__item strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.as-trust__item span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   Problem/Solution Section
   ============================================ */

.as-problem {
    padding: 80px 0;
    background: white;
}

.as-problem__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.as-problem__left,
.as-problem__right {
    padding: 40px;
    border-radius: var(--radius-xl);
}

.as-problem__left {
    background: linear-gradient(135deg, #FEF2F2 0%, #FFF7ED 100%);
    border: 1px solid #FECACA;
}

.as-problem__right {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border: 1px solid #BBF7D0;
}

.as-problem__list,
.as-solution__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.as-problem__list li,
.as-solution__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
}

.as-problem__list li svg {
    color: var(--danger);
    flex-shrink: 0;
    margin-top: 2px;
}

.as-solution__list li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   Comparison Table
   ============================================ */

.as-comparison {
    padding: 80px 0;
    background: var(--bg);
}

.as-comparison__table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.as-comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.as-comparison__table th,
.as-comparison__table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.as-comparison__table thead th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.as-comparison__table thead th.as-comparison__highlight {
    background: var(--primary);
}

.as-comparison__product {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.as-comparison__icon {
    font-size: 20px;
}

.as-comparison__table tbody tr:hover {
    background: var(--bg);
}

.as-comparison__table tbody td:first-child {
    font-weight: 500;
}

.as-comparison__highlight {
    background: rgba(37, 99, 235, 0.05) !important;
}

.as-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.as-check--yes { color: var(--accent); }
.as-check--no { color: var(--danger); }
.as-check--partial { color: var(--warning); }

/* Verdict Card */
.as-comparison__verdict {
    display: flex;
    justify-content: center;
}

.as-verdict-card {
    max-width: 700px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F0FDF4 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
}

.as-verdict-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.as-verdict-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 16px;
}

.as-verdict-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Features Section
   ============================================ */

.as-features {
    padding: 80px 0;
    background: white;
}

.as-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.as-feature-card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.as-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.as-feature-card--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}

.as-feature-card--primary .as-feature-card__icon,
.as-feature-card--primary .as-feature-card__title,
.as-feature-card--primary .as-feature-card__desc,
.as-feature-card--primary .as-feature-card__list li {
    color: white;
}

.as-feature-card--primary .as-feature-card__icon {
    background: rgba(255, 255, 255, 0.2);
}

.as-feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    color: var(--primary);
}

.as-feature-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 12px;
}

.as-feature-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 20px;
    line-height: 1.6;
}

.as-feature-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.as-feature-card__list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.as-feature-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.as-feature-card--primary .as-feature-card__list li::before {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   How It Works
   ============================================ */

.as-how-it-works {
    padding: 80px 0;
    background: var(--bg);
}

.as-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.as-step {
    position: relative;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.as-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: var(--primary);
    border-radius: 50%;
}

.as-step__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 12px;
}

.as-step__content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px;
    line-height: 1.6;
}

.as-step__icon {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ============================================
   Screenshots Gallery
   ============================================ */

.as-screenshots {
    padding: 80px 0;
    background: white;
}

.as-screenshots__gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.as-screenshot-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.as-screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.as-screenshot-item--large {
    grid-row: span 2;
}

.as-screenshot-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.as-screenshot-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   Technical Specs
   ============================================ */

.as-specs {
    padding: 80px 0;
    background: var(--bg);
}

.as-specs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.as-spec-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.as-spec-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.as-spec-card h3 svg {
    color: var(--primary);
}

.as-spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.as-spec-card li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.as-spec-card li:last-child {
    border-bottom: none;
}

.as-spec-card li strong {
    color: var(--text-primary);
    margin-right: 8px;
}

/* ============================================
   FAQ Section
   ============================================ */

.as-faq {
    padding: 80px 0;
    background: white;
}

.as-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.as-faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.as-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.as-faq__question:hover {
    background: var(--border-light);
}

.as-faq__question svg {
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.as-faq__item.active .as-faq__question svg {
    transform: rotate(180deg);
}

.as-faq__answer {
    display: none;
    padding: 0 24px 20px;
    background: white;
}

.as-faq__item.active .as-faq__answer {
    display: block;
}

.as-faq__answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 12px;
}

.as-faq__answer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.as-faq__answer li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

/* ============================================
   Changelog Section
   ============================================ */

.as-changelog {
    padding: 80px 0;
    background: var(--bg);
}

.as-changelog__timeline {
    max-width: 800px;
    margin: 0 auto;
}

.as-changelog__item {
    position: relative;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.as-changelog__item--latest {
    border-color: var(--primary);
    border-width: 2px;
}

.as-changelog__version {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.as-version-badge {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border-radius: 20px;
}

.as-changelog__date {
    font-size: 14px;
    color: var(--text-muted);
}

.as-changelog__content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 24px;
}

.as-changelog__category {
    margin-bottom: 20px;
}

.as-changelog__category h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.as-changelog__category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.as-changelog__category li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.as-changelog__category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   CTA Section
   ============================================ */

.as-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.as-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.as-cta__icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.as-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
}

.as-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px;
}

.as-cta__actions {
    margin-bottom: 24px;
}

.as-cta__meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.as-cta__meta span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Support Section
   ============================================ */

.as-support {
    padding: 80px 0;
    background: white;
}

.as-support__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.as-support__card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.as-support__card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.as-support__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.as-support__card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 12px;
}

.as-support__card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.as-support__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.as-support__link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   Developer Section
   ============================================ */

.as-developer {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.as-developer__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.as-developer__logo img {
    display: block;
    border-radius: var(--radius);
}

.as-developer__info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 8px;
}

.as-developer__info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 8px;
}

.as-developer__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.as-developer__link:hover {
    text-decoration: underline;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 1024px) {
    .as-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-hero__visual {
        order: -1;
    }

    .as-hero__title {
        font-size: 40px;
    }

    .as-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-problem__content {
        grid-template-columns: 1fr;
    }

    .as-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-screenshots__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .as-screenshot-item--large {
        grid-row: span 1;
        grid-column: span 2;
    }

    .as-specs__grid {
        grid-template-columns: 1fr;
    }

    .as-support__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .as-container {
        padding: 0 16px;
    }

    .as-section-title {
        font-size: 28px;
    }

    .as-hero {
        padding: 60px 0 80px;
    }

    .as-hero__title {
        font-size: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .as-hero__title-icon {
        font-size: 40px;
    }

    .as-hero__stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .as-hero__actions {
        flex-direction: column;
    }

    .as-hero__badge {
        flex-wrap: wrap;
    }

    .as-trust__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .as-features__grid {
        grid-template-columns: 1fr;
    }

    .as-steps {
        grid-template-columns: 1fr;
    }

    .as-screenshots__gallery {
        grid-template-columns: 1fr;
    }

    .as-screenshot-item--large {
        grid-column: span 1;
    }

    .as-comparison__table {
        font-size: 13px;
    }

    .as-comparison__table th,
    .as-comparison__table td {
        padding: 12px;
    }

    .as-cta h2 {
        font-size: 28px;
    }

    .as-cta__meta {
        flex-direction: column;
        gap: 12px;
    }

    .as-developer__content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .as-hero__title {
        font-size: 28px;
    }

    .as-hero__tagline {
        font-size: 18px;
    }

    .as-hero__description {
        font-size: 16px;
    }

    .as-stat__value {
        font-size: 24px;
    }

    .as-btn--lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .as-comparison__product span:last-child {
        display: none;
    }

    .as-faq__question {
        padding: 16px;
        font-size: 15px;
    }

    .as-faq__answer {
        padding: 0 16px 16px;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.as-hero__content {
    animation: fadeInUp 0.6s ease-out;
}

.as-feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.as-feature-card:nth-child(1) { animation-delay: 0.1s; }
.as-feature-card:nth-child(2) { animation-delay: 0.2s; }
.as-feature-card:nth-child(3) { animation-delay: 0.3s; }
.as-feature-card:nth-child(4) { animation-delay: 0.4s; }
.as-feature-card:nth-child(5) { animation-delay: 0.5s; }
.as-feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Scroll reveal animation class */
.as-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.as-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .as-hero__background,
    .as-hero__screenshot-glow,
    .as-cta,
    .as-btn {
        display: none;
    }

    .as-product-page {
        background: white;
    }

    .as-section-title {
        color: black;
    }
}