/* Base Styles and Variables */
:root {
    --primary-color: #D81159;
    --secondary-color: #8F2D56;
    --accent-color: #FFBC42;
    --light-color: #f8f8f8;
    --dark-color: #333;
    --text-color: #444;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
}

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

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

h2 span {
    color: var(--primary-color);
}

h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(216, 17, 89, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 17, 89, 0.4);
    color: white;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-left: 10px;
    color: var(--secondary-color);
}

.brand h1 span {
    color: var(--primary-color);
    font-weight: 400;
}

.brand-icon {
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    font-weight: 600;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-btn {
    display: none;
    cursor: pointer;
}

.menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Banner Section */
.banner {
    padding-top: 9rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, rgba(216, 17, 89, 0.03) 0%, rgba(143, 45, 86, 0.03) 100%);
}

.banner .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.banner-text {
    flex: 1;
}

.banner-text h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    max-width: 90%;
}

.banner-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.decorative-pattern {
    max-width: 100%;
    height: auto;
}

/* Tech Section */
.tech {
    background-color: white;
}

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

.tech-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature-check {
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.feature-detail {
    flex: 1;
}

.feature-detail h3 {
    margin-bottom: 0.5rem;
}

/* Get Started Section */
.get-started {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.get-started h2,
.get-started p {
    color: white;
}

.action-box {
    max-width: 700px;
    margin: 0 auto;
}

.get-started .cta-button {
    background: white;
    color: var(--primary-color);
    margin-top: 1rem;
}

.get-started .cta-button:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.nav-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.nav-column ul li {
    margin-bottom: 0.8rem;
}

.nav-column ul li a,
.nav-column ul li {
    color: rgba(255, 255, 255, 0.7);
}

.nav-column ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner .wrapper {
        flex-direction: column;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .banner-text h2 {
        text-align: center;
    }
    
    .banner-text p {
        max-width: 100%;
    }
    
    .decorative-pattern {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .banner-text h2 {
        font-size: 2.2rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.8rem 0;
        margin-left: 0;
    }
    
    .menu-btn.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-btn.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-nav {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
}
