/*
Theme Name: AcelleMail
Description: Landing page theme for AcelleMail Email Marketing Platform — modern SaaS design inspired by Mailchimp
Version: 1.0.0
Author: vBrand
Text Domain: acellemail
*/

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
    --am-primary: #4F46E5;
    --am-primary-dark: #3730A3;
    --am-primary-light: #818CF8;
    --am-primary-50: #EEF2FF;
    --am-primary-100: #E0E7FF;
    --am-accent: #F97316;
    --am-accent-dark: #EA580C;
    --am-accent-light: #FB923C;
    --am-dark: #0F172A;
    --am-dark-2: #1E293B;
    --am-text: #334155;
    --am-text-light: #64748B;
    --am-text-muted: #94A3B8;
    --am-bg: #FFFFFF;
    --am-bg-light: #F8FAFC;
    --am-bg-section: #F1F5F9;
    --am-border: #E2E8F0;
    --am-border-light: #F1F5F9;
    --am-success: #10B981;
    --am-error: #EF4444;
    --am-warning: #F59E0B;

    --am-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --am-radius: 8px;
    --am-radius-lg: 12px;
    --am-radius-xl: 16px;
    --am-radius-full: 9999px;
    --am-shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.06);
    --am-shadow-md: 0 4px 6px -1px rgba(15,23,42,0.08), 0 2px 4px -2px rgba(15,23,42,0.06);
    --am-shadow-lg: 0 10px 15px -3px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.06);
    --am-shadow-xl: 0 20px 25px -5px rgba(15,23,42,0.1), 0 8px 10px -6px rgba(15,23,42,0.08);
    --am-transition: 0.2s ease;
    --am-transition-slow: 0.3s ease;

    --am-container: 1200px;
    --am-container-sm: 800px;
    --am-gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--am-font); font-size: 16px; line-height: 1.7; color: var(--am-text); background: var(--am-bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--am-primary); text-decoration: none; transition: color var(--am-transition); }
a:hover { color: var(--am-primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   2. LAYOUT
   ============================================================ */
.am-container { max-width: var(--am-container); margin: 0 auto; padding: 0 var(--am-gutter); }
.am-container--sm { max-width: var(--am-container-sm); }
.am-section { padding: 100px 0; }
.am-section--light { background: var(--am-bg-light); }
.am-section--dark { background: var(--am-dark); color: #fff; }
.am-section--primary { background: var(--am-primary); color: #fff; }
.am-section--gradient { background: linear-gradient(135deg, var(--am-primary) 0%, var(--am-primary-dark) 100%); color: #fff; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 { color: var(--am-dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: 56px; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 40px; letter-spacing: -0.02em; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
p { margin-bottom: 1em; }
.am-badge { display: inline-block; padding: 6px 16px; border-radius: var(--am-radius-full); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.am-badge--primary { background: var(--am-primary-50); color: var(--am-primary); }
.am-badge--accent { background: #FFF7ED; color: var(--am-accent); }
.am-badge--light { background: rgba(255,255,255,0.15); color: #fff; }

.am-section__head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.am-section__head h2 { margin-bottom: 16px; }
.am-section__head p { color: var(--am-text-light); font-size: 18px; line-height: 1.7; }

.am-section--dark h1, .am-section--dark h2, .am-section--dark h3,
.am-section--gradient h1, .am-section--gradient h2, .am-section--gradient h3,
.am-section--primary h1, .am-section--primary h2, .am-section--primary h3 { color: #fff; }
.am-section--dark p, .am-section--gradient p, .am-section--primary p { color: rgba(255,255,255,0.8); }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.am-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border: 2px solid transparent; border-radius: var(--am-radius-lg); font-size: 15px; font-weight: 600; line-height: 1; text-decoration: none; transition: all var(--am-transition); cursor: pointer; white-space: nowrap; }
.am-btn--primary { background: var(--am-primary); color: #fff; border-color: var(--am-primary); }
.am-btn--primary:hover { background: var(--am-primary-dark); border-color: var(--am-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--am-shadow-md); }
.am-btn--accent { background: var(--am-accent); color: #fff; border-color: var(--am-accent); }
.am-btn--accent:hover { background: var(--am-accent-dark); border-color: var(--am-accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--am-shadow-md); }
.am-btn--outline { background: transparent; color: var(--am-primary); border-color: var(--am-primary); }
.am-btn--outline:hover { background: var(--am-primary); color: #fff; transform: translateY(-1px); }
.am-btn--white { background: #fff; color: var(--am-primary); border-color: #fff; }
.am-btn--white:hover { background: var(--am-primary-50); border-color: var(--am-primary-50); color: var(--am-primary-dark); transform: translateY(-1px); }
.am-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.am-btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
.am-btn--lg { padding: 16px 36px; font-size: 16px; border-radius: var(--am-radius-xl); }
.am-btn--sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   5. TOPBAR
   ============================================================ */
.am-topbar { background: var(--am-dark); color: rgba(255,255,255,0.9); padding: 10px 0; font-size: 14px; text-align: center; }
.am-topbar__inner { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.am-topbar a { color: var(--am-accent-light); font-weight: 600; }
.am-topbar a:hover { color: var(--am-accent); }

/* ============================================================
   6. HEADER & NAV
   ============================================================ */
.am-header { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--am-border-light); position: sticky; top: 0; z-index: 100; transition: box-shadow var(--am-transition); }
.am-header.scrolled { box-shadow: var(--am-shadow-md); }
.am-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.am-header__logo img { height: 32px; width: auto; }
.am-header__logo span { font-size: 22px; font-weight: 800; color: var(--am-dark); }
.am-nav { display: flex; align-items: center; gap: 4px; }
.am-nav__item { padding: 8px 16px; border-radius: var(--am-radius); font-size: 15px; font-weight: 500; color: var(--am-text); transition: all var(--am-transition); position: relative; }
.am-nav__item:hover { color: var(--am-primary); background: var(--am-primary-50); }
.am-nav__item.active { color: var(--am-primary); font-weight: 600; }
.am-header__actions { display: flex; align-items: center; gap: 12px; }

/* Mobile Toggle */
.am-mobile-toggle { display: none; background: none; border: none; padding: 8px; color: var(--am-dark); }
.am-mobile-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   7. MOBILE NAV
   ============================================================ */
.am-mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 85vw; background: #fff; z-index: 200; transform: translateX(100%); transition: transform var(--am-transition-slow); box-shadow: var(--am-shadow-xl); display: flex; flex-direction: column; }
.am-mobile-nav.open { transform: translateX(0); }
.am-mobile-nav__header { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--am-gutter); border-bottom: 1px solid var(--am-border); }
.am-mobile-nav__close { background: none; border: none; padding: 4px; color: var(--am-text); }
.am-mobile-nav__close svg { width: 24px; height: 24px; }
.am-mobile-nav__links { flex: 1; padding: 16px 0; overflow-y: auto; }
.am-mobile-nav__link { display: block; padding: 14px var(--am-gutter); font-size: 16px; font-weight: 500; color: var(--am-text); transition: all var(--am-transition); }
.am-mobile-nav__link:hover, .am-mobile-nav__link.active { color: var(--am-primary); background: var(--am-primary-50); }
.am-mobile-nav__footer { padding: 20px var(--am-gutter); border-top: 1px solid var(--am-border); }
.am-mobile-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.5); z-index: 199; opacity: 0; pointer-events: none; transition: opacity var(--am-transition-slow); }
.am-mobile-overlay.visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   8. HERO
   ============================================================ */
.am-hero { padding: 80px 0 100px; background: linear-gradient(135deg, #F8FAFC 0%, var(--am-primary-50) 50%, #E0E7FF 100%); position: relative; overflow: hidden; }
.am-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%); pointer-events: none; }
.am-hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%); pointer-events: none; }
.am-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.am-hero__content { max-width: 560px; }
.am-hero__badge { margin-bottom: 24px; }
.am-hero__title { font-size: 56px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--am-dark); }
.am-hero__title span { color: var(--am-primary); position: relative; }
.am-hero__subtitle { font-size: 18px; line-height: 1.7; color: var(--am-text-light); margin-bottom: 36px; max-width: 480px; }
.am-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.am-hero__note { margin-top: 16px; font-size: 13px; color: var(--am-text-muted); }
.am-hero__visual { position: relative; }
.am-hero__image { width: 100%; border-radius: var(--am-radius-xl); box-shadow: var(--am-shadow-xl); }
.am-hero__visual-deco { position: absolute; width: 120px; height: 120px; border-radius: var(--am-radius-xl); background: var(--am-primary); opacity: 0.1; z-index: -1; }
.am-hero__visual-deco--1 { top: -20px; right: -20px; }
.am-hero__visual-deco--2 { bottom: -20px; left: -20px; background: var(--am-accent); }

/* Hero placeholder when no image */
.am-hero__placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--am-primary) 0%, var(--am-primary-dark) 100%); border-radius: var(--am-radius-xl); box-shadow: var(--am-shadow-xl); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.am-hero__placeholder::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.am-hero__placeholder-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px; }
.am-hero__placeholder-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: rgba(255,255,255,0.15); border-radius: var(--am-radius-xl); display: flex; align-items: center; justify-content: center; }
.am-hero__placeholder-icon svg { width: 40px; height: 40px; stroke: #fff; fill: none; }
.am-hero__placeholder-text { font-size: 20px; font-weight: 600; }
.am-hero__placeholder-sub { font-size: 14px; opacity: 0.7; margin-top: 4px; }

/* ============================================================
   9. STATS BAR
   ============================================================ */
.am-stats { padding: 60px 0; border-bottom: 1px solid var(--am-border); }
.am-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.am-stats__item {}
.am-stats__number { font-size: 40px; font-weight: 800; color: var(--am-primary); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.am-stats__label { font-size: 15px; color: var(--am-text-light); font-weight: 500; }

/* ============================================================
   10. FEATURE CARDS (Homepage)
   ============================================================ */
.am-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.am-feature-card { background: #fff; border: 1px solid var(--am-border); border-radius: var(--am-radius-xl); padding: 36px; transition: all var(--am-transition-slow); }
.am-feature-card:hover { border-color: var(--am-primary-light); box-shadow: var(--am-shadow-lg); transform: translateY(-4px); }
.am-feature-card__icon { width: 56px; height: 56px; border-radius: var(--am-radius-lg); background: var(--am-primary-50); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.am-feature-card__icon svg { width: 28px; height: 28px; stroke: var(--am-primary); fill: none; stroke-width: 1.5; }
.am-feature-card__title { font-size: 20px; font-weight: 600; color: var(--am-dark); margin-bottom: 12px; }
.am-feature-card__text { font-size: 15px; color: var(--am-text-light); line-height: 1.7; margin: 0; }

/* ============================================================
   11. HOW IT WORKS
   ============================================================ */
.am-how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.am-how__grid::before { content: ''; position: absolute; top: 45px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--am-border) 0%, var(--am-primary-light) 50%, var(--am-border) 100%); z-index: 0; }
.am-how__step { text-align: center; position: relative; z-index: 1; }
.am-how__number { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--am-primary) 0%, var(--am-primary-dark) 100%); color: #fff; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 8px 20px rgba(79,70,229,0.3); }
.am-how__step-title { font-size: 20px; font-weight: 600; color: var(--am-dark); margin-bottom: 12px; }
.am-how__step-text { font-size: 15px; color: var(--am-text-light); line-height: 1.7; max-width: 320px; margin: 0 auto; }

/* ============================================================
   12. INTEGRATIONS
   ============================================================ */
.am-integrations__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.am-integration-card { background: #fff; border: 1px solid var(--am-border); border-radius: var(--am-radius-lg); padding: 28px; text-align: center; transition: all var(--am-transition); }
.am-integration-card:hover { border-color: var(--am-primary-light); box-shadow: var(--am-shadow-md); }
.am-integration-card__logo { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: var(--am-radius); background: var(--am-bg-light); display: flex; align-items: center; justify-content: center; }
.am-integration-card__logo img { max-width: 32px; max-height: 32px; }
.am-integration-card__name { font-size: 14px; font-weight: 600; color: var(--am-dark); }

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.am-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.am-testimonial-card { background: #fff; border: 1px solid var(--am-border); border-radius: var(--am-radius-xl); padding: 36px; transition: all var(--am-transition); }
.am-testimonial-card:hover { box-shadow: var(--am-shadow-lg); }
.am-testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.am-testimonial-card__stars svg { width: 18px; height: 18px; fill: var(--am-warning); }
.am-testimonial-card__text { font-size: 15px; line-height: 1.8; color: var(--am-text); margin-bottom: 24px; font-style: italic; }
.am-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.am-testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--am-primary-light), var(--am-primary)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.am-testimonial-card__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.am-testimonial-card__info {}
.am-testimonial-card__name { font-size: 15px; font-weight: 600; color: var(--am-dark); }
.am-testimonial-card__role { font-size: 13px; color: var(--am-text-muted); }

/* ============================================================
   14. CTA SECTION
   ============================================================ */
.am-cta { padding: 100px 0; background: linear-gradient(135deg, var(--am-primary) 0%, var(--am-primary-dark) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.am-cta::before { content: ''; position: absolute; top: -50%; right: -25%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.am-cta::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.am-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.am-cta h2 { color: #fff; margin-bottom: 20px; }
.am-cta p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 36px; }
.am-cta__note { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.6); }

/* ============================================================
   15. FOOTER
   ============================================================ */
.am-footer { background: var(--am-dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.am-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.am-footer__about { }
.am-footer__logo { margin-bottom: 16px; }
.am-footer__logo img { height: 28px; filter: brightness(0) invert(1); }
.am-footer__logo span { font-size: 20px; font-weight: 800; color: #fff; }
.am-footer__tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.am-footer__social { display: flex; gap: 12px; }
.am-footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all var(--am-transition); }
.am-footer__social a:hover { background: var(--am-primary); }
.am-footer__social svg { width: 16px; height: 16px; fill: #fff; }
.am-footer__col-title { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
.am-footer__links { }
.am-footer__links li { margin-bottom: 10px; }
.am-footer__links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--am-transition); }
.am-footer__links a:hover { color: #fff; }
.am-footer__bottom { padding: 24px 0; }
.am-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================================================
   16. PAGE HERO (Features, Pricing, About, Contact)
   ============================================================ */
.am-page-hero { padding: 80px 0 60px; background: linear-gradient(135deg, #F8FAFC 0%, var(--am-primary-50) 100%); text-align: center; }
.am-page-hero h1 { font-size: 48px; margin-bottom: 16px; }
.am-page-hero p { font-size: 18px; color: var(--am-text-light); max-width: 600px; margin: 0 auto; }

/* ============================================================
   17. FEATURES PAGE — Alternating Sections
   ============================================================ */
.am-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.am-feature-row__content {}
.am-feature-row__badge { margin-bottom: 16px; }
.am-feature-row__title { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.am-feature-row__text { font-size: 16px; color: var(--am-text-light); line-height: 1.8; }
.am-feature-row__image { border-radius: var(--am-radius-xl); overflow: hidden; background: var(--am-bg-light); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.am-feature-row__image img { width: 100%; height: 100%; object-fit: cover; }
.am-feature-row__placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--am-primary-50), var(--am-primary-100)); border-radius: var(--am-radius-xl); display: flex; align-items: center; justify-content: center; }
.am-feature-row__placeholder svg { width: 64px; height: 64px; stroke: var(--am-primary-light); fill: none; opacity: 0.5; }

/* ============================================================
   18. PRICING PAGE
   ============================================================ */
.am-pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.am-pricing-card { background: #fff; border: 2px solid var(--am-border); border-radius: var(--am-radius-xl); padding: 40px 32px; text-align: center; transition: all var(--am-transition-slow); position: relative; }
.am-pricing-card:hover { box-shadow: var(--am-shadow-xl); }
.am-pricing-card--featured { border-color: var(--am-primary); transform: scale(1.03); box-shadow: var(--am-shadow-xl); }
.am-pricing-card--featured:hover { transform: scale(1.05); }
.am-pricing-card__popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--am-primary); color: #fff; padding: 4px 20px; border-radius: var(--am-radius-full); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.am-pricing-card__name { font-size: 20px; font-weight: 700; color: var(--am-dark); margin-bottom: 8px; }
.am-pricing-card__price { font-size: 48px; font-weight: 800; color: var(--am-dark); line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.am-pricing-card__period { font-size: 15px; color: var(--am-text-muted); margin-bottom: 16px; }
.am-pricing-card__desc { font-size: 14px; color: var(--am-text-light); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--am-border); }
.am-pricing-card__features { text-align: left; margin-bottom: 32px; }
.am-pricing-card__feature { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--am-text); }
.am-pricing-card__feature--disabled { color: var(--am-text-muted); }
.am-pricing-card__feature svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.am-pricing-card__feature--enabled svg { stroke: var(--am-success); }
.am-pricing-card__feature--disabled svg { stroke: var(--am-text-muted); }
.am-pricing-card .am-btn { width: 100%; }

/* ============================================================
   19. FAQ / ACCORDION
   ============================================================ */
.am-faq { max-width: 800px; margin: 0 auto; }
.am-faq__item { border-bottom: 1px solid var(--am-border); }
.am-faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; background: none; border: none; font-size: 16px; font-weight: 600; color: var(--am-dark); text-align: left; cursor: pointer; transition: color var(--am-transition); }
.am-faq__question:hover { color: var(--am-primary); }
.am-faq__question svg { width: 20px; height: 20px; stroke: var(--am-text-light); transition: transform var(--am-transition); flex-shrink: 0; margin-left: 16px; }
.am-faq__item.active .am-faq__question svg { transform: rotate(180deg); }
.am-faq__answer { max-height: 0; overflow: hidden; transition: max-height var(--am-transition-slow); }
.am-faq__answer-inner { padding: 0 0 20px; font-size: 15px; color: var(--am-text-light); line-height: 1.8; }
.am-faq__item.active .am-faq__answer { max-height: 300px; }

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */
.am-about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.am-about-section h3 { font-size: 32px; margin-bottom: 20px; }
.am-about-section p { font-size: 16px; line-height: 1.8; color: var(--am-text-light); }

.am-about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; padding: 60px 0; }
.am-about-stats__item {}
.am-about-stats__number { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.am-about-stats__label { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }

.am-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.am-value-card { text-align: center; padding: 36px; }
.am-value-card__icon { width: 64px; height: 64px; border-radius: var(--am-radius-lg); background: var(--am-primary-50); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.am-value-card__icon svg { width: 32px; height: 32px; stroke: var(--am-primary); fill: none; }
.am-value-card__title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.am-value-card__text { font-size: 15px; color: var(--am-text-light); line-height: 1.7; }

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.am-contact__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.am-contact-form { background: #fff; border: 1px solid var(--am-border); border-radius: var(--am-radius-xl); padding: 40px; }
.am-contact-form h3 { margin-bottom: 28px; }
.am-contact-form__group { margin-bottom: 20px; }
.am-contact-form__label { display: block; font-size: 14px; font-weight: 600; color: var(--am-dark); margin-bottom: 6px; }
.am-contact-form__input,
.am-contact-form__select,
.am-contact-form__textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--am-border); border-radius: var(--am-radius); font-size: 15px; color: var(--am-text); transition: border-color var(--am-transition); background: #fff; }
.am-contact-form__input:focus,
.am-contact-form__select:focus,
.am-contact-form__textarea:focus { outline: none; border-color: var(--am-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.am-contact-form__select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.am-contact-form__textarea { min-height: 140px; resize: vertical; }
.am-contact-form .am-btn { width: 100%; }

.am-contact-info { }
.am-contact-info h3 { margin-bottom: 28px; }
.am-contact-info__item { display: flex; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--am-border); }
.am-contact-info__item:last-child { border-bottom: none; }
.am-contact-info__icon { width: 48px; height: 48px; border-radius: var(--am-radius-lg); background: var(--am-primary-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.am-contact-info__icon svg { width: 22px; height: 22px; stroke: var(--am-primary); fill: none; }
.am-contact-info__label { font-size: 16px; font-weight: 600; color: var(--am-dark); margin-bottom: 2px; }
.am-contact-info__text { font-size: 14px; color: var(--am-text-light); }
.am-contact-info__text a { color: var(--am-primary); }

/* Success/Error Messages */
.am-alert { padding: 14px 20px; border-radius: var(--am-radius); margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.am-alert--success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.am-alert--error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ============================================================
   22. GENERIC PAGE (page.php)
   ============================================================ */
.am-page { padding: 60px 0; }
.am-page__content { max-width: 800px; margin: 0 auto; }
.am-page__content h1 { margin-bottom: 24px; }
.am-page__content p { margin-bottom: 16px; }

/* ============================================================
   23. ADMIN BAR OFFSET
   ============================================================ */
body.admin-bar .am-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .am-header { top: 46px; } }

/* ============================================================
   24. RESPONSIVE — 1024px (Tablet)
   ============================================================ */
@media (max-width: 1024px) {
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    .am-section { padding: 80px 0; }

    .am-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .am-hero__content { max-width: 100%; text-align: center; }
    .am-hero__subtitle { margin: 0 auto 36px; }
    .am-hero__actions { justify-content: center; }
    .am-hero__visual { max-width: 500px; margin: 0 auto; }
    .am-hero__title { font-size: 44px; }

    .am-features__grid { grid-template-columns: repeat(2, 1fr); }
    .am-how__grid::before { display: none; }
    .am-integrations__grid { grid-template-columns: repeat(3, 1fr); }
    .am-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .am-pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .am-pricing-card--featured { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }

    .am-feature-row { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
    .am-about-section { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }

    .am-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .am-footer__about { grid-column: 1 / -1; }

    .am-contact__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   25. RESPONSIVE — 768px (Mobile Landscape)
   ============================================================ */
@media (max-width: 768px) {
    .am-nav { display: none; }
    .am-header__actions .am-btn { display: none; }
    .am-mobile-toggle { display: block; }

    .am-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .am-stats__number { font-size: 32px; }

    .am-how__grid { grid-template-columns: 1fr; gap: 32px; }
    .am-how__grid::before { display: none; }

    .am-pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 40px; }
    .am-pricing-card--featured { max-width: none; transform: none; }
    .am-pricing-card--featured:hover { transform: none; }

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

/* ============================================================
   26. RESPONSIVE — 480px (Mobile Portrait)
   ============================================================ */
@media (max-width: 480px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    .am-section { padding: 60px 0; }
    :root { --am-gutter: 16px; }

    .am-hero { padding: 40px 0 60px; }
    .am-hero__title { font-size: 34px; }
    .am-hero__subtitle { font-size: 16px; }
    .am-hero__actions { flex-direction: column; }
    .am-hero__actions .am-btn { width: 100%; }

    .am-features__grid { grid-template-columns: 1fr; }
    .am-feature-card { padding: 28px; }

    .am-integrations__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .am-testimonials__grid { grid-template-columns: 1fr; }

    .am-stats__grid { grid-template-columns: 1fr 1fr; }

    .am-page-hero { padding: 40px 0 30px; }
    .am-page-hero h1 { font-size: 32px; }

    .am-footer__grid { grid-template-columns: 1fr; gap: 24px; }

    .am-contact-form { padding: 24px; }
}
