/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    min-height: 100vh;
} */
.aaf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.aaf-enterprise-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}
.hero h1 span {
    color: #2563eb;
}
.aaf-hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.aaf-challenge-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .aaf-challenge-section {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}
.aaf-challenge-left,
.aaf-challenge-right {
    position: relative;
    min-height: 180px;
}
.challenge-slide,
.solution-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}
.challenge-slide.active,
.solution-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.pressure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.pressure-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
.challenge-quote {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}
.challenge-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.tag-domain {
    background: #22c55e;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
}
.tag-challenge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 0.85rem;
}
.tag-challenge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #94a3b8;
    border-radius: 50%;
}
.capability-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.capability-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.capability-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}
.capability-check svg {
    width: 14px;
    height: 14px;
    color: white;
}
.capability-text {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
}
.aaf-capability-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
}
.aaf-capability-icon svg {
    width: 120px;
    height: 120px;
    color: white;
}
.aaf-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}
.aaf-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    width: 0%;
    animation: progress 6s linear infinite;
}
@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.aaf-slide-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 0;
}
.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.indicator.active {
    background: #2563eb;
    width: 24px;
    border-radius: 4px;
}
.aaf-layers-section {
    padding: 30px 20px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.aaf-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.aaf-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.aaf-tagline {
    font-size: 1.1rem;
    color: #64748b;
    font-style: italic;
}
.aaf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .aaf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .aaf-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
}
.card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.phase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #0ea5e9;
}
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}
.card-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: #0ea5e9;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.card-description {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}
.core-stack {
    margin-top: auto;
}
.core-stack-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.stack-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}
.explore-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.explore-btn svg {
    width: 16px;
    height: 16px;
}
.card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}
.card:nth-child(3) .icon-wrapper svg {
    color: #22c55e;
}
.card:nth-child(3) .card-subtitle {
    color: #22c55e;
}
.card:nth-child(4) .icon-wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
}
.card:nth-child(4) .icon-wrapper svg {
    color: #3b82f6;
}
.card:nth-child(4) .card-subtitle {
    color: #3b82f6;
}
.card:nth-child(8) .icon-wrapper {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}
.card:nth-child(8) .icon-wrapper svg {
    color: #a855f7;
}
.card:nth-child(8) .card-subtitle {
    color: #a855f7;
}
.aaf-cta-section {
    padding: 40px 20px 80px;
    background: #f1f5f9;
}
.aaf-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .aaf-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}
.aaf-cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.aaf-cta-content p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 480px;
}
.aaf-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.aaf-cta-button:hover {
    background: #1d4ed8;
    transform: translateX(4px);
}
/* Modal Styles */
.aaf-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.aaf-modal-overlay.active {
    display: flex;
}
.aaf-modal {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 24px 24px 0 0;
    z-index: 10;
}
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: #e2e8f0;
}
.modal-close svg {
    width: 20px;
    height: 20px;
    color: #64748b;
}
.modal-phase {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}
.modal-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0ea5e9;
    letter-spacing: 0.5px;
}
.modal-body {
    padding: 32px;
}
.modal-section {
    margin-bottom: 32px;
}
.modal-section:last-child {
    margin-bottom: 0;
}
.modal-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.modal-section-title svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
}
.modal-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.tech-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}
.tech-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.tech-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}
.usecase-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.usecase-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
}
.usecase-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.usecase-icon svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
}
.usecase-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}
.usecase-content p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}
.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.benefit-tag {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
}
/* Security Wrapper Styles */
.aaf-security-wrapper {
    position: relative;
    padding: 40px;
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    border: 2px solid transparent;
    border-radius: 32px;
    background-clip: padding-box;
}
.aaf-security-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, #22c55e, #2563eb, #22c55e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 3s ease-in-out infinite;
}
@keyframes borderGlow {
    0%,
    100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}
.aaf-security-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
}
.aaf-security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}
.aaf-security-badge svg {
    width: 16px;
    height: 16px;
}
.aaf-compliance-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.aaf-compliance-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #1e293b;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.aaf-compliance-tag svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}
.aaf-security-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px dashed rgba(34, 197, 94, 0.3);
}
.aaf-security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}
.aaf-security-item svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}
@media (max-width: 768px) {
    .aaf-security-header {
        flex-direction: column;
        gap: 16px;
    }
    .aaf-security-wrapper {
        padding: 24px 16px;
    }
    .aaf-security-footer {
        flex-wrap: wrap;
        gap: 16px;
    }
}