/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color scheme - completely different from previous website */
    --primary: #e63946;
    --secondary: #457b9d;
    --light: #f1faee;
    --accent: #a8dadc;
    --dark: #1d3557;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

section {
    padding: 5rem 0;
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 2rem;
}

.logo {
    width: 160px;
}

.logo-icon {
    width: 100%;
    height: auto;
}

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

.menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--primary);
    margin: 6px 0;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero section */
.hero-section {
    padding: 10rem 0 5rem;
    background: var(--gradient-primary);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 3rem;
}

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

.hero-content {
    width: 50%;
}

.hero-visual {
    width: 40%;
}

.hero-graphic {
    width: 100%;
    height: auto;
}

.cta-wrapper {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.primary-btn:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: var(--transition);
}

.secondary-btn:hover {
    background-color: white;
    color: var(--primary);
}

/* About section */
.about-section {
    padding-top: 7rem;
    background-color: white;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title h2 {
    color: var(--primary);
}

.section-title p {
    color: var(--secondary);
    font-size: 1.2rem;
}

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

.about-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

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

.features-container {
    margin-top: 4rem;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.feature-content {
    width: 50%;
    padding: 3rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-visual {
    width: 50%;
    background-color: rgba(168, 218, 220, 0.1);
    padding: 2rem;
}

.feature-graphic {
    width: 100%;
    height: auto;
}

.feature-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
}

.feature-link:after {
    content: " →";
    transition: var(--transition);
}

.feature-link:hover:after {
    margin-left: 5px;
}

/* Pricing section */
.pricing-section {
    background-color: white;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.price-card.highlight {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-card.highlight .price-header h3 {
    color: white;
}

.price {
    margin-top: 1rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.price-features ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.price-features ul li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price-card.highlight .price-features ul li::before {
    color: white;
}

.price-cta {
    text-align: center;
    margin-top: 2rem;
}

.price-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.price-card.highlight .price-btn {
    background-color: white;
    color: var(--primary);
}

.price-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* CTA section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 7rem 0;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-btn {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-icon {
    width: 180px;
    height: auto;
}

.footer-favicon {
    margin-top: 1.5rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--accent);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-section .container,
    .feature-box {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-visual,
    .feature-content,
    .feature-visual {
        width: 100%;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .feature-content {
        order: 2;
    }
    
    .feature-visual {
        order: 1;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card.highlight {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .cta-wrapper {
        flex-direction: column;
    }
    
    .secondary-btn {
        margin-top: 1rem;
    }
}
