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

body {
    font-family: 'Orbitron', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Matrix Background */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.matrix-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

@keyframes matrixFlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Content */
.content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

.hero {
    margin-bottom: 3rem;
}

.tagline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.line1 {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.line2 {
    color: #00ff00;
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.subtitle {
    font-size: 2rem;
    color: #00ff00;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.ca-container {
    margin-top: 2rem;
    text-align: center;
}

.ca-label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.ca-address-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.ca-address-wrapper {
    position: relative;
    display: inline-block;
}

.ca-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #00ff00;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    filter: blur(3px);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    display: block;
}

.ca-address.revealed {
    filter: blur(0);
}

.ca-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    pointer-events: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    letter-spacing: 0.1em;
}

.ca-address.revealed + .ca-overlay {
    opacity: 0;
    pointer-events: none;
}

.copy-btn {
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.copy-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.copy-btn.copied {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.btn {
    padding: 15px 30px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.btn-primary:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn {
    text-decoration: none;
}

/* Services Container */
.services-container {
    position: relative;
    z-index: 3;
    min-height: 80vh;
    padding: 20px 20px 0px 20px;
    background: rgba(0, 0, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.service-card {
    position: relative;
    height: 450px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
}

.service-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pixelated-figure {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 25px 25px;
    image-rendering: pixelated;
    opacity: 0.4;
    animation: figureFloat 6s ease-in-out infinite;
}

.figure-1 {
    background-image: 
        radial-gradient(circle at 30% 40%, #00ff00 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, #00ff00 3px, transparent 3px),
        radial-gradient(circle at 50% 20%, #00ff00 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, #00ff00 2px, transparent 2px);
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation-delay: 0s;
}

.figure-2 {
    background-image: 
        radial-gradient(circle at 40% 30%, #00ff00 2px, transparent 2px),
        radial-gradient(circle at 60% 70%, #00ff00 3px, transparent 3px),
        radial-gradient(circle at 20% 80%, #00ff00 1px, transparent 1px),
        radial-gradient(circle at 90% 40%, #00ff00 2px, transparent 2px);
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation-delay: 2s;
}

.figure-3 {
    background-image: 
        radial-gradient(circle at 50% 50%, #00ff00 4px, transparent 4px),
        radial-gradient(circle at 25% 25%, #00ff00 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #00ff00 3px, transparent 3px),
        radial-gradient(circle at 10% 90%, #00ff00 1px, transparent 1px);
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation-delay: 4s;
}

.figure-4 {
    background-image: 
        radial-gradient(circle at 60% 40%, #00ff00 3px, transparent 3px),
        radial-gradient(circle at 30% 70%, #00ff00 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, #00ff00 1px, transparent 1px),
        radial-gradient(circle at 15% 85%, #00ff00 2px, transparent 2px);
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation-delay: 6s;
}

@keyframes figureFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.service-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.service-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
    max-width: 300px;
}

/* Vertical Dividers */
.vertical-dividers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.divider-line {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 10px,
        rgba(0, 255, 0, 0.3) 10px,
        rgba(0, 255, 0, 0.3) 12px
    );
}

.divider-line:nth-child(1) { left: 25%; }
.divider-line:nth-child(2) { left: 50%; }
.divider-line:nth-child(3) { left: 75%; }
.divider-line:nth-child(4) { left: 100%; }

.divider-line::before {
    content: '+';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff00;
    font-size: 12px;
    font-weight: bold;
}

/* FAQ Container */
.faq-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding: 0px 20px 60px 20px;
    background: rgba(0, 0, 0, 0.9);
    margin-top: 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(0, 255, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ff00;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    border-color: rgba(0, 255, 0, 0.8);
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.faq-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-tag {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.detail-tag:hover {
    background: rgba(0, 255, 0, 0.3);
    border-color: rgba(0, 255, 0, 0.6);
    transform: translateY(-1px);
}

/* Features Container */
.features-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.7);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff00, transparent);
    opacity: 0.3;
    animation: iconGlow 2s ease-in-out infinite;
}

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

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.icon-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Testimonials Container */
.testimonials-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.8);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    padding: 40px;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    font-size: 4rem;
    color: #00ff00;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

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

.author-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    color: #ccc;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Pricing Container */
.pricing-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.7);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.pricing-card.professional {
    border-color: rgba(0, 255, 0, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #00ff00;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: #00ff00;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    color: #00ff00;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.period {
    font-size: 1rem;
    color: #ccc;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    color: #ccc;
    padding: 8px 0;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.pricing-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Contact Container */
.contact-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.8);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    margin-bottom: 15px;
    letter-spacing: 0.2em;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-item:hover {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.contact-item a:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 0, 0.3);
}

.telegram-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
    transition: all 0.3s ease;
}

.contact-item:hover .telegram-icon {
    fill: #00ff00;
}

.x-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
    transition: all 0.3s ease;
}

.contact-item:hover .x-icon {
    fill: #00ff00;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateX(10px);
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item a:hover {
    text-decoration: none;
    color: inherit;
    transform: translateX(10px);
    background: rgba(0, 255, 0, 0.1);
}

.contact-details h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: #ccc;
    font-family: 'Arial', sans-serif;
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.contact-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Footer */
.footer {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.95);
    padding: 40px 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-icon:hover {
    transform: scale(1.2);
}

.pixelated-icon {
    width: 100%;
    height: 100%;
    fill: #ccc;
    filter: contrast(1.2) brightness(1.1);
    image-rendering: pixelated;
    transition: all 0.3s ease;
}

.footer-icon:hover .pixelated-icon {
    fill: #00ff00;
    filter: contrast(1.5) brightness(1.3);
}

/* KORO Character */
.koro-character {
    width: 50px;
    height: 50px;
    position: relative;
    animation: koroFloat 3s ease-in-out infinite;
}

@keyframes koroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.koro-face {
    width: 40px;
    height: 40px;
    background: #ccc;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    border: 2px solid #999;
}

.koro-eyes {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.koro-eye {
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    animation: koroBlink 4s infinite;
}

@keyframes koroBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0; }
}

.koro-mouth {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.koro-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: #ccc;
    border-radius: 0 0 15px 15px;
    border: 2px solid #999;
    border-top: none;
}

.koro-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, #999 40%, #999 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, #999 40%, #999 60%, transparent 60%);
    background-size: 6px 6px;
    border-radius: 0 0 15px 15px;
}

.footer-copyright {
    color: #ccc;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.footer-copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .divider-line:nth-child(2) { left: 50%; }
    .divider-line:nth-child(3) { display: none; }
    .divider-line:nth-child(4) { display: none; }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-icons {
        gap: 40px;
    }
    
    .ca-address-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .ca-address-wrapper {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    /* Mobile background - change to black */
    .services-container {
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .faq-container {
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .features-container {
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .testimonials-container {
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .contact-container {
        background: rgba(0, 0, 0, 0.95) !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 300px;
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .divider-line {
        display: none;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px; /* Touch target size */
    }
    
    .faq-title, .features-title, .testimonials-title, .pricing-title, .contact-title {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 15px 20px;
    }
    
    /* Make FAQ items more compact on mobile */
    .faq-item {
        margin-bottom: 15px;
        border-radius: 6px;
    }
    
    .faq-question {
        padding: 15px 20px;
        min-height: 40px;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Show answers more prominently on mobile */
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .faq-details {
        margin-top: 10px;
    }
    
    .detail-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-right: 5px;
        margin-bottom: 5px;
    }
    
    /* Hide FAQ answers by default on mobile - show only when clicked */
    .faq-item {
        border-color: rgba(0, 255, 0, 0.3);
        background: rgba(0, 0, 0, 0.6);
    }
    
    .faq-item .faq-answer {
        max-height: 0;
        opacity: 0;
        padding: 0 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        opacity: 1;
        padding: 15px 20px;
        border-top: 1px solid rgba(0, 255, 0, 0.2);
    }
    
    .faq-item .faq-icon {
        transform: rotate(0deg);
        color: #00ff00;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-icon {
        transform: rotate(45deg);
        color: #00ff00;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-icons {
        gap: 30px;
    }
    
    .footer-icon {
        width: 40px;
        height: 40px;
    }
    
    .koro-character {
        width: 40px;
        height: 40px;
    }
    
    .koro-face {
        width: 32px;
        height: 32px;
    }
    
    .ca-container {
        margin-top: 1.5rem;
    }
    
    .ca-label {
        font-size: 1rem;
    }
    
    .ca-address {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-height: 44px; /* Touch target size */
    }
    
    .copy-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
        min-height: 44px; /* Touch target size */
    }
    
    .contact-item a {
        padding: 15px;
        min-height: 44px; /* Touch target size */
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .x-icon, .telegram-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .faq-title, .features-title, .testimonials-title, .pricing-title, .contact-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer {
        padding: 15px 20px;
    }
    
    .detail-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-icons {
        gap: 20px;
    }
    
    .footer-icon {
        width: 35px;
        height: 35px;
    }
    
    .koro-character {
        width: 35px;
        height: 35px;
    }
    
    .koro-face {
        width: 28px;
        height: 28px;
    }
    
    .koro-eyes {
        top: 10px;
        gap: 6px;
    }
    
    .koro-eye {
        width: 3px;
        height: 3px;
    }
    
    .koro-mouth {
        bottom: 6px;
        width: 10px;
        height: 5px;
    }
    
    .koro-body {
        width: 25px;
        height: 12px;
    }
    
    .ca-address-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .ca-address {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .copy-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .contact-item a {
        padding: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .x-icon, .telegram-icon {
        width: 22px;
        height: 22px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .contact-item a:hover,
    .copy-btn:hover,
    .ca-address:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn:active,
    .contact-item a:active,
    .copy-btn:active,
    .ca-address:active {
        transform: scale(0.95);
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    }
    
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card,
    .pricing-card {
        min-height: 44px;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .pixelated-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .content {
        height: auto;
        min-height: 100vh;
        padding: 20px;
    }
    
    .hero {
        margin-bottom: 2rem;
    }
    
    .ca-container {
        margin-top: 1rem;
    }
    
    .services-container {
        padding: 20px 20px 0px 20px;
    }
    
    .faq-container,
    .features-container,
    .testimonials-container,
    .contact-container {
        padding: 40px 20px;
    }
}
