/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4757 0%, #ff3742 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
}

.btn-secondary:hover {
    background: #ff4757;
    color: white;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    border-radius: 2px;
}

.gradient-text {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.nav-brand i {
    color: #ff4757;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff4757;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #050505 0%, #121212 50%, #1e1e1e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23667eea" fill-opacity="0.03" points="0,1000 1000,1000 1000,0"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-highlight {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item i {
    color: #ff4757;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.exploit-terminal {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: terminalGlow 2s ease-in-out infinite alternate;
}

@keyframes terminalGlow {
    0% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 71, 87, 0.1);
    }
    100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 71, 87, 0.2);
    }
}

.exploit-terminal .terminal-header {
    background: #2a2a2a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exploit-terminal .terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.exploit-terminal .terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.exploit-terminal .terminal-title {
    color: #ccc;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
}

.exploit-terminal .terminal-body {
    padding: 1.5rem;
    background: #1a1a1a;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    height: 260px;
    overflow: hidden;
}

.exploit-terminal .terminal-line {
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.exploit-terminal .terminal-line:nth-child(1) { animation-delay: 0s; }
.exploit-terminal .terminal-line:nth-child(2) { animation-delay: 0.5s; }
.exploit-terminal .terminal-line:nth-child(3) { animation-delay: 1.5s; }
.exploit-terminal .terminal-line:nth-child(4) { animation-delay: 2.5s; }
.exploit-terminal .terminal-line:nth-child(5) { animation-delay: 3.5s; }
.exploit-terminal .terminal-line:nth-child(6) { animation-delay: 4.5s; }

.exploit-terminal .prompt {
    color: #00ff00;
    font-weight: bold;
}

.exploit-terminal .command {
    color: #ffffff;
}

.exploit-terminal .success {
    color: #00ff00;
}

.exploit-terminal .warning {
    color: #ffaa00;
}

.exploit-terminal .error {
    color: #ff4757;
    font-weight: bold;
}

.cursor {
    color: #ffffff;
    animation: blink 1s infinite;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 71, 87, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #aaa;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: bold;
}

/* Why Espiar Section */
.why-espiar {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1c1c1c 0%, #2c2c2c 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-main h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.why-main h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    border-radius: 2px;
}

.why-main p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.why-main em {
    color: #ff4757;
    font-style: normal;
    font-weight: 600;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.3);
}

.advantage-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.why-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    border-radius: 1px;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}



/* Standards Section */
.standards {
    padding: 6rem 0;
    background: linear-gradient(135deg, #181818 0%, #282828 100%);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.standard-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.standard-card:hover::before {
    transform: scaleX(1);
}

.standard-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 71, 87, 0.3);
}

.standard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.standard-icon i {
    font-size: 1.5rem;
    color: white;
}

.standard-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.standard-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.external-link {
    color: #ff4757;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1f1f 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item i {
    color: #ff4757;
    width: 20px;
}

.certifications h3 {
    color: white;
    margin-bottom: 1rem;
}

.cert-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.footer-brand i {
    color: #ff4757;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4757;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Client Credibility Section */
.client-credibility {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.credibility-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.client-logo {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff4757;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: #ff4757;
}

.logo-placeholder span {
    color: white;
    font-weight: 500;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    border-left: 4px solid #ff4757;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #ff4757;
    font-size: 0.9rem;
}

/* Live Security Feed */
.live-feed {
    padding: 6rem 0;
    background: linear-gradient(135deg, #101010 0%, #202020 100%);
}

.feed-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.terminal {
    background: #0d1117;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #30363d;
    font-family: 'Courier New', monospace;
}

.terminal-header {
    background: #161b22;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #30363d;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27ca3f; }

.terminal-title {
    color: #f0f6fc;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 1rem;
    background: #0d1117;
    min-height: 200px;
}

.terminal-line {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.prompt {
    color: #7c3aed;
    font-weight: bold;
}

.command {
    color: #f0f6fc;
}

.success {
    color: #3fb950;
}

.warning {
    color: #f85149;
}

.error {
    color: #ff4757;
    font-weight: bold;
}

.typing::after {
    content: '_';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.security-stats-live {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.live-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.live-stat:hover {
    transform: translateY(-3px);
    border-color: #ff4757;
}

.stat-icon {
    background: #ff4757;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4757;
    display: block;
}

.stat-info .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}





/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #ff4757;
    box-shadow: 0 20px 40px rgba(255, 71, 87, 0.2);
}

.pricing-card.featured {
    border: 2px solid #ff4757;
    background: rgba(255, 71, 87, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4757, #ff6b7a);
}

.pricing-card.bronze::before {
    background: linear-gradient(90deg, #CD7F32, #D4A574);
}

.pricing-card.silver::before {
    background: linear-gradient(90deg, #C0C0C0, #E8E8E8);
}

.pricing-card.gold::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    background: #ff4757;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.bronze .pricing-icon {
    background: linear-gradient(45deg, #CD7F32, #D4A574);
}

.silver .pricing-icon {
    background: linear-gradient(45deg, #C0C0C0, #E8E8E8);
}

.gold .pricing-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.pricing-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #ff4757;
    display: inline-block;
}

.pricing-badge.popular {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: white;
    border: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4757;
    display: block;
}

.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
    color: #27ca3f;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.pricing-scope {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem;
    border-left: 3px solid #ff4757;
}

.pricing-scope strong {
    color: #ff4757;
}

.pricing-scope {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-footer {
    margin-top: 4rem;
    text-align: center;
}

.pricing-note {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.pricing-note h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.included-item i {
    font-size: 2rem;
    color: #ff4757;
}

.included-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.pricing-contact {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    border-radius: 8px;
    padding: 2rem;
}

.pricing-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-highlight {
        flex-direction: column;
        gap: 1rem;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .exploit-terminal {
        width: 95%;
        max-width: 500px;
    }
    
    .exploit-terminal .terminal-body {
        padding: 1rem;
        height: 220px;
        font-size: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feed-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }



    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }





    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .included-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .standard-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
} 