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

:root {
    --blue: #4A90E2;
    --dark-blue: #2C5F8D;
    --green: #2ECC71;
    --red: #E74C3C;
    --purple: #6B5B95;
    --black: #1a1a1a;
    --gray: #34495e;
    --light-gray: #ecf0f1;
    --white: #ffffff;
}

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

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

/* Navigation */
.navbar {
    background: var(--dark-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 28px;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-call {
    background: var(--gray);
    color: var(--white);
}

.btn-video {
    background: var(--blue);
    color: var(--white);
}

.btn-green {
    background: var(--green);
    color: var(--white);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, #d5dce3 100%);
    padding: 80px 0;
}

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

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-blue {
    background: var(--blue);
    color: var(--white);
}

.tag-green {
    background: var(--green);
    color: var(--white);
}

.tag-purple {
    background: var(--purple);
    color: var(--white);
}

.tag-red {
    background: var(--red);
    color: var(--white);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-blue);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.95;
}

.hero-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
}

/* Signup Section */
.signup-section {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--gray);
}

.signup-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup-form input {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--green);
}

.signup-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.signup-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Future Section */
.future-section {
    background: var(--white);
    padding: 80px 0;
}

.section-title-center {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: var(--gray);
}

.future-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.future-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.future-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.future-blue {
    background: var(--blue);
    color: var(--white);
}

.future-green {
    background: var(--green);
    color: var(--white);
}

.future-red {
    background: var(--red);
    color: var(--white);
}

.future-purple {
    background: var(--purple);
    color: var(--white);
}

.arrow {
    font-size: 24px;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--gray);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.card-blue {
    background: var(--blue);
    color: var(--white);
}

.card-green {
    background: var(--green);
    color: var(--white);
}

.card-red {
    background: var(--red);
    color: var(--white);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Who Is Section */
.who-is-section {
    background: var(--white);
    padding: 80px 0;
}

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

.who-is-badge {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.badge-number {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 18px;
}

.who-is-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.who-is-offer {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.offer-item {
    display: flex;
    flex-direction: column;
}

.offer-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
}

.offer-label {
    font-size: 14px;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-image {
    border-radius: 15px;
    overflow: hidden;
    background: var(--blue);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    font-size: 20px;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--gray);
}

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

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

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-prev {
    background: var(--green);
    color: var(--white);
}

.nav-next {
    background: var(--red);
    color: var(--white);
}

.nav-btn:hover {
    transform: scale(1.1);
}

/* Social Section */
.social-section {
    background: var(--white);
    padding: 80px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-card {
    padding: 60px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.social-blue {
    background: var(--blue);
    color: var(--white);
}

.social-green {
    background: var(--green);
    color: var(--white);
}

.social-red {
    background: var(--red);
    color: var(--white);
}

.social-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.social-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-stars {
    display: flex;
    gap: 10px;
}

.star {
    font-size: 24px;
}

.star-blue {
    color: var(--blue);
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content,
    .signup-content,
    .who-is-content,
    .testimonial-card {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title-large {
        font-size: 36px;
    }

    .cards-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .why-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .future-menu {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .section-title-large {
        font-size: 28px;
    }
}

