:root {
    /* Light and Friendly Color Scheme */
    --primary-color: #4F86F7;      /* Bright sky blue */
    --secondary-color: #6B9FFF;    /* Lighter blue */
    --accent-color: #FF9677;       /* Soft coral */
    --accent-light: #FFB193;       /* Light coral */
    --text-color: #2C3E50;         /* Soft dark blue for text */
    --light-text: #6B7C93;         /* Medium gray with blue tint */
    --background: #ffffff;          /* Pure white */
    --light-background: #F8FAFF;   /* Very light blue tint */
    --border-color: #E8F0FF;       /* Light blue border */
    --success-color: #4CD5B0;      /* Minty green */
    --success-light: #7EECD1;      /* Light mint */
    --shadow: 0 4px 6px -1px rgba(79, 134, 247, 0.1), 0 2px 4px -1px rgba(79, 134, 247, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(79, 134, 247, 0.1), 0 4px 6px -2px rgba(79, 134, 247, 0.05);
    --gradient-primary: linear-gradient(135deg, #4F86F7, #6B9FFF);
    --gradient-light: linear-gradient(135deg, #6B9FFF, #FF9677);
    --gradient-warm: linear-gradient(135deg, #FF9677, #FFB193);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.logo {
    height: 32px;
    display: flex;
    align-items: center;
}

.logo a {
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not([href="#contact"]) {
    position: relative;
}

.nav-links a:not([href="#contact"])::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    display: block;
}

.nav-links a:not([href="#contact"]):hover::after {
    width: 100%;
}

.nav-links a:not([href="#contact"]):hover {
    color: var(--primary-color);
}

.nav-links a[href="#contact"] {
    background: var(--gradient-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.nav-links a[href="#contact"]:hover {
    background: var(--gradient-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.language-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-background);
    color: var(--primary-color);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.language-switch i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.language-switch:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
    padding: 8rem 1rem 4rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(107, 159, 255, 0.1) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(0deg, rgba(107, 159, 255, 0.1) 1px, transparent 1px) 0 0 / 50px 50px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 150, 119, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(107, 159, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 150, 119, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(107, 159, 255, 0.12) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
    color: white;
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
    padding: 0 1rem;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-weight: 500;
    padding: 0 2rem;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
}

.hero-features {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(107, 159, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(79, 134, 247, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 30px rgba(79, 134, 247, 0.12);
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.hero .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 3.5rem;
    border-radius: 2rem;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease-out 0.4s backwards;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.hero .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-light);
}

.hero .cta-button:hover::before {
    transform: translateX(100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 6rem;
        min-height: 100vh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 2.8rem;
        padding: 0;
        line-height: 1.2;
        margin-top: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    background: var(--gradient-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Packages Section */
.packages {
    padding: 4rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.packages h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.packages-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.billing-toggle {
    margin-bottom: 2rem;
}

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

.package-card {
    background: linear-gradient(145deg, #ffffff, var(--light-background));
    border: 1px solid rgba(107, 159, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(79, 134, 247, 0.08);
    overflow: visible;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(79, 134, 247, 0.15);
    border-color: var(--accent-color);
}

.package-card h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin: 0.5rem 0 1rem;
}

.price {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 1rem 0;
}

.price span {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-left: 0.3rem;
}

.package-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.package-card li {
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.package-card li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
    display: inline-block;
}

.package-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    border: none;
}

.package-button:hover {
    background: var(--gradient-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 134, 247, 0.3);
}

.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
    z-index: 2;
}

.featured .package-button {
    background: var(--gradient-warm);
    box-shadow: 0 4px 15px rgba(255, 150, 119, 0.3);
}

.featured .package-button:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 4px 20px rgba(255, 150, 119, 0.4);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-warm);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 150, 119, 0.3);
    z-index: 3;
    line-height: 1;
}

.yearly-price small {
    display: block;
    color: var(--success-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) and (max-height: 800px) {
    .package-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .package-card h3 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2.8rem;
        margin: 0.5rem 0;
    }
    
    .package-card ul {
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .package-card li {
        font-size: 1rem;
    }
    
    .package-button {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .featured {
        transform: none;
    }
}

/* Process Section */
.process {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(79, 134, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 150, 119, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.process .section-subtitle {
    text-align: center;
    color: var(--body-text);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 150, 119, 0.2);
}

/* Why Us Section */
.why-us {
    padding: 6rem 1rem;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 150, 119, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(79, 134, 247, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.why-us .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(145deg, #ffffff, var(--light-background));
    border: 1px solid rgba(107, 159, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(79, 134, 247, 0.12);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 150, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 150, 119, 0.15);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.benefit-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.benefit-features li i {
    color: var(--success-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .why-us {
        padding: 4rem 1rem;
    }

    .why-us h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 1rem;
    background: linear-gradient(135deg, var(--light-background), #fff);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(79, 134, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 150, 119, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-text {
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--background);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(79, 134, 247, 0.1);
    display: grid;
    gap: 1.5rem;
    position: relative;
    border: 1px solid rgba(79, 134, 247, 0.1);
}

.form-group {
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-color);
    background: var(--background);
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 134, 247, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    height: 180px;
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-group textarea::placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--light-text);
    opacity: 0.8;
}

/* Za različne brskalnike */
.form-group textarea::-webkit-input-placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-group textarea::-moz-placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-group textarea:-ms-input-placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234F86F7' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-4-4h8l-4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.5rem;
}

.submit-button {
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background: var(--gradient-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 134, 247, 0.2);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-button:hover::before {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 1rem;
    }

    .contact h2 {
        font-size: 2.2rem;
    }

    .contact-text {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 16px;
    }

    .submit-button {
        padding: 1rem 2rem;
        width: 100%;
    }
}

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

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

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

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

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links a:hover {
    color: white;
}

.footer-contact-info .company-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-contact-info .address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-methods a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-methods a:hover {
    color: white;
}

.contact-methods i {
    font-size: 1.1rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

.legal-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .footer-logo img {
        height: 36px;
        margin-bottom: 1rem;
        width: auto;
    }

    .footer-logo p {
        font-size: 0.9rem;
        opacity: 0.9;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        color: white;
    }

    .footer-links {
        padding-left: 0.5rem;
    }

    .footer-links a {
        display: block;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: white;
    }

    .footer-contact-info {
        text-align: right;
        padding-right: 0.5rem;
    }

    .footer-contact-info .company-name {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: white;
    }

    .footer-contact-info .address {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-contact-info .contact-methods {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
    }

    .contact-methods a {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .contact-methods a:hover {
        color: white;
    }

    .contact-methods i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        flex-direction: column;
        gap: 1.25rem;
    }

    .legal-links {
        justify-content: center;
        gap: 2rem;
    }

    .legal-links a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-bottom p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    /* Remove conflicting footer styles */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

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

.hero, .package-card, .step, .benefit-card {
    animation: fadeIn 1s ease-out;
}

/* Billing Toggle */
.billing-toggle {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.billing-toggle span {
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-warm);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.yearly-discount {
    background: var(--gradient-warm);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    box-shadow: 0 2px 10px rgba(255, 150, 119, 0.2);
}

.price-period {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.yearly-price {
    display: none;
    color: var(--success-color);
}

.yearly-price.active {
    display: block;
}

.monthly-price.inactive {
    display: none;
}

/* Enhanced Form Elements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 150, 119, 0.15);
}

/* Subscription Highlight */
.subscription-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
    border: 2px solid var(--accent-color);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(79, 134, 247, 0.12);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.highlight-text {
    text-align: left;
}

.highlight-text h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

/* Update Packages Section */
.packages-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: -2rem auto 3rem;
}

.package-card {
    position: relative;
    overflow: hidden;
}

.package-card::before {
    display: none;
}

.package-card::after {
    display: none;
}

/* Update Hero Features for better visibility */
.hero-features {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 255, 0.8));
    padding: 1.5rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 159, 255, 0.2);
}

.hero-feature {
    background: rgba(255, 255, 255, 0.9);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .subscription-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .highlight-text {
        text-align: center;
    }

    .packages-subtitle {
        padding: 0 1rem;
        font-size: 1.1rem;
    }

    .package-card::before {
        font-size: 0.7rem;
        padding: 0.2rem 2.5rem;
    }
}

/* Subscription Info Section */
.subscription-info {
    padding: 4rem 1rem;
    background: var(--light-background);
    position: relative;
}

.subscription-info .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.subscription-highlight {
    background: var(--background);
    border: 2px solid var(--accent-color);
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(79, 134, 247, 0.12);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.subscription-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(79, 134, 247, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: rgba(255, 150, 119, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.subscription-highlight:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 150, 119, 0.15);
}

.highlight-text {
    text-align: left;
    flex: 1;
}

.highlight-text h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.highlight-text p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .subscription-info {
        padding: 3rem 1rem;
    }

    .subscription-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .highlight-text {
        text-align: center;
    }

    .highlight-icon {
        margin: 0 auto;
    }
}

/* Update spacing between sections */
.hero {
    padding-bottom: 2rem;
}

.packages {
    padding-top: 2rem;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section Animations */
.hero h1 {
    animation: fadeIn 1s ease-out;
}

.hero-text {
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.hero-feature {
    animation: scaleIn 0.6s ease-out backwards;
}

.hero-feature:nth-child(1) { animation-delay: 0.3s; }
.hero-feature:nth-child(2) { animation-delay: 0.4s; }
.hero-feature:nth-child(3) { animation-delay: 0.5s; }
.hero-feature:nth-child(4) { animation-delay: 0.6s; }

.hero-feature:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(79, 134, 247, 0.15);
}

.hero-feature i {
    transition: all 0.3s ease;
}

.hero-feature:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

/* Package Cards Enhanced Animations */
.package-card {
    animation: scaleIn 0.6s ease-out backwards;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.package-grid .package-card:nth-child(1) { animation-delay: 0.2s; }
.package-grid .package-card:nth-child(2) { animation-delay: 0.3s; }
.package-grid .package-card:nth-child(3) { animation-delay: 0.4s; }

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 134, 247, 0.15);
}

.package-card.featured {
    animation: float 6s ease-in-out infinite;
}

.package-card li {
    transition: all 0.3s ease;
}

.package-card:hover li {
    transform: translateX(10px);
}

.package-card li::before {
    transition: all 0.3s ease;
}

.package-card:hover li::before {
    transform: scale(1.2);
    color: var(--accent-color);
}

.package-button {
    position: relative;
    overflow: hidden;
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.package-button:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

/* Benefits Section Enhanced */
.benefit-card {
    animation: fadeIn 0.6s ease-out backwards;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefits-grid .benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(2) { animation-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(3) { animation-delay: 0.4s; }
.benefits-grid .benefit-card:nth-child(4) { animation-delay: 0.5s; }
.benefits-grid .benefit-card:nth-child(5) { animation-delay: 0.6s; }
.benefits-grid .benefit-card:nth-child(6) { animation-delay: 0.7s; }

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 134, 247, 0.15);
}

.benefit-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 150, 119, 0.2);
}

.benefit-card:hover i {
    animation: pulse 2s ease-in-out infinite;
}

/* Process Steps Enhanced */
.step {
    animation: fadeIn 0.6s ease-out backwards;
    transition: all 0.4s ease;
}

.process-steps .step:nth-child(1) { animation-delay: 0.2s; }
.process-steps .step:nth-child(2) { animation-delay: 0.4s; }
.process-steps .step:nth-child(3) { animation-delay: 0.6s; }
.process-steps .step:nth-child(4) { animation-delay: 0.8s; }

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

.step-number {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(255, 150, 119, 0.3);
}

/* Form Elements Enhanced */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 134, 247, 0.15);
}

.submit-button {
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.submit-button:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

/* Navigation Links Enhanced */
.nav-links a {
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Intersection Observer Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base Styles */
@media (max-width: 768px) {
    html {
        font-size: 14px; /* Smaller base font size for mobile */
    }
}

/* Header & Navigation Optimization */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo {
        height: 28px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        padding: 0;
        z-index: 999;
    }

    .nav-links.active {
        height: auto;
        opacity: 1;
        padding: 1.5rem 0;
    }

    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a[href="#contact"] {
        margin: 0.5rem auto;
        width: 80%;
        display: block;
    }

    .language-switch {
        margin: 0.5rem auto;
        width: 80%;
        display: flex;
        justify-content: center;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    
    .menu-toggle {
        display: none;
    }
}

/* Hero Section Optimization */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 6rem;
        min-height: 100vh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 2.8rem;
        padding: 0;
        line-height: 1.2;
        margin-top: 4rem;
        margin-bottom: 1.5rem;
    }

    .hero-text {
        font-size: 1.2rem;
        padding: 0;
        margin-bottom: 2rem;
    }

    .hero-features {
        flex-direction: column;
        padding: 1.5rem;
        margin: 2rem 0;
        gap: 1rem;
        width: 100%;
    }

    .hero-feature {
        width: 100%;
        margin: 0;
    }

    .cta-button {
        width: 100%;
        margin: 1rem 0;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        white-space: normal;
        height: auto;
        line-height: 1.4;
    }

    .footer-logo img {
        height: 28px;
    }
}

/* Packages Section Optimization */
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-card.featured {
        transform: none;
        animation: none;
    }

    .price {
        font-size: 2.5rem;
    }

    .popular-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Benefits Section Optimization */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }
}

/* Form Optimization */
@media (max-width: 768px) {
    .contact-form {
        padding: 0 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.75rem;
    }
}

/* Performance Optimizations */
@media (max-width: 768px) {
    /* Disable hover effects on mobile */
    .package-card:hover,
    .benefit-card:hover,
    .hero-feature:hover {
        transform: none;
        box-shadow: var(--shadow);
    }

    /* Simplify animations */
    .fade-in {
        transition: opacity 0.3s ease;
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }
    }
}

/* Desktop Optimizations */
@media (min-width: 769px) {
    /* Improved grid layouts */
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 1400px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 1400px;
    }

    /* Enhanced hover effects */
    .package-card:hover {
        transform: translateY(-10px);
    }

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

    /* Larger text for better readability */
    .hero h1 {
        font-size: 3.5rem;
        max-width: 1000px;
    }

    .hero-text {
        font-size: 1.25rem;
        max-width: 800px;
    }
}

/* Loading Optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Print Styles */
@media print {
    .hero-features,
    .subscription-highlight,
    .footer {
        display: none;
    }

    .package-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(79, 134, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(255, 150, 119, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.about-text {
    color: var(--text-color);
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.client-list, .service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem;
}

.client-list li {
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    background: rgba(79, 134, 247, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.client-list li:hover {
    transform: translateX(5px);
    background: rgba(79, 134, 247, 0.06);
}

.client-list li strong {
    color: var(--primary-color);
    margin-right: 1rem;
    font-weight: 600;
}

.client-list li strong a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.client-list li strong a:hover {
    color: var(--accent-color);
}

.service-list li {
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(76, 213, 176, 0.03);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.service-list li:hover {
    transform: translateX(5px);
    background: rgba(76, 213, 176, 0.06);
}

.service-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    margin-top: 1.2rem;
}

.about-feature {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(79, 134, 247, 0.03);
    border: none;
}

.about-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.about-feature p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.about-cta {
    display: inline-block;
    margin-top: 3rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-light);
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 1.5rem;
    }

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

    .about h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .client-list li {
        padding: 0.8rem 1rem;
    }

    .about-features {
        padding: 1rem 0;
    }

    .about-feature {
        padding: 1.5rem;
    }
} 

/* Subscription Highlight Icon Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.subscription-highlight:hover .highlight-icon i {
    animation: rotate 2s linear infinite;
}

.subscription-highlight .highlight-icon i {
    transition: transform 0.3s ease;
}

.subscription-highlight:hover {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.98));
}

.subscription-highlight .service-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.subscription-highlight .service-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    background: transparent;
    transform: none;
    transition: none;
}

.subscription-highlight .service-list li:hover {
    transform: none;
    background: transparent;
}

.subscription-highlight .service-list li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.subscription-highlight p {
    margin-bottom: 0.5rem;
} 

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo {
        height: 28px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        padding: 0;
        z-index: 999;
    }

    .nav-links.active {
        height: auto;
        opacity: 1;
        padding: 1.5rem 0;
    }

    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a[href="#contact"] {
        margin: 0.5rem auto;
        width: 80%;
        display: block;
    }

    .language-switch {
        margin: 0.5rem auto;
        width: 80%;
        display: flex;
        justify-content: center;
    }
} 

@media (max-width: 768px) {
    .billing-toggle {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .billing-toggle span {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .yearly-discount {
        position: relative;
        display: inline-block;
        margin-left: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .toggle-switch {
        margin: 0 1rem;
    }
} 

/* Privacy Policy Page */
.privacy-policy {
    padding: 8rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.privacy-policy .date {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.policy-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

@media (max-width: 768px) {
    .privacy-policy {
        padding: 6rem 1rem;
    }

    .privacy-policy h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
    }
} 

.why-code {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(79, 134, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 150, 119, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-code .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-code h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.why-code .section-subtitle {
    text-align: center;
    color: var(--body-text);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-code-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    padding: 4rem;
    position: relative;
}

.why-code-text {
    max-width: 100%;
}

.why-code h3 {
    color: var(--dark-text);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-code h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .why-code h3::before {
        display: none;
    }
    
    .why-code h3 {
        gap: 0;
    }
}

.why-code p {
    color: var(--body-text);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefits-list li {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(79, 134, 247, 0.1);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 134, 247, 0.08);
    border-color: rgba(79, 134, 247, 0.2);
}

.benefits-list li strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.benefits-list li p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--body-text);
    opacity: 0.85;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(40, 199, 111, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .why-code {
        padding: 5rem 1.5rem;
    }

    .why-code h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .why-code .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .why-code-content {
        padding: 2rem;
        border-radius: 20px;
    }

    .why-code h3 {
        font-size: 1.8rem;
    }

    .why-code p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

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

    .benefits-list li {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .benefits-list li strong {
        font-size: 1.1rem;
    }
} 

.why-code .cta-container {
    text-align: center;
    margin-top: 3rem;
}

.why-code .cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(79, 134, 247, 0.15);
}

.why-code .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(79, 134, 247, 0.2);
}

@media (max-width: 768px) {
    .why-code .cta-container {
        margin-top: 2rem;
    }

    .why-code .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
} 

.contact-options {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.contact-options a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-options a:hover {
    color: var(--accent-color);
}