* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-container {
    min-height: 100vh;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.page-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.04) 0%, transparent 70%);
    animation: gradientShift 15s ease infinite;
}

.page-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 204, 0, 0.03) 2px, rgba(255, 204, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 204, 0, 0.03) 2px, rgba(255, 204, 0, 0.03) 4px);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.background-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.05) 0%, transparent 40%);
    opacity: 0.6;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.4; }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(to bottom right, #ffcc00, #ffa500);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    color: white;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

.content-inner {
    max-width: 1024px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 48px;
}

.logo-99-container {
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-99 {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 30px rgba(255, 204, 0, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 9999px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.badge-text {
    color: #ffcc00;
    font-weight: 600;
    font-size: 14px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(to right, #ffcc00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.cta-button.primary {
    background: linear-gradient(to right, #ffcc00, #ffa500);
    color: #000000;
    box-shadow: 0 20px 25px -5px rgba(255, 204, 0, 0.4);
    font-weight: 800;
}

.cta-button.primary:hover {
    background: linear-gradient(to right, #ffd700, #ffcc00);
    box-shadow: 0 20px 25px -5px rgba(255, 204, 0, 0.6);
    transform: scale(1.05);
}

.cta-button.primary:active {
    transform: scale(0.98);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: 2px solid #ffcc00;
}

.cta-button.secondary:hover {
    background: #ffcc00;
    color: #000000;
    transform: scale(1.05);
}

.cta-button.secondary:active {
    transform: scale(0.98);
}

.response-time {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.response-time svg {
    display: inline-block;
    vertical-align: middle;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 64px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.emerald {
    background: linear-gradient(to bottom right, #ffcc00, #ffa500);
}

.feature-icon.teal {
    background: linear-gradient(to bottom right, #ffd700, #ffcc00);
}

.feature-icon.cyan {
    background: linear-gradient(to bottom right, #ffa500, #ff8c00);
}

.feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    margin-bottom: 64px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #94a3b8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcc00, #ffa500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
}

.author-photo {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffcc00;
    flex-shrink: 0;
    display: block;
}

.author-name {
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.author-location {
    color: #94a3b8;
    font-size: 13px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

@media (min-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to right, #ffcc00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(255, 204, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlight {
    display: block;
    margin-top: 8px;
    color: #ffcc00;
    font-weight: 600;
}

/* Security Badge */
.security-badge {
    margin-top: 64px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    justify-content: center;
    width: 100%;
}

.security-badge svg {
    color: #94a3b8;
}

/* Footer */
.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .main-content {
        padding: 80px 16px;
    }

    .cta-section {
        padding: 48px 64px;
    }
}
