/* CSS Variables */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-accent: #90EE90; /* Sehr helles Grün */
    --color-accent-dark: #7CC87C;
    --color-gray: #1a1a1a;
    --color-gray-light: #f5f5f5;
    --font-primary: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-tap-highlight-color: transparent;
}

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

/* Navigation */
.navbar {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
}

.golden-plus {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 20%, #FFED4E 40%, #FFD700 60%, #D4AF37 80%, #FFD700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.6) 100%),
                url('hero.png') center center / cover no-repeat;
    color: var(--color-white);
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-link, .btn-white {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 238, 144, 0.3);
}

.angebot-card .btn-primary,
.angebot-card .btn-secondary {
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    margin-top: 1rem;
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 238, 144, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-link {
    background: none;
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    text-decoration: underline;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-white:hover {
    background-color: var(--color-gray-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Roadmap Section */
.roadmap {
    background-color: var(--color-white);
    padding: 3rem 0;
}

.roadmap-container {
    max-width: 900px;
    margin: 1rem auto 0;
    position: relative;
}

.roadmap-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.step-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
}

.roadmap-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 0.5rem);
    background-color: var(--color-accent);
    opacity: 0.3;
}

.roadmap-step:last-child::after {
    display: none;
}

/* Angebote Section */
.angebote {
    background-color: var(--color-gray-light);
}

.angebote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.angebot-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.angebot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(144, 238, 144, 0.2);
    border-color: var(--color-accent);
}

.angebot-card.featured {
    border: 3px solid var(--color-accent);
    position: relative;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(144, 238, 144, 0.05) 100%);
}

.angebot-card.featured:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(144, 238, 144, 0.3);
}

.angebot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gray-light);
}

.angebot-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
}

.badge {
    background-color: var(--color-accent);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-badge {
    background-color: var(--color-black);
    color: var(--color-accent);
}

.angebot-options {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.option-card {
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.option-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.price-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 2px 4px rgba(144, 238, 144, 0.2);
}

.price-period {
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
}

.price-one-time {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.price-hosting {
    margin-bottom: 1.5rem;
    color: #666;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--color-black);
    font-weight: 500;
}

.email-addon {
    background-color: var(--color-gray-light);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: var(--color-black);
}

/* Portfolio Section */
.portfolio {
    background-color: var(--color-white);
}

.portfolio-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .portfolio-carousel-wrapper {
        overflow: visible !important;
    }
}

.portfolio-carousel {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

@media (max-width: 768px) {
    .portfolio-carousel {
        overflow: visible !important;
    }
}

.portfolio-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.portfolio-item {
    background-color: var(--color-gray-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    width: calc((100% - 96px - 4rem) / 2);
    max-width: 480px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
    background-color: var(--color-accent);
    color: var(--color-black);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--color-accent-dark);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.portfolio-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.portfolio-info p {
    color: #666;
    line-height: 1.6;
}

/* Termin Section */
.termin {
    text-align: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-black);
}

.termin .section-title,
.termin .section-subtitle {
    color: var(--color-black);
}

.termin-note {
    font-size: 1rem;
    color: var(--color-black);
    font-weight: 500;
    margin: 1rem 0 2rem;
    opacity: 0.9;
}

/* Abo starten Section */
.abo-starten {
    background-color: var(--color-black);
    color: var(--color-white);
}

.abo-starten .section-title {
    color: var(--color-white);
}

.abo-starten .section-subtitle {
    color: var(--color-white);
    opacity: 0.9;
}

.abo-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-abo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 2rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-abo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    background-color: var(--color-accent);
}

.btn-abo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.btn-abo-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.btn-abo:hover .btn-abo-price {
    color: var(--color-black);
}

.btn-abo-desc {
    font-size: 0.875rem;
    color: #666;
}

/* CEO Section */
.ceo-section {
    background-color: var(--color-gray-light);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.ceo-image {
    text-align: center;
}

.ceo-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.image-placeholder {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.ceo-text {
    padding: 2rem;
}

.ceo-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-black);
}

/* CEO Section 2 */
.ceo-section-2 {
    background-color: var(--color-white);
}

.ceo-content-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ceo-image-2 {
    text-align: center;
}

.ceo-image-2 img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.ceo-name {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.ceo-text-2 {
    padding: 2rem;
}

.ceo-text-2 p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-black);
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-section .btn-secondary {
    width: 100%;
    max-width: 250px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-white);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--color-black);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-black);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.honeypot {
    display: none;
}

.hidden {
    display: none;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        height: 40px;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

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

    .roadmap-container {
        padding: 0 1rem;
    }

    .roadmap-step {
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .roadmap-step::after {
        left: 25px;
        top: 50px;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .angebote-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .angebot-card {
        padding: 1.5rem;
    }

    .angebot-header h3 {
        font-size: 1.5rem;
    }

    .price-main {
        font-size: 2.5rem;
    }

    .angebot-options {
        flex-direction: column;
    }

    .portfolio-item {
        width: 85vw !important;
        max-width: 500px !important;
        display: flex !important;
        flex-direction: column !important;
        background-color: var(--color-white) !important;
        border-radius: 16px;
        overflow: visible !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        min-height: 400px !important;
    }

    .portfolio-carousel-wrapper {
        position: relative;
        padding: 0 1rem;
        overflow: visible !important;
    }

    .portfolio-carousel {
        overflow: visible !important;
    }

    .portfolio-track {
        overflow: visible !important;
        gap: 1.5rem !important;
    }

    .portfolio-image {
        width: 100% !important;
        height: 200px !important; /* Etwas kleiner für Mobile */
        background-color: #f0f0f0 !important; /* Leichtes Grau als Platzhalter, falls Bild lädt */
        overflow: hidden !important;
        display: block !important;
        padding: 0 !important;
    }

    .portfolio-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Füllt den Bereich komplett aus */
        display: block !important;
        max-width: none !important;
        max-height: none !important;
    }

    .portfolio-info {
        padding: 1.5rem !important;
        background-color: var(--color-white) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .portfolio-info h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
        white-space: normal !important; /* Erzwingt Umbruch */
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    .portfolio-info p {
        font-size: 1rem !important;
        white-space: normal !important; /* Erzwingt Umbruch */
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        width: 44px;
        height: 44px;
    }

    .carousel-btn-left {
        left: 5px;
    }

    .carousel-btn-right {
        right: 5px;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .ceo-image img {
        max-width: 250px;
    }

    .ceo-text {
        padding: 1.5rem;
    }

    .ceo-text p {
        font-size: 1rem;
    }

    .ceo-content-2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .ceo-content-2 .ceo-image-2 {
        order: -1;
    }

    .ceo-image-2 img {
        max-width: 250px;
    }

    .ceo-text-2 {
        padding: 1.5rem;
    }

    .ceo-text-2 p {
        font-size: 1rem;
    }

    .abo-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .btn-abo {
        width: 100%;
        max-width: none;
        padding: 1.5rem 2rem;
    }

    .btn-abo-title {
        font-size: 1.25rem;
    }

    .btn-abo-price {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section .btn-secondary {
        max-width: none;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-logo {
        height: 36px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 0.9375rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .angebot-card {
        padding: 1.25rem;
    }

    .angebot-header h3 {
        font-size: 1.25rem;
    }

    .price-main {
        font-size: 2rem;
    }

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

    .roadmap-step {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .roadmap-step::after {
        left: 22.5px;
        top: 45px;
    }

    .step-content h3 {
        font-size: 1.125rem;
    }

    .step-content p {
        font-size: 0.9375rem;
    }

    .portfolio-item {
        width: 85vw !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        background-color: var(--color-white) !important;
        border-radius: 16px;
        overflow: visible !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        min-height: 350px !important;
    }

    .portfolio-carousel-wrapper {
        overflow: visible !important;
    }

    .portfolio-carousel {
        overflow: visible !important;
    }

    .portfolio-track {
        overflow: visible !important;
        gap: 1.5rem !important;
    }

    .portfolio-image {
        width: 100% !important;
        height: 180px !important;
        background-color: #f0f0f0 !important;
        overflow: hidden !important;
        display: block !important;
        padding: 0 !important;
    }

    .portfolio-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .portfolio-info {
        padding: 1.25rem !important;
        background-color: var(--color-white) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .portfolio-info h3 {
        font-size: 1.125rem !important;
        margin-bottom: 0.5rem !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    .portfolio-info p {
        font-size: 0.9375rem !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .ceo-image img,
    .ceo-image-2 img {
        max-width: 200px;
    }

    .ceo-text,
    .ceo-text-2 {
        padding: 1rem;
    }

    .ceo-text p,
    .ceo-text-2 p {
        font-size: 0.9375rem;
    }

    .btn-abo {
        padding: 1.25rem 1.5rem;
    }

    .btn-abo-title {
        font-size: 1.125rem;
    }

    .btn-abo-price {
        font-size: 1.5rem;
    }

    .btn-abo-desc {
        font-size: 0.8125rem;
    }

    .modal-content {
        padding: 1.25rem;
        margin: 5% auto;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

