html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111827;
    background: linear-gradient(135deg, #eef4ff 0%, #dff7f2 100%);
}

.navbar {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 12px;
    box-sizing: border-box;
}

.navbar-inner {
    width: 100%;
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;

    background: rgba(20, 25, 35, 0.35);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

    box-sizing: border-box;
}

.navbar-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05)
    );

    pointer-events: none;
}

.navbar-inner {
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: 0.25s ease;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #00e5ff;
    border-radius: 2px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #00e5ff;
    text-shadow: 
        0 0 6px rgba(0, 229, 255, 0.8),
        0 0 12px rgba(0, 229, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        padding: 0 12px;
    }

    .navbar-inner {
        min-height: 74px;
        padding: 10px 14px;
        border-radius: 18px;
    }

    .logo img {
        height: 58px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 12px;
        width: 220px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
    }

    .nav-links.active {
        display: flex;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 20px 40px;
    background: url("/static/images/hero.jpg") right 30% / cover no-repeat;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    margin-left: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    margin: 0 0 20px 0;
    font-size: 72px;
    line-height: 1.05;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero p {
    margin: 0 0 30px 0;
    font-size: 26px;
    color: #f3f4f6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 20px;
}

.hero-buttons a {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00a8cc, #00d4ff);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00bcd4, #33e0ff);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
    transform: translateY(-2px);
}

.btn-primary,
.btn-secondary {
    border: none;
    transition: all 0.25s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, #00c853, #00ff9c);
    color: #ffffff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00e676, #33ffc1);
    box-shadow: 0 0 20px rgba(0, 255, 156, 0.7),
                0 0 40px rgba(0, 255, 156, 0.4);
    transform: translateY(-2px);
}

.btn-primary,
.btn-secondary {
    border: none;
    transition: all 0.25s ease;
}

.section-premium {
    background: linear-gradient(135deg, #eef4ff 0%, #dff7f2 100%);
    padding: 80px 20px;
}

.features {
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    background: transparent;
    backdrop-filter: none;
    padding: 30px 20px;
    border-radius: 16px;
    transition: 0.3s ease;
    border: none;
    box-shadow: none;
}

.feature h3 {
    margin-top: 10px;
}

.feature p {
    margin-top: 6px;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.feature h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #111827;
}

.feature p {
    margin: 0;
    color: #6b7280;
}

.services {
    padding: 80px 20px;
    text-align: center;
    background: transparent;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.service {
    background: transparent;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: none;
}

.service:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.service video {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    display: block;
    margin: 10px auto;
    background: transparent;
}

.service h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #111827;
}

.service p {
    margin: 0;
    color: #6b7280;
}

.portfolio-section {
    background: transparent;
    padding: 80px 20px;
}

.portfolio-section h2 {
    color: #111827;
}

.portfolio-section p {
    color: #4b5563;
}

.portfolio-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.portfolio-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card .card-body {
    text-align: center;
    padding: 20px;
}

.portfolio-card .card-title {
    margin-bottom: 0;
    font-weight: 700;
    color: #111827;
}

.cta {
    padding: 100px 20px;
    text-align: center;
    background: transparent;
}

.cta h2 {
    margin: 0 0 16px 0;
    font-size: 42px;
    color: #111827;
}

.cta p {
    margin: 0 0 30px 0;
    font-size: 20px;
    color: #4b5563;
}

.footer {
    background: #111827;
    color: #ffffff;
    padding: 20px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left h3 {
    margin: 0 0 10px 0;
}

.footer-left p {
    margin: 0;
    color: #9ca3af;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: #ffffff;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-content {
        margin-left: 30px;
        max-width: 560px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 21px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 12px;
        width: calc(100% - 24px);
        padding: 12px 18px;
        border-radius: 14px;
    }

    .logo img {
        height: 52px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        width: 220px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px;
        background: rgba(0, 0, 0, 0.92);
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        justify-content: center;
        padding: 120px 20px 50px;
        background: url("/static/images/hero-mobile.jpg") center center / cover no-repeat;
        text-align: center;
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.58);
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
        align-items: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-img-wrapper {
        height: 220px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }

    .features h2,
    .services h2,
    .cta h2 {
        font-size: 30px;
    }

    .portfolio-img-wrapper {
        height: 200px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
    }
}

.quick-form-section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.btn-primary {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.lead-section {
    padding: 70px 20px 40px;
}

.lead-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.lead-image {
    position: relative;
    flex: 1.2;
    min-height: 620px;
}

.lead-image img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lead-logo {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 220px;
    height: auto;
    background: rgba(255,255,255,0.88);
    padding: 10px 14px;
    border-radius: 14px;
}

.lead-form {
    flex: 0.9;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    padding: 38px 34px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-form h3 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 28px;
    font-weight: 700;
}

.lead-form form input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 17px;
    outline: none;
}

.lead-form form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
    transition: 0.3s ease;
}

.lead-form form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.lead-whatsapp {
    margin-top: 18px;
    color: #dbeafe;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lead-whatsapp i {
    color: #25D366;
    font-size: 24px;
}

@media (max-width: 992px) {
    .lead-wrapper {
        flex-direction: column;
    }

    .lead-image {
        min-height: 360px;
    }

    .lead-logo {
        width: 170px;
    }

    .lead-form h3 {
        font-size: 32px;
    }
}

.whatsapp-hint {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.lead-section {
    padding: 70px 20px 40px;
}

.lead-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.lead-reviews h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.reviews-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}

.reviews-google {
    margin-bottom: 24px;
}

.google-word {
    font-size: 34px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
}

.reviews-stars {
    color: #fbbc05;
    font-size: 20px;
    font-weight: 700;
}

.reviews-stars span {
    color: #111827;
    margin-left: 8px;
}

.review-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.review-item img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.review-item h4 {
    margin: 0 0 6px 0;
    font-size: 22px;
    color: #111827;
}

.review-item p {
    margin: 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.5;
}

.review-team-image {
    margin-top: 22px;
    border-radius: 18px;
    overflow: hidden;
}

.review-team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.small-form {
    background: linear-gradient(135deg, #0f2f86, #1d4ed8);
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.small-form h3 {
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 700;
}

.small-form form input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 17px;
    outline: none;
}

.small-form form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
}

.lead-whatsapp {
    margin-top: 16px;
    color: #dbeafe;
    text-decoration: none;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lead-whatsapp i {
    color: #25D366;
    font-size: 22px;
}

@media (max-width: 992px) {
    .lead-wrapper {
        grid-template-columns: 1fr;
    }

    .lead-reviews h2 {
        font-size: 30px;
    }

    .small-form h3 {
        font-size: 28px;
    }

    .review-team-image img {
        height: 240px;
    }
}

.service h3 {
    margin-top: 10px;
}

.service p {
    padding: 0 10px 20px;
}

.service:hover h3 {
    transform: translateY(-2px);
    transition: 0.2s;
}

.service:hover p {
    transform: translateY(-2px);
    transition: 0.2s;
}



.reviews-card {
    max-height: 400px;
    overflow-y: auto;
}

.reviews-slider {
    overflow: hidden;
    height: 260px;
    position: relative;
}

.reviews-track {
    display: flex;
    flex-direction: column;
    animation: scrollReviews 90s linear infinite;
}

.review-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

@keyframes scrollReviews {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.portfolio-slider {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 18px;
}

.portfolio-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.portfolio-slide.active {
    opacity: 1;
    z-index: 1;
}

.portfolio-slide.active {
    opacity: 1;
}

.impressum-page {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-page {
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: 70vh;
}

.legal-card {
    max-width: 900px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.seo-text {
    padding: 60px 0;
    text-align: center;
}

.seo-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.seo-text p {
    max-width: 800px;
    margin: 0 auto 15px;
    color: #555;
}

.footer-bottom {
    padding-top: 4px;
    font-size: 12px;
    border-top: 1px solid rgb(255, 255, 255);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social a {
    font-size: 24px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00c6ff;
    transform: translateY(-2px);
}

.whatsapp-btn {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    background: #25D366;
    color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    transition: color 0.3s ease;
}

/* animatia alba */
.whatsapp-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #ffffff;
    z-index: -1;
    transition: height 0.3s ease;
}

/* hover */
.whatsapp-btn:hover::before {
    height: 100%;
}

.whatsapp-btn:hover {
    color: #25D366;
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.promo-section {
    padding: 80px 20px;
    text-align: center;
}

.promo-section h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.promo-subtitle {
    color: #555;
    margin-bottom: 40px;
}

.promo-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.promo-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 320px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.promo-card h3 {
    margin-bottom: 10px;
}

.promo-card p {
    font-size: 14px;
    color: #555;
}

.promo-discount {
    font-size: 28px;
    font-weight: bold;
    color: #00c6ff;
    margin: 15px 0;
}

.promo-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.promo-btn:hover {
    opacity: 0.85;
}

.promo-expire {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.promo-timer {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: red;
}