:root {
    --primary-color: #00ff41;
    --secondary-color: #ff0040;
    --accent-color: #00d4ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #333333;
    --success-color: #00ff41;
    --warning-color: #ffaa00;
    --error-color: #ff0040;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 255, 65, 0.006) 3px,
            rgba(0, 255, 65, 0.006) 4px,
            transparent 4px,
            transparent 7px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 97px,
            rgba(0, 255, 65, 0.004) 97px,
            rgba(0, 255, 65, 0.004) 98px,
            transparent 98px,
            transparent 203px
        );
    pointer-events: none;
    z-index: -2;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 24%, rgba(0, 255, 65, 0.03) 25%, rgba(0, 255, 65, 0.03) 26%, transparent 27%, transparent 74%, rgba(0, 255, 65, 0.03) 75%, rgba(0, 255, 65, 0.03) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 0, 64, 0.015) 25%, rgba(255, 0, 64, 0.015) 26%, transparent 27%, transparent 74%, rgba(255, 0, 64, 0.015) 75%, rgba(255, 0, 64, 0.015) 76%, transparent 77%, transparent),
        linear-gradient(135deg, transparent 48%, rgba(0, 255, 65, 0.01) 49%, rgba(0, 255, 65, 0.01) 51%, transparent 52%);
    background-size: 800px 800px, 600px 600px, 20px 20px, 40px 40px, 80px 80px;
    z-index: -1;
    animation: matrix-move 20s linear infinite, matrix-glitch 5s ease-in-out infinite;
}

@keyframes matrix-move {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, 150px 150px, 20px 20px, 40px 40px, 80px 80px; }
}

@keyframes matrix-glitch {
    0%, 90% { opacity: 1; }
    95% { opacity: 0.8; transform: translateX(2px); }
    100% { opacity: 1; transform: translateX(0); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Fira Code', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--text-primary);
    text-shadow: 0 0 15px var(--primary-color);
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { text-shadow: 0 0 15px var(--primary-color); }
    50% { text-shadow: 0 0 25px var(--primary-color), 0 0 35px var(--primary-color); }
}

.space-invader {
    height: 32px;
    width: 32px;
    margin-right: 8px;
    filter: invert(1) hue-rotate(120deg) saturate(2) brightness(1.2);
}

.accent {
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    position: relative;
    z-index: 1;
    isolation: isolate;
}

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

.terminal-window {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    font-family: 'Fira Code', monospace;
    overflow: hidden;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn.red { background: #ff5f57; }
.btn.yellow { background: #ffbd2e; }
.btn.green { background: #28ca42; }

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 1.5rem;
    height: 300px;
    overflow-y: auto;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.prompt {
    color: var(--primary-color);
    font-weight: 600;
}

.command {
    color: var(--text-primary);
}

.typing-animation {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    border-right: 2px solid var(--primary-color);
    animation: typing 3s steps(40, end) forwards, blink 1s infinite;
}

@keyframes typing {
    from { max-width: 0; }
    to { max-width: 100%; }
}

@keyframes blink {
    50% { border-right-color: transparent; }
}

.terminal-output {
    margin-top: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

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

.output-line.success {
    color: var(--success-color);
}

.output-line.warning {
    color: var(--warning-color);
}

.output-line.info {
    color: var(--accent-color);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.btn-primary, .btn-secondary {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #00cc33;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 65, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--primary-color);
    animation: glitch 8s ease-in-out infinite;
}

.services {
    padding: 6rem 0;
    position: relative;
    z-index: 9999;
    scroll-margin-top: 100px;
    background: var(--bg-dark);
}

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

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


.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.1);
}

.service-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.problem-section {
    padding: 6rem 0;
    background: rgba(255, 0, 64, 0.05);
    position: relative;
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-stat {
    text-align: center;
    margin-bottom: 2rem;
}

.problem-stat .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Fira Code', monospace;
    display: block;
}

.problem-stat .stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.problem-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.comparison-column {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.comparison-column.fake {
    border-color: var(--secondary-color);
}

.comparison-column.real {
    border-color: var(--primary-color);
}

.comparison-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.comparison-column.fake h4 {
    color: var(--secondary-color);
}

.comparison-column.real h4 {
    color: var(--primary-color);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.comparison-column.fake li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.comparison-column.real li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.problem-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.problem-cta p {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-primary);
}

.about {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 65, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.015) 0%, transparent 25%),
        linear-gradient(45deg, transparent 70%, rgba(0, 255, 65, 0.01) 71%, rgba(0, 255, 65, 0.01) 72%, transparent 73%);
    background-size: 400px 400px, 300px 300px, 150px 150px;
    pointer-events: none;
    z-index: -1;
    animation: slow-drift 30s ease-in-out infinite;
}

@keyframes slow-drift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(-10px); }
}


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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Fira Code', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.security-process {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.process-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.process-steps {
    padding: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--primary-color);
    color: var(--bg-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.methodology-content {
    padding: 1.5rem;
}

.methodology-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.methodology-item:last-child {
    margin-bottom: 0;
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.method-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact {
    padding: 6rem 0;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-method a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.footer {
    background: var(--bg-darker);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-left p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes border-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitch {
    0%, 90% { transform: translateX(0); }
    92% { transform: translateX(-2px); }
    94% { transform: translateX(2px); }
    96% { transform: translateX(-1px); }
    98% { transform: translateX(1px); }
    100% { transform: translateX(0); }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 6rem 1rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .terminal-window {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-differentiator {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.phone-number a:hover {
    text-decoration: underline;
}

.urgency-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    animation: blink 2s infinite;
}

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

.founder-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    display: block;
}

.founder-certifications {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.cert-badge {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.founder-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.founder-title {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.founder-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.highlight-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.highlight-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.founder-experience {
    margin-bottom: 2rem;
}

.founder-experience p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-guarantee {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.faq-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 65, 0.05);
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-cta {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.service-cta:hover {
    background: #00cc33;
    transform: translateY(-2px);
}

.service-card.featured {
    position: relative;
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.featured-cta {
    background: var(--secondary-color);
}

.featured-cta:hover {
    background: #cc0033;
}

.urgency-banner {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.urgency-banner p {
    margin: 0;
    color: white;
    font-size: 1.1rem;
}

.form-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 65, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 65, 0.5), 0 0 40px rgba(255, 0, 64, 0.3); }
}

@media (max-width: 1200px) {
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .problem-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-stat .stat-number {
        font-size: 3rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .founder-image img {
        width: 200px;
        height: 200px;
    }
    
    .hero-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-differentiator {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}