@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --black: #000000;
    --turquoise: #40E0D0;
    --white: #ffffff;
    --turquoise-light: #A5F3EA;
    --turquoise-dark: #20ADA0;
    --gray: #f5f5f5;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

section {
    padding: 60px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background: var(--turquoise);
    color: var(--black);
    border: 2px solid var(--turquoise);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--turquoise);
    color: var(--black);
    border-color: var(--turquoise);
    transform: translateY(-3px);
}

.header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
}

.logo svg {
    margin-right: 10px;
}

.logo-highlight {
    color: var(--turquoise);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--black);
    display: block;
    transition: all 0.3s ease;
}

.hero {
    background-color: var(--white);
    padding: 250px 0 200px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://am8.nyc3.digitaloceanspaces.com/TPL-laptopuser.webp') center/cover no-repeat;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

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

.hero-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    background: var(--turquoise);
    color: var(--black);
    padding: 15px 25px;
    border-radius: 50px;
    transform: rotate(5deg);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: pulse 2s infinite;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(64, 224, 208, 0.3);
    z-index: -1;
}

.features {
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.features:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--turquoise-light);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-section {
    background: linear-gradient(to right, var(--black), #222);
    color: var(--white);
    position: relative;
}

.benefit-section .section-title h2,
.benefit-section .section-title p {
    color: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.benefit-content h2 {
    color: var(--dark-gray);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact .benefit-content h2 {
    color: var(--dark-gray);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact .benefit-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.contact .benefit-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

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

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefit-list li svg {
    margin-right: 15px;
    min-width: 24px;
    color: var(--turquoise);
}

.benefit-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.benefit-image:hover img {
    transform: scale(1.05);
}

.process-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(64, 224, 208, 0.1), transparent 70%);
    z-index: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.process-step {
    flex: 0 0 calc(33.33% - 30px);
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--turquoise);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15%;
    width: 30%;
    height: 3px;
    background: var(--turquoise);
    z-index: 1;
}

.testimonials {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
}

.testimonial-container {
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(64, 224, 208, 0.1);
    line-height: 1;
}

.testimonial-content {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background: var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

.cta-section {
    background: linear-gradient(to right, var(--turquoise), var(--turquoise-dark));
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -75px;
    right: 10%;
}

.cta-section:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: 5%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.pricing {
    background: var(--white);
    position: relative;
}

.pricing:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(64, 224, 208, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.promotion-banner {
    background: var(--black);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promotion-banner h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 24px;
}

.promotion-banner p {
    margin-bottom: 0;
}

.promotion-banner .discount {
    color: var(--turquoise);
    font-weight: 700;
}

.promotion-banner:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: rgba(64, 224, 208, 0.2);
    border-radius: 50%;
}

.promotion-banner:after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(64, 224, 208, 0.2);
    border-radius: 50%;
}

.faq-section {
    background-color: var(--gray);
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background: var(--white);
}

.faq-question {
    padding: 20px;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--black);
}

.faq-question:focus {
    outline: none;
}

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

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-family: monospace;
    font-size: 24px;
    line-height: 1;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #f8fdfc 100%);
    border: 2px solid var(--turquoise-light);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(64, 224, 208, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 35px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}



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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.form-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, var(--turquoise) 0%, var(--turquoise-light) 100%);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(64, 224, 208, 0.3);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8f4f8;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    outline: none;
    border-color: var(--turquoise);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: var(--turquoise-light);
    background: var(--white);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .btn-secondary {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    color: var(--white);
    border: 2px solid var(--turquoise);
    font-weight: 700;
    padding: 18px 30px;
    font-size: 16px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

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

.contact-form .btn-secondary:hover::before {
    left: 100%;
}

.contact-form .btn-secondary:hover {
    background: linear-gradient(135deg, var(--turquoise-dark) 0%, var(--turquoise) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.4);
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: scale(1);
}

.floating-cta .btn {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.top-anchor {
    position: fixed;
    top: 90px;
    right: 30px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: var(--black);
}

.top-anchor.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--turquoise), var(--turquoise-dark));
}

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

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--turquoise);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--turquoise);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item svg {
    margin-right: 15px;
    min-width: 20px;
    color: var(--turquoise);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 90;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 91;
    }
    
    .menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero:before {
        width: 100%;
        opacity: 0.15;
        clip-path: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        top: 20px;
        right: 20px;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .process-step:after {
        display: none;
    }
    
    .testimonial-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .two-col {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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