/* ===== Asset Management System - Product Page Styles ===== */

:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-bg: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Styles ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* ===== Sticky Purchase Button ===== */
.sticky-purchase {
    position: fixed;
    top: 110px;
    right: 30px;
    z-index: 998;
    opacity: 1;
    visibility: visible;
    animation: slideInRight 0.6s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        transform: translateX(200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-purchase .btn-purchase {
    position: relative;
    background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
    color: white;
    padding: 18px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: 3px solid white;
}

.sticky-purchase .btn-purchase:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.6);
    color: white;
}

.purchase-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A202C;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.purchase-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.purchase-text strong {
    font-size: 1.1rem;
}

.purchase-text small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ===== Hero Section ===== */
.ams-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ams-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #60a5fa;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.demo-credentials {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.demo-credentials h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-credentials h4 i {
    color: var(--accent-color);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.credential-item {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.credential-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 4px;
}

.credential-item span {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Courier New', monospace;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.main-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.5rem;
}

.badge-1 {
    top: 10%;
    right: -20px;
    color: var(--primary-color);
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: -20px;
    color: var(--secondary-color);
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10%;
    right: -20px;
    color: var(--accent-color);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Stats Section ===== */
.ams-stats {
    padding: 80px 0;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== Features Section ===== */
.ams-features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ===== Screenshots Section ===== */
.ams-screenshots {
    padding: 100px 0;
    background: var(--light-bg);
}

.screenshots-slider {
    margin-bottom: 40px;
}

.screenshot-link {
    text-align: center;
}

/* ===== Technology Section ===== */
.ams-tech {
    padding: 100px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.tech-item {
    text-align: center;
    padding: 32px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.tech-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon i {
    font-size: 2.5rem;
    color: white;
}

.tech-item h5 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Videos Section ===== */
.ams-videos {
    padding: 100px 0;
    background: var(--light-bg);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.video-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    background: var(--dark-bg);
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    text-decoration: none;
}

.play-button:hover {
    background: #FF0000;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-content {
    padding: 24px;
}

.video-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.video-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Version History ===== */
.ams-versions {
    padding: 100px 0;
    background: white;
}

.version-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.version-item {
    padding: 32px;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    position: relative;
    transition: var(--transition);
}

.version-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.version-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.version-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.version-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.version-changes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.version-changes li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.version-changes i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== Installation Section ===== */
.ams-installation {
    padding: 100px 0;
    background: var(--light-bg);
}

.installation-steps {
    max-width: 900px;
    margin: 0 auto 60px;
}

.step-item {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.code-block {
    background: var(--dark-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    overflow-x: auto;
}

.code-block code {
    color: #10b981;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

kbd {
    background: var(--dark-bg);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-success {
    color: var(--secondary-color) !important;
}

.prerequisites {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.prerequisites h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.prerequisites h4 i {
    color: var(--accent-color);
}

.prereq-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.prereq-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.prereq-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.prereq-item i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}

.prereq-item:hover i {
    color: white;
}

.prereq-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== Pricing Section ===== */
.ams-pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.ams-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ams-pricing .section-title,
.ams-pricing .section-subtitle {
    color: white;
}

.pricing-card-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 12px 24px;
    border-bottom-left-radius: var(--radius-lg);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.pricing-badge i {
    animation: pulse 2s ease-in-out infinite;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 16px;
}

.pricing-price .currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.pricing-price .amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.125rem;
    margin-top: 30px;
    margin-left: 8px;
    opacity: 0.9;
}

.pricing-description {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

.pricing-features {
    padding: 40px;
}

.pricing-features h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li > div {
    flex: 1;
}

.pricing-features li strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-features li span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-footer {
    padding: 40px;
    background: var(--light-bg);
    text-align: center;
}

.pricing-footer .btn-purchase {
    width: 100%;
    justify-content: center;
    font-size: 1.25rem;
    padding: 20px 40px;
}

.money-back {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.money-back i {
    color: var(--secondary-color);
}

.payment-methods {
    text-align: center;
    margin-top: 40px;
}

.payment-methods p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.payment-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Support Section ===== */
.ams-support {
    padding: 100px 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.support-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.support-item:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon i {
    font-size: 2.5rem;
    color: white;
}

.support-item h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-item p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.support-item .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.support-item .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== FAQ Section ===== */
.ams-faq {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question > i:first-child {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h4 {
    flex: 1;
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-primary);
}

.faq-question > i:last-child {
    color: var(--text-tertiary);
    transition: var(--transition);
}

.faq-item.active .faq-question > i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px 72px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA Section ===== */
.ams-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.ams-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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");
    pointer-events: none;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
}

.cta-guarantee i {
    font-size: 1.25rem;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .sticky-purchase {
        top: 85px;
        right: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prereq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .ams-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-content {
        text-align: left;
    }

    .prereq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Sticky button - move to bottom on mobile */
    .sticky-purchase {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: white;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 0;
        z-index: 999;
    }

    .sticky-purchase .btn-purchase {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .purchase-badge {
        top: -8px;
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .prereq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header {
        padding: 40px 20px 24px;
    }

    .pricing-price .amount {
        font-size: 3.5rem;
    }

    .pricing-features {
        padding: 24px 20px;
    }

    .pricing-footer {
        padding: 24px 20px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-guarantee {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}


.btn-purchase {
    background: linear-gradient(135deg, var(--accent-success) 0%, #00A843 100%);
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.5);
    color: white;
}

.btn-purchase i {
    font-size: 1.3rem;
}



/* Button styling */
.sticky-purchase .btn-purchase {
    background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
    color: white;
    padding: 16px 32px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.sticky-purchase .btn-purchase:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.6);
    color: white;
}

.sticky-purchase .btn-purchase i {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Bounce animation for icon */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Pulse effect */
.sticky-purchase .btn-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: inherit;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Hide on mobile to avoid blocking content */
@media (max-width: 768px) {
    .sticky-purchase {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .sticky-purchase .btn-purchase {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .sticky-purchase .btn-purchase {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Ensure button doesn't overlap with header */
@media (min-width: 769px) {
    body.scrolled .sticky-purchase {
        top: 100px; /* Adjust if header shrinks on scroll */
    }
}

