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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #630b3a;
    --text-white: #fff;
    --card-bg: #f7f8fb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    overflow-x: hidden;
    background-color: var(--primary-color);
}

/* Navigation */
.main-nav {
    background-color: var(--primary-color);
    padding: 1.25rem 2rem;
    width: 100%;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-logo svg {
    height: 35px;
    width: auto;
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo:hover svg text {
    fill: rgba(255, 255, 255, 0.9);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

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

.nav-links a:hover {
    color: var(--text-white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    padding: 4rem 2rem 2rem;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-logo svg {
    height: 35px;
    width: auto;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-contact {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--text-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

.hero-section {
    width: 100%;
    min-height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: center;
    max-width: 900px;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button,
a.cta-button {
    background-color: var(--text-white);
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.trusted-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.trusted-text strong {
    font-weight: 600;
    color: var(--text-white);
}

/* Features Section */
.features-section {
    width: 100%;
    background-color: var(--card-bg);
    padding: 6rem 2rem;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-headline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.features-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #333;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: var(--text-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.feature-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #e7d037;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.feature-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.features-cta {
    text-align: center;
}

.features-cta .cta-button {
    margin-bottom: 0;
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Stats Section */
.stats-section {
    width: 100%;
    background-color: var(--primary-color);
    padding: 6rem 2rem;
}

.stats-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    text-transform: lowercase;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: lowercase;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1.5rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .stats-section {
        padding: 4rem 1.5rem;
    }
    
    .stats-title {
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Benefits Section */
.benefits-section {
    width: 100%;
    background-color: var(--text-white);
    padding: 6rem 2rem;
}

.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.benefits-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.benefits-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
}

.benefits-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #555;
    line-height: 1.7;
}

.benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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


.benefit-card-reversed .benefit-content,
.benefit-card-reversed .benefit-image-wrapper {
    direction: ltr;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.benefit-card-text {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
}

.benefit-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.benefit-link:hover {
    color: #8b1a4f;
}

.benefit-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

@media (max-width: 968px) {
    .benefit-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card-reversed {
        direction: ltr;
    }
    
    .benefit-image-wrapper {
        order: -1;
    }
    
    .benefits-list {
        gap: 3rem;
    }
}

/* Growth Section */
.growth-section {
    width: 100%;
    background-color: var(--card-bg);
    padding: 6rem 2rem;
}

.growth-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.growth-card {
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.growth-card:hover {
    transform: translateY(-5px);
}

.growth-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(99, 11, 58, 0.9) 0%, rgba(99, 11, 58, 0.7) 50%, rgba(99, 11, 58, 0.4) 100%);
    z-index: 1;
}

.growth-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.growth-card-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.growth-link {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.growth-link:hover {
    gap: 0.75rem;
}

.growth-link::after {
    content: '→';
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .growth-section {
        padding: 4rem 1.5rem;
    }
    
    .growth-title {
        margin-bottom: 3rem;
    }
    
    .growth-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .growth-card {
        min-height: 350px;
    }
    
    .growth-card-content {
        padding: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    background-color: var(--text-white);
    padding: 6rem 2rem;
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }
    
    .testimonials-title {
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background-color: var(--card-bg);
    padding: 6rem 2rem;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }
    
    .faq-title {
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Signup Form Section */
.signup-section {
    width: 100%;
    background-color: var(--primary-color);
    padding: 6rem 2rem;
}

.signup-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.signup-content {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.signup-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.signup-form {
    background-color: var(--text-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: #222;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23630b3a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-group input[type="text"]::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    margin-top: 0;
}

.form-submit:hover {
    background-color: #8b1a4f;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .signup-section {
        padding: 4rem 1.5rem;
    }
    
    .signup-content {
        margin-bottom: 2rem;
    }
    
    .signup-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .main-nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        text-align: left;
    }
}

/* Page Section (for subpages) */
.page-section {
    width: 100%;
    background-color: var(--text-white);
    padding: 6rem 2rem;
    min-height: 60vh;
}

.page-section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-section p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: #222;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-list li {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.about-list li strong {
    color: #222;
    font-weight: 600;
}

.about-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.about-cta .cta-button {
    margin-bottom: 0;
}

.policy-date {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.about-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.about-section a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-section {
        margin-bottom: 2.5rem;
    }
    
    .lead-text {
        font-size: 1.25rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

