:root {
    --primary-bg: rgb(69, 79, 90);
    --section-bg: rgb(46, 49, 59);
    --primary-pink: rgb(216, 28, 99);
    --secondary-pink: rgb(237, 12, 109);
    --text-white: rgb(255, 255, 255);
    --text-dark: rgb(19, 11, 11);
    --gradient-cyan-blue: linear-gradient(top, rgb(1, 173, 241), rgb(2, 252, 242));
    --gradient-pink-purple: linear-gradient(90deg, rgb(250, 3, 145) 0px, rgb(132, 93, 254) 100%);
    --header-height: 73px;
}

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

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 26.08px;
    background-color: var(--primary-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

h1 {
    font-size: 72px;
    font-weight: 400;
    line-height: 85.68px;
}

h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 61.94px;
}

h3 {
    font-size: 28px;
    font-weight: 400;
    line-height: 45.64px;
}

.navbar {
    background-color: transparent;
    height: var(--header-height);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(46, 49, 59, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: var(--text-white) !important;
    text-decoration: none;
}

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

.logo-icon {
    font-size: 24px;
    color: var(--primary-pink);
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    padding: 0 20px !important;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-pink) !important;
}

.dropdown-menu {
    background-color: var(--section-bg);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-white);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-pink);
    color: var(--text-white);
}

.btn-primary-custom {
    background-color: var(--primary-pink);
    border: none;
    color: var(--text-white);
    padding: 12px 34px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-pink);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 28, 99, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 34px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-white);
    color: var(--section-bg);
}

.hero-section {
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(1, 173, 241, 0.1) 50%, rgba(2, 252, 242, 0.1) 100%);
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-intro {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-pink);
}

.hero-intro p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
}

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

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.badge-item i {
    color: var(--primary-pink);
}

.features-intro {
    background-color: var(--section-bg);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.stat-number {
    font-size: 72px;
    font-weight: 400;
    line-height: 85.68px;
    margin-bottom: 10px;
}

.gradient-text {
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
}

.platform-overview {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.platform-video-section {
    margin-top: 40px;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--secondary-pink);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 24px;
    color: var(--text-white);
    margin-left: 4px;
}

.platform-description {
    padding-left: 40px;
}

.platform-description p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
}

.case-studies {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.case-study-item {
    background-color: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-10px);
}

.case-study-header {
    padding: 20px;
    background-color: var(--primary-bg);
}

.case-study-header h3 {
    color: var(--text-white);
    font-size: 20px;
    margin: 0;
}

.case-study-image {
    position: relative;
}

.case-study-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-pink);
    color: var(--text-white);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.badge-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}

.case-study-content {
    padding: 20px;
    color: var(--text-dark);
}

.case-study-content p {
    margin-bottom: 20px;
    line-height: 24px;
}

.case-study-metrics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-metrics li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.case-study-metrics li:last-child {
    border-bottom: none;
}

.how-it-works {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyan-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 32px;
    color: var(--text-white);
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
}

.process-arrow {
    color: var(--primary-pink);
    font-size: 24px;
    margin: 0 20px;
}

.cta-section {
    background: var(--gradient-pink-purple);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background-color: var(--section-bg);
    padding: 60px 0 20px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
}

.footer h5 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

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

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

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

.footer-links a:hover {
    color: var(--primary-pink);
}

.contact-info p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
}

.contact-info a {
    color: var(--primary-pink);
    text-decoration: none;
}

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

.pricing-hero {
    background-color: var(--section-bg);
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-plans {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.pricing-card {
    background-color: var(--text-white);
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-pink);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-pink-purple);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    color: var(--primary-pink);
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-pink);
}

.period {
    font-size: 16px;
    color: rgba(19, 11, 11, 0.7);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-pink);
    font-size: 16px;
}

.pricing-footer {
    margin-top: 30px;
}

.included-features {
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.feature-item h5 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pricing-faq {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.accordion-item {
    background-color: var(--text-white);
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--text-white);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-pink);
    color: var(--text-white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    color: var(--text-dark);
    line-height: 26px;
}

.contact-hero {
    background-color: var(--section-bg);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-form-section {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.contact-form-container {
    background-color: var(--text-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.contact-form-container h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(216, 28, 99, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.success-icon {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.contact-info-section {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.contact-info-card {
    background-color: var(--text-white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyan-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: var(--text-white);
}

.contact-info-card h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: rgba(19, 11, 11, 0.7);
    margin-bottom: 15px;
}

.contact-info-card a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-info-card address {
    font-style: normal;
    line-height: 24px;
}

.legal-hero {
    background-color: var(--section-bg);
    padding: 120px 0 80px;
}

.legal-content {
    background-color: var(--primary-bg);
    padding: 80px 0;
}

.legal-document {
    background-color: var(--text-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.legal-document h2 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    margin-bottom: 15px;
    line-height: 26px;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-document li {
    margin-bottom: 8px;
    line-height: 24px;
}

.contact-details {
    background-color: rgba(216, 28, 99, 0.1);
    border-left: 4px solid var(--primary-pink);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-details a {
    color: var(--primary-pink);
    text-decoration: none;
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    h3 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-intro {
        margin: 30px 0;
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
        line-height: 56px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .platform-description {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }
}
