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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #DC143C;
    color: #fff;
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

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

.cookie-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 1000;
    border-bottom: 4px solid #DC143C;
}

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

.logo {
    font-family: 'Impact', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-accent {
    color: #DC143C;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DC143C;
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

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

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 3px 3px 0px #000;
}

.title-accent {
    color: #FFD700;
    display: block;
    transform: skew(-10deg);
    background: #000;
    padding: 10px;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-primary {
    background: #FFD700;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Impact', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: skew(-10deg);
    transition: all 0.3s ease;
    border: 3px solid #000;
}

.cta-primary:hover {
    transform: skew(-10deg) scale(1.05);
    box-shadow: 5px 5px 0px #000;
}

.cta-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Impact', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #fff;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #fff;
    color: #000;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 5px solid #FFD700;
    transform: rotate(3deg);
}

.geometric-overlay {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: #FFD700;
    transform: rotate(45deg);
    z-index: -1;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 3rem;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #DC143C;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f8f8f8;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(
        45deg,
        #DC143C,
        #DC143C 10px,
        #000 10px,
        #000 20px
    );
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border: 5px solid #000;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:nth-child(even) {
    transform: rotate(1deg);
}

.service-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 10px 10px 0px #DC143C;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #DC143C;
}

.service-title {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-price {
    font-family: 'Impact', sans-serif;
    font-size: 1.8rem;
    color: #DC143C;
    margin-bottom: 20px;
    font-weight: 900;
}

.service-cta {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #DC143C;
    transform: skew(-5deg);
}

/* News Section */
.news {
    background: #000;
    color: #fff;
}

.news .section-title {
    color: #fff;
}

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

.news-card {
    background: #DC143C;
    padding: 25px;
    transform: skew(-2deg);
    transition: all 0.3s ease;
    border: 3px solid #FFD700;
}

.news-card:hover {
    transform: skew(0deg) translateY(-5px);
}

.news-date {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #FFD700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.news-excerpt {
    color: #fff;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: #f8f8f8;
}

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

.pricing-card {
    background: #fff;
    border: 4px solid #000;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.3);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #DC143C;
    background: linear-gradient(135deg, #FFD700 0%, #fff 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #DC143C;
    color: #fff;
    padding: 8px 20px;
    font-family: 'Impact', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 20px;
}

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

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #DC143C;
    font-weight: 900;
}

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

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

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    position: relative;
}

.pricing-features li::before {
    content: '▶';
    color: #DC143C;
    margin-right: 10px;
}

.pricing-cta {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #DC143C;
    transform: skew(-5deg);
}

/* Testimonials Section */
.testimonials {
    background: #DC143C;
    color: #fff;
}

.testimonials .section-title {
    color: #fff;
}

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

.testimonial-card {
    background: #fff;
    color: #000;
    padding: 30px;
    border: 5px solid #000;
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.testimonial-card:nth-child(even) {
    transform: rotate(-1deg);
}

.testimonial-card:hover {
    transform: rotate(0deg);
    box-shadow: 10px 10px 0px #FFD700;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 2px solid #DC143C;
    padding-top: 15px;
}

.testimonial-author strong {
    font-family: 'Impact', sans-serif;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

/* Research Section */
.research {
    background: #000;
    color: #fff;
}

.research .section-title {
    color: #fff;
}

.research-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.research-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #DC143C;
    border: 3px solid #FFD700;
    transform: skew(-5deg);
}

.stat-number {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #FFD700;
    font-weight: 900;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.research-findings h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.research-findings ul {
    list-style: none;
    margin-top: 20px;
}

.research-findings li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.research-findings li::before {
    content: '★';
    color: #DC143C;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    background: #f8f8f8;
}

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

.faq-item {
    background: #fff;
    border: 3px solid #000;
    margin-bottom: 20px;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #DC143C;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact {
    background: #DC143C;
    color: #fff;
}

.contact .section-title {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border: 5px solid #000;
    color: #000;
}

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

.form-group label {
    display: block;
    font-family: 'Impact', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 3px solid #000;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    background: #f8f8f8;
}

.form-group input:focus {
    outline: none;
    border-color: #DC143C;
    background: #fff;
}

.form-submit {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-family: 'Impact', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #DC143C;
    transform: skew(-3deg);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Impact', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-brand p {
    margin-top: 15px;
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column h4 {
    font-family: 'Impact', sans-serif;
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #DC143C;
}

.footer-bottom {
    border-top: 2px solid #DC143C;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #fff;
    padding: 50px;
    text-align: center;
    border: 5px solid #DC143C;
    max-width: 400px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: #DC143C;
    margin-bottom: 20px;
}

.popup-content h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
}

.popup-close {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    font-family: 'Impact', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: #DC143C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 20px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .research-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .research-stats {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .news-card,
    .testimonial-card {
        transform: none !important;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}