
/* Base Styles */
:root {
    --primary: #000000;
    --primary-dark: #000000;
    --secondary: #f8fafc;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --card: #ffffff;
    --card-foreground: #0f172a;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --radius: 0.5rem;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.aegis-secure {
    font-family: 'Arial Black' !important;
    background-color: black;
    color: white;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn svg {
    margin-left: 0.25rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: var(--muted);
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.full-width {
    width: 100%;
}

/* Badge */
.badge {
    display: inline-block !important;
    background-color: var(--muted);
    color: var(--muted-foreground);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo .icon {
    color: var(--primary);
}

.main-nav {
    display: none;
}

.main-nav.active {
    display: flex;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav.active ul {
    flex-direction: column;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
}

.main-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.header-buttons {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(to bottom, var(--background), var(--muted));
}

.hero-container {
    display: grid;
    gap: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero p {
    color: var(--muted-foreground);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-feature svg {
    color: var(--primary);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: var(--radius);
    filter: blur(24px);
}

.hero-image-container {
    position: relative;
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--muted-foreground);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background-color: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(59, 130, 246, 0.1);
}

.feature-icon svg {
    color: var(--primary);
}

.feature-card p {
    color: var(--muted-foreground);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--muted);
}

.tabs {
    max-width: 48rem;
    margin: 0 auto;
}

.tabs-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-button {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--border);
    padding: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.tab-panel {
    display: none;
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1rem;
}

.tab-panel.active {
    display: block;
}

.tab-grid {
    display: grid;
    gap: 1.5rem;
}

.tab-content h3 {
    margin-bottom: 0.5rem;
}

.tab-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.check-list, .x-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.check-list li, .x-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-list svg {
    color: var(--primary);
}

.x-list {
    color: #ef4444;
}

.tab-image {
    display: flex;
    justify-content: center;
}

.tab-image img {
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Card Showcase Section */
.card-showcase {
    background-color: var(--background);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.showcase-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.showcase-image {
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content {
    padding: 1rem;
}

.showcase-content p {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.star-filled {
    color: var(--primary);
}

.star-empty {
    color: var(--muted-foreground);
}

.testimonial-text {
    color: var(--muted-foreground);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-weight: 700;
}

.author-name {
    font-weight: 500;
    margin-bottom: 0;
}

.author-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background-color: var(--background);
}

.accordion {
    max-width: 48rem;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    background: transparent;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.accordion-icon {
    transition: transform 0.2s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 0 1rem 0;
}

/* CTA Section */
.cta {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0;
}

.cta-container {
    display: grid;
    gap: 2rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    max-width: 24rem;
    margin: 0 auto;
    width: 100%;
}

.special-offer {
    margin-bottom: 1rem;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount {
    color: #4ade80;
}

.total {
    font-weight: 700;
    font-size: 1.125rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--muted);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--foreground);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.footer-logo .icon {
    color: var(--primary);
}

.copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (min-width: 640px) {
    h1 {
    font-size: 3rem;
    }

    .hero-buttons {
    flex-direction: row;
    }

    .cta-buttons {
    flex-direction: row;
    }
}

@media (min-width: 768px) {
    section {
    padding: 6rem 0;
    }

    h1 {
    font-size: 3.5rem;
    }

    .features-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .tab-grid {
    grid-template-columns: 1fr 1fr;
    }

    .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    }

    .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .main-nav {
    display: flex;
    }

    .header-buttons {
    display: flex;
    }

    .mobile-menu-toggle {
    display: none;
    }

    .hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    }

    .features-grid {
    grid-template-columns: repeat(3, 1fr);
    }

    .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    }
}