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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header & Navigation */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B35;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B35;
}

.btn-touch {
    color: #FF6B35;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #FF6B35;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-touch:hover {
    background: #FF6B35;
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
}

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

.hero-text {
    max-width: 500px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF6B35;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow,
.btn-touch:hover .arrow {
    transform: translate(3px, -3px);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 50% 50% 0 0;
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.card-chart {
    top: 15%;
    right: -5%;
    width: 200px;
    z-index: 3;
    animation-delay: 0s;
}

.card-traffic {
    bottom: 25%;
    left: -10%;
    width: 150px;
    z-index: 3;
    animation-delay: 1s;
}

.icon-badge {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    z-index: 4;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-badge i {
    font-size: 28px;
    color: #ffffff;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Prototypes Section */
.prototypes-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.prototypes-text {
    max-width: 500px;
}

.prototypes-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
}

.prototypes-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.prototypes-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.screen-frame {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.screen-frame.orange-frame {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
}

.screen-frame.teal-frame {
    background: linear-gradient(135deg, #4A90A4 0%, #5BA5BA 100%);
}

.screen-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.frame-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    z-index: -1;
}

.frame-accent.top-right {
    top: -15px;
    right: -15px;
    background: #FF6B35;
    transform: rotate(15deg);
}

.frame-accent.top-left {
    top: -15px;
    left: -15px;
    background: #FF6B35;
    transform: rotate(-15deg);
}

.frame-accent.bottom-right {
    bottom: -15px;
    right: -15px;
    background: #4A90A4;
    transform: rotate(-15deg);
}

/* Validate Section */
.validate-section {
    padding: 80px 0;
}

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

.validate-text {
    max-width: 500px;
}

.validate-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
}

.validate-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.validate-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.partnership-text {
    max-width: 500px;
}

.partnership-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
}

.partnership-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.partnership-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Success Stories Section */
.success-section {
    padding: 80px 0;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.success-intro {
    max-width: 350px;
}

.success-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
}

.success-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.story-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.story-title {
    font-size: 20px;
    font-weight: 600;
    color: #FF6B35;
    padding: 20px 25px 10px;
    line-height: 1.4;
}

.story-text {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    padding: 0 25px 25px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.5);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    font-size: 24px;
    color: #FF6B35;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

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

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

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-copyright p {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #FF6B35;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-policy {
    display: flex;
    align-items: center;
}

.policy-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

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

    .nav-menu {
        gap: 20px;
    }
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
    font-size: 36px;
    color: #FF6B35;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
}

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

.trust-image {
    position: relative;
}

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

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.frame-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: -1;
}

.frame-decoration.top-left {
    top: -20px;
    left: -20px;
    background: #4A90A4;
    border-radius: 20px;
    transform: rotate(15deg);
}

.frame-decoration.bottom-right {
    bottom: -20px;
    right: -20px;
    background: #FF6B35;
    border-radius: 20px;
    transform: rotate(-15deg);
}

.trust-text {
    max-width: 500px;
}

.trust-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
}

.trust-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.trust-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #FF6B35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 5px;
    border: 2px solid #FF6B35;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FF6B35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-text {
        text-align: center;
        max-width: 100%;
    }

    .trust-buttons {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .hero-description {
        font-size: 14px;
    }

    .card-chart {
        width: 150px;
        right: 0;
    }

    .card-traffic {
        width: 120px;
        left: 0;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-title {
        font-size: 28px;
    }

    .trust-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .prototypes-content,
    .validate-content,
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prototypes-text,
    .validate-text,
    .partnership-text {
        text-align: center;
        max-width: 100%;
    }

    .prototypes-buttons,
    .validate-buttons,
    .partnership-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .prototypes-title,
    .validate-title,
    .partnership-title {
        font-size: 28px;
    }

    .validate-content {
        grid-template-columns: 1fr;
    }

    .validate-image {
        order: -1;
    }

    .success-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .success-intro {
        text-align: center;
        max-width: 100%;
    }

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

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

    .faq-question {
        padding: 15px 18px;
        font-size: 14px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright,
    .footer-social,
    .footer-policy {
        width: 100%;
        justify-content: center;
    }
}
