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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
}

.logo-img {
    height: 22px;
    width: auto;
    display: block;
}

.logo-text {
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(145deg, rgba(63, 47, 128, 1) 10%, rgba(226, 31, 34, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About page hero */
.hero-about {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Contact page hero */
.hero-contact {
    padding-top: 120px;
    padding-bottom: 60px;
}

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.about-hero-image {
    flex: 0 1 380px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
}

.about-hero-text {
    flex: 1 1 400px;
    text-align: left;
}

.about-hero-text .hero-title {
    text-align: left;
}

.about-hero-text .hero-description {
    text-align: left;
}

.nav-menu a.nav-current {
    color: #ffffff;
    font-weight: 600;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #CD1F3F;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Commitment Section - white bg */
.commitment-section {
    background: #ffffff;
    padding: 100px 20px;
    position: relative;
}

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

.commitment-section-alt {
    background: #f6f6f8;
}

.about-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.85;
    max-width: 800px;
    margin: 0 auto 1.25rem;
    text-align: center;
}

.about-intro:last-child {
    margin-bottom: 0;
}

.about-mission {
    font-size: 1.15rem;
}

/* Privacy / legal policy content */
.policy-section .policy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.policy-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.policy-content p:last-child {
    margin-bottom: 0;
}

.policy-content ul {
    margin: 0.5rem 0 1.25rem 1.5rem;
    padding: 0;
}

.policy-content li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #CD1F3F;
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

.commitment-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.separator {
    width: 100px;
    height: 3px;
    background: #E51F2C;
    margin: 0 auto 40px;
}

.separator-small {
    width: 100px;
    height: 3px;
    background: #E51F2C;
    margin: 10px 0 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.feature-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.feature-content {
    order: 2;
}

.commitment-section .feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.commitment-section .feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.feature-icon {
    order: 1;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 40px;
}

.video-box {
    color: inherit;
}

.commitment-section .video-box {
    color: #333;
}

.commitment-section .video-box h3 {
    color: #333;
}

.video-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.video-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-container img:hover {
    opacity: 0.9;
}

.video-container iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    border-radius: 8px;
}

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

/* Action Section - gradient bg */
.action-section {
    background: linear-gradient(145deg, rgba(205,31,63,1) 0%, rgba(171,35,78,1) 26%, rgba(64,45,124,1) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.3;
}

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

.action-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.action-section .action-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.action-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.action-section .separator-purple {
    background: #E51F2C;
}

.separator-purple {
    width: 100px;
    height: 3px;
    background: #3E2F80;
    margin-top: 10px;
}

.action-image {
    width: 100%;
}

.action-image .video-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.action-image .video-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.action-image .video-container img:hover {
    opacity: 0.9;
}

.action-image .video-container iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    border-radius: 8px;
}

/* Analyze Section */
.analyze-section {
    background: #ffffff;
    padding: 100px 20px;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.analyze-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.analyze-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.analyze-feature-reverse .analyze-content {
    order: 2;
}

.analyze-feature-reverse .analyze-image {
    order: 1;
}

.analyze-content {
    display: flex;
    flex-direction: column;
}

.analyze-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.analyze-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.analyze-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.analyze-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-learn-more {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: #CD1F3F;
    border: 2px solid #CD1F3F;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-learn-more:hover {
    background: #CD1F3F;
    color: #ffffff;
    transform: translateY(-2px);
}

.analyze-image {
    width: 100%;
}

.analyze-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.analyze-image img:hover {
    opacity: 0.9;
}

.analyze-image iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    border-radius: 8px;
}

/* Benefits Section */
.benefits-section {
    background: #ffffff;
    padding: 100px 20px;
    background-image: url('https://www.netstock.com/wp-content/uploads/2025/01/bg-side.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image {
    width: 100%;
}

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

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.benefits-text .separator {
    width: 100px;
    height: 3px;
    background: #E51F2C;
    margin: 10px 0 40px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefits-list h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list ul li {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.benefits-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #CD1F3F;
    font-size: 1.5rem;
    line-height: 1.2;
}

.benefits-cta {
    margin-top: 30px;
}

/* Form Section */
.form-section {
    background: #ffffff;
    padding: 100px 20px;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.form-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
    line-height: 1.4;
}

.form-text .separator-purple {
    width: 100px;
    height: 3px;
    background: #3E2F80;
    margin: 10px 0;
}

/* Contact page – contact info column */
.contact-info .separator-purple {
    width: 100px;
    height: 3px;
    background: #3E2F80;
    margin: 10px 0 1.5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.2;
}

.contact-info-block {
    margin-bottom: 1.75rem;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #3E2F80;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-info-block a {
    color: #CD1F3F;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.form-wrapper {
    background: linear-gradient(156deg, rgba(205,31,63,1) 0%, rgba(171,35,78,1) 11%, rgba(64,45,124,1) 71%);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-wrapper .contact-form {
    width: 100%;
    color: #ffffff;
}

.form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-wrapper .contact-form label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

.form-wrapper .contact-form input[type="text"],
.form-wrapper .contact-form input[type="email"],
.form-wrapper .contact-form input[type="tel"],
.form-wrapper .contact-form input[type="number"],
.form-wrapper .contact-form textarea,
.form-wrapper .contact-form select {
    width: 100%;
    background: #ffffff;
    color: #333;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-wrapper .contact-form select {
    cursor: pointer;
    appearance: auto;
}

.form-wrapper .contact-form input:focus,
.form-wrapper .contact-form textarea:focus,
.form-wrapper .contact-form select:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-wrapper .contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.form-wrapper .contact-form .form-submit {
    background: #ffffff;
    color: #CD1F3F;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-wrapper .contact-form .form-submit:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #3E1739;
    color: #EFEDE8;
    padding: 50px 20px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-logo:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo-img {
    height: 22px;
    width: auto;
    display: block;
}

.footer-logo-text {
    color: #ffffff;
}

.footer-details {
    max-width: 520px;
}

.footer-details p {
    margin: 0 0 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(239, 237, 232, 0.95);
}

.footer-details p:last-child {
    margin-bottom: 0;
}

.footer-contact a {
    color: #EFEDE8;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-sep {
    margin: 0 10px;
    opacity: 0.6;
}

.footer-reg {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links a {
    color: #EFEDE8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(239, 237, 232, 0.8);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .about-hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-hero-text,
    .about-hero-text .hero-title,
    .about-hero-text .hero-description {
        text-align: center;
    }

    .about-hero-text .btn {
        margin: 0 auto;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .action-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .action-text h2 {
        font-size: 2rem;
    }

    .section-title-dark {
        font-size: 2rem;
    }

    .analyze-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .analyze-feature .analyze-content {
        order: 2;
    }

    .analyze-feature .analyze-image {
        order: 1;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-text h2 {
        font-size: 2rem;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-text h2 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .form-wrapper .form-row {
        grid-template-columns: 1fr;
    }

    .form-text h2 {
        font-size: 1.75rem;
    }

    .form-text h4 {
        font-size: 1.1rem;
        margin-top: 30px;
    }

    .form-wrapper .contact-form .form-submit {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-details {
        max-width: 100%;
    }

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