/* Reset and Base Styles */
:root {
    /* Primary Colors */
    --color-primary: #9ABC05;    /* Green accent */
    --color-primary-dark: #7A9A04; /* Darker shade of primary */
    --color-primary-light: #B4D306; /* Lighter shade of primary */
    
    /* Secondary Colors */
    --color-secondary: #236130;  /* Dark green */
    --color-secondary-dark: #1B4B26; /* Darker shade of secondary */
    --color-secondary-light: #2B773A; /* Lighter shade of secondary */
    
    /* Accent Colors */
    --color-accent: #4E5B3F;     /* Muted green */
    --color-accent-dark: #3E492F; /* Darker shade of accent */
    --color-accent-light: #5E6B4F; /* Lighter shade of accent */
    
    /* Background Colors */
    --color-bg-light: #FFF4C7;   /* Light yellow background */
    --color-bg-white: #FFFFFF;   /* White */
    --color-bg-dark: #F5F5F5;    /* Light gray background */
    
    /* Text Colors */
    --color-text-primary: #236130;   /* Primary text color */
    --color-text-secondary: #4E5B3F; /* Secondary text color */
    --color-text-light: #FFFFFF;     /* Light text color */
    --color-text-muted: #666666;     /* Muted text color */
    
    /* Border Colors */
    --color-border: rgba(35, 97, 48, 0.1);
    --color-border-light: rgba(35, 97, 48, 0.05);
    --color-border-dark: rgba(35, 97, 48, 0.2);
    
    /* Shadow Colors */
    --shadow-color: rgba(35, 97, 48, 0.1);
    --shadow-color-dark: rgba(35, 97, 48, 0.2);
    
    /* Effects */
    --shadow: 0 2px 15px var(--shadow-color);
    --shadow-hover: 0 8px 20px var(--shadow-color-dark);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Century Gothic', 'Gothic A1', 'CenturyGothic', 'AppleGothic', sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--color-bg-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 40px;
    width: auto;
}

.nav-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Mobile Menu Button Animation */
.mobile-menu {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-secondary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu span:nth-child(1) {
    top: 5px;
}

.mobile-menu span:nth-child(2) {
    top: 14px;
}

.mobile-menu span:nth-child(3) {
    top: 23px;
}

.mobile-menu.active span:nth-child(1) {
    top: 14px;
    transform: rotate(135deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu.active span:nth-child(3) {
    top: 14px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    color: var(--color-text-light);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Century Gothic', 'Gothic A1', 'CenturyGothic', 'AppleGothic', sans-serif;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Century Gothic', 'Gothic A1', 'CenturyGothic', 'AppleGothic', sans-serif;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin: 0.5rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-light);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-text-light);
    color: var(--color-text-light);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    font-family: 'Century Gothic', 'Gothic A1', 'CenturyGothic', 'AppleGothic', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

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

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

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

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

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

/* Platforms Section */
.platforms {
    padding: 5rem 0;
    background: var(--color-bg-white);
    position: relative;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(35, 97, 48, 0.2), transparent);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.platform-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.platform-card i {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    color: var(--color-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.platform-card p {
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.platform-features {
    width: 100%;
    margin: 1.5rem 0;
    text-align: left;
}

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

.platform-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--color-text-primary);
    font-size: 1.05rem;
    line-height: 1.4;
}

.platform-features i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--color-primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-features li span {
    flex: 1;
}

.platform-buttons {
    margin-top: auto;
    width: 100%;
}

.platform-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
    opacity: 0.8;
    cursor: pointer;
}

.platform-buttons .btn.disabled {

    cursor: not-allowed;
}

.platform-buttons .btn:hover {
    transform: none;
    box-shadow: none;
}

.trial-note {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Web Version Specific Styles */
.platform-card.web-version {
    background: linear-gradient(135deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
    border: 2px solid var(--color-accent);
}

.platform-card.web-version i {
    color: var(--color-accent);
}

.platform-card.web-version .btn {
    background: var(--color-accent);
    color: var(--color-text-light);
}

.platform-card.web-version .btn:hover {
    background: var(--color-secondary);
}

/* Responsive Design for Platforms */
@media (max-width: 1200px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms {
        padding: 4rem 0;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .platform-card {
        padding: 2rem;
    }

    .platform-card.web-version {
        order: -1;
    }
}

/* Animation for Platform Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.platform-card:nth-child(2) {
    animation-delay: 0.2s;
}

.platform-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.contact-info i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--color-secondary);
    color: var(--color-text-light);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-company {
    margin-bottom: 1.5rem;
}

.footer-company h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-company p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    opacity: 0.8;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(35, 97, 48, 0.2), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-header {
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
    border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1.5rem 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 1.8rem;
    font-weight: 600;
    margin-right: 4px;
    vertical-align: super;
}

.period {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 2.5rem 2rem;
    flex-grow: 1;
}

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

.pricing-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--color-text-primary);
    font-size: 1.05rem;
    line-height: 1.4;
}

.pricing-features i {
    color: var(--color-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.pricing-footer .btn {
    background: var(--color-primary);
    color: var(--color-text-light);
    width: 100%;
    margin: 0;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.pricing-footer .btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Web Version Specific Styles */
.pricing-card.web-version {
    background: linear-gradient(135deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
    border: 2px solid var(--color-accent);
}

.pricing-card.web-version .pricing-header {
    background: var(--color-accent);
    color: var(--color-text-light);
}

.pricing-card.web-version .pricing-header h3 {
    color: var(--color-text-light);
}

.pricing-card.web-version .price {
    color: var(--color-text-light);
}

.pricing-card.web-version .pricing-subtitle {
    color: var(--color-bg-light);
}

.pricing-card.web-version .pricing-features i {
    color: var(--color-accent);
}

.pricing-card.web-version .pricing-footer {
    background: var(--color-bg-white);
    border-top: 1px solid var(--color-accent);
}

.pricing-card.web-version .btn {
    background: var(--color-accent);
    color: var(--color-text-light);
}

.pricing-card.web-version .btn:hover {
    background: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-bg-white);
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .pricing {
        padding: 4rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

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

    .pricing-card.featured::before {
        top: 15px;
        right: -40px;
        padding: 6px 35px;
        font-size: 0.7rem;
    }

    .pricing-header {
        padding: 2rem 1.5rem;
    }

    .pricing-features {
        padding: 2rem 1.5rem;
    }

    .pricing-footer {
        padding: 1.5rem;
    }

    .pricing-card.web-version {
        order: 1;
    }
}

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

.hero-content,
.feature-card,
.platform-card {
    animation: fadeIn 1s ease-out;
}

/* Animation for Pricing Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

.pricing-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: 40px;
    right: -50px;
    background: var(--color-accent);
    color: var(--color-text-light);
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(35, 97, 48, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .coming-soon-badge {
        top: 35px;
        right: -55px;
        padding: 5px 30px;
        font-size: 0.7rem;
    }
}

/* Pricing Note */
.pricing-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.pricing-note p {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-note {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }

    .pricing-note p {
        font-size: 1rem;
    }
}

/* Impressum Section */
.impressum {
    padding: 8rem 0 5rem;
    background: var(--color-bg-white);
}

.impressum-content {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(35, 97, 48, 0.08);
}

.impressum-section {
    margin-bottom: 2.5rem;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.impressum-section h2 {
    color: var(--color-secondary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impressum-section p {
    color: var(--color-text-primary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .impressum {
        padding: 6rem 0 4rem;
    }

    .impressum-content {
        margin: 2rem 1rem 0;
        padding: 2rem;
    }

    .impressum-section h2 {
        font-size: 1.2rem;
    }
}

/* Datenschutz Section */
.datenschutz {
    padding: 8rem 0 5rem;
    background: var(--color-bg-white);
}

.datenschutz-content {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(35, 97, 48, 0.08);
}

.datenschutz-section {
    margin-bottom: 2.5rem;
}

.datenschutz-section:last-child {
    margin-bottom: 0;
}

.datenschutz-section h2 {
    color: var(--color-secondary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.datenschutz-section h3 {
    color: var(--color-secondary);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.datenschutz-section p {
    color: var(--color-text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.datenschutz-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.datenschutz-section ul li {
    color: var(--color-text-primary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.datenschutz-section ul li:before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: -1.5rem;
}

@media (max-width: 768px) {
    .datenschutz {
        padding: 6rem 0 4rem;
    }

    .datenschutz-content {
        margin: 2rem 1rem 0;
        padding: 2rem;
    }

    .datenschutz-section h2 {
        font-size: 1.4rem;
    }

    .datenschutz-section h3 {
        font-size: 1.2rem;
    }
}

.hero-logo {
    max-width: 50em;
    height: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 90%;
    }
}

/* Coming Soon Page Styles */
.coming-soon {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-logo {
    max-width: 200px;
    margin-bottom: 40px;
}

.coming-soon h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.coming-soon .feature {
    flex: 1;
    max-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coming-soon .feature i {
    font-size: 2rem;
    color: #9ABC05;
    margin-bottom: 20px;
}

.coming-soon .feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.coming-soon .feature p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.notify-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.notify-form input[type="email"]:focus {
    outline: none;
    border-color: #9ABC05;
}

.notify-form .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon .feature {
        width: 100%;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form input[type="email"],
    .notify-form .btn {
        width: 100%;
    }
}