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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #111827;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-content {
    background: #374151;
    padding: 2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #ec4899;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.hidden {
    display: none !important;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    animation: particle-float 6s linear infinite;
}

/* Navigation */
.navbar {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #374151;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.logo-icon i {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: #d1d5db;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f472b6;
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
    background: #374151;
    border-top: 1px solid #4b5563;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #f472b6;
}

.mobile-cta {
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    box-shadow: 0 4px 6px rgba(236, 72, 153, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: #f472b6;
    border: 1px solid #ec4899;
}

.btn-outline:hover {
    background: rgba(236, 72, 153, 0.1);
    color: #f9a8d4;
    border-color: #f472b6;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-text,
.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.2);
    color: #f9a8d4;
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-left {
    animation: slide-in-from-left 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-x 3s ease infinite;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fade-in 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fade-in 1s ease-out 0.4s both;
}

.hero-right {
    animation: slide-in-from-right 1s ease-out;
}

.hero-card {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: float-subtle 4s ease-in-out infinite;
}

.hero-card-content {
    text-align: center;
}

.hero-logo {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25);
    animation: spin-slow 10s linear infinite;
}

.hero-logo i {
    color: white;
    width: 3rem;
    height: 3rem;
}

.typewriter-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #ec4899;
    animation: typewriter 2s steps(3, end) forwards, blink-caret 0.75s step-end infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    animation: fade-in 1s ease-out 0.6s both;
}

.hero-info {
    background: rgba(75, 85, 99, 0.5);
    border: 1px solid #6b7280;
    border-radius: 0.5rem;
    padding: 1rem;
    animation: fade-in 1s ease-out 0.8s both;
}

.hero-info-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #f9a8d4;
    margin-bottom: 0.5rem;
}

.hero-info-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: rgba(55, 65, 81, 0.5);
}

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

.service-card {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(236, 72, 153, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25);
    transition: transform 0.3s ease;
    animation: pulse-subtle 4s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    color: white;
    width: 2rem;
    height: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.service-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features i {
    color: #f472b6;
    width: 1rem;
    height: 1rem;
    animation: bounce-subtle 2s ease-in-out infinite;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: rgba(17, 24, 39, 0.5);
}

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

.about-left {
    opacity: 0;
    transform: translateX(-20px);
}

.about-left.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-out;
}

.about-left h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-left p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-left strong {
    color: #f472b6;
}

.about-quote {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-quote h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-quote p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.about-right {
    opacity: 0;
    transform: translateX(20px);
}

.about-right.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-out;
}

.about-card {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: float-subtle 4s ease-in-out infinite;
}

.about-avatar {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25);
    animation: spin-slow 10s linear infinite;
}

.about-avatar span {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.about-role {
    font-size: 1.125rem;
    color: #f472b6;
    margin-bottom: 1rem;
}

.about-company {
    color: #d1d5db;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: rgba(55, 65, 81, 0.5);
}

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

.testimonial-card {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(236, 72, 153, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    color: #fbbf24;
    width: 1.25rem;
    height: 1.25rem;
    animation: pulse-subtle 4s ease-in-out infinite;
}

.testimonial-text {
    color: #d1d5db;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
    animation: float-subtle 4s ease-in-out infinite;
}

.author-name {
    font-weight: 600;
    color: white;
    margin: 0;
}

.author-role {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: rgba(17, 24, 39, 0.5);
}

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

.contact-form-container {
    opacity: 0;
    transform: translateX(-20px);
}

.contact-form-container.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-out;
}

.contact-form-card {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #d1d5db;
}

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

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(75, 85, 99, 0.5);
    border: 1px solid #6b7280;
    border-radius: 0.375rem;
    padding: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

.contact-info {
    opacity: 0;
    transform: translateX(20px);
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-out 0.2s;
}

.contact-info-card {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: #f472b6;
    width: 1.5rem;
    height: 1.5rem;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.contact-item h4 {
    font-weight: 600;
    color: white;
    margin: 0 0 0.25rem 0;
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f472b6;
}

.contact-item p {
    color: #d1d5db;
    margin: 0;
}

.contact-benefits {
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25);
}

.contact-benefits h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    margin-bottom: 0.75rem;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list i {
    color: rgba(255, 255, 255, 0.8);
    width: 1.25rem;
    height: 1.25rem;
    animation: bounce-subtle 2s ease-in-out infinite;
}

/* Footer */
.footer {
    background: #111827;
    border-top: 1px solid #4b5563;
    padding: 3rem 0 1.5rem;
}

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

.footer-brand {
    opacity: 0;
    animation: fade-in 1s ease-out 0.6s both;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    animation: float-subtle 4s ease-in-out infinite;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-contact h4,
.footer-services h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-contact-info p,
.footer-services-list p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-contact-info a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #f472b6;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }
    50% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.8); }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

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

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

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes gradient-x {
    0%, 100% {
        background-size: 200% 200%;
        background-position: left center;
    }
    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ec4899; }
}

@keyframes slide-in-from-left {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-from-right {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn button {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu.show {
        display: block;
        animation: slide-in-from-top 0.3s ease-out;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes slide-in-from-top {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== WTL Update: Logo, Dropdown, SEO-Unterseiten ===== */
.nav-brand { text-decoration: none; }
.brand-logo { height: 3.25rem; width: auto; display: block; }
.footer-brand-logo { width: 190px; max-width: 100%; height: auto; margin-bottom: 1rem; }
.hero-logo-img { width: 220px; max-width: 100%; height: auto; margin: 0 auto 1.25rem; display: block; filter: drop-shadow(0 18px 35px rgba(0,0,0,.35)); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: .25rem; }
.nav-dropdown > .nav-link i { width: 15px; height: 15px; }
.dropdown-menu { position: absolute; top: calc(100% + .65rem); left: 0; min-width: 260px; background: rgba(17, 24, 39, .98); border: 1px solid #4b5563; border-radius: .9rem; padding: .55rem; box-shadow: 0 25px 50px rgba(0,0,0,.35); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: block; padding: .7rem .85rem; color: #d1d5db; text-decoration: none; border-radius: .65rem; font-size: .9rem; }
.dropdown-link:hover { color: #fff; background: rgba(236, 72, 153, .14); }
.mobile-submenu { display: grid; gap: .2rem; margin: -.25rem 0 .5rem .75rem; padding-left: .75rem; border-left: 1px solid #4b5563; }
.mobile-sub-link { color: #d1d5db; text-decoration: none; padding: .45rem .6rem; border-radius: .5rem; font-size: .92rem; }
.mobile-sub-link:hover { color: #f472b6; background: rgba(236,72,153,.10); }

.service-card-link { color: inherit; text-decoration: none; display: block; }
.text-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; color: #f9a8d4; font-weight: 700; }
.text-link i { width: 16px; height: 16px; }
.seo-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.seo-teaser { background: rgba(55, 65, 81, .8); border: 1px solid #4b5563; border-radius: 1rem; padding: 1.5rem; }
.seo-teaser h3 { color: #fff; margin-bottom: .5rem; }
.seo-teaser p { color: #d1d5db; }

.subpage-hero { padding: 8rem 0 4.5rem; background: radial-gradient(circle at top left, rgba(236,72,153,.22), transparent 34%), linear-gradient(135deg, #111827 0%, #1f2937 100%); position: relative; z-index: 2; }
.subpage-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 2rem; align-items: center; }
.eyebrow { color: #f9a8d4; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; margin-bottom: .75rem; }
.subpage-hero h1 { font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 1.25rem; }
.subpage-hero p { color: #d1d5db; font-size: 1.15rem; max-width: 760px; }
.subpage-icon-card { background: rgba(55,65,81,.82); border: 1px solid #4b5563; border-radius: 1.25rem; padding: 2rem; text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,.22); }
.subpage-icon-card > i { width: 4.5rem; height: 4.5rem; color: #f472b6; margin-bottom: 1rem; }
.subpage-icon-card h2 { margin-bottom: .65rem; }
.content-section { padding: 4.5rem 0; background: #111827; position: relative; z-index: 2; }
.container.narrow { max-width: 900px; }
.content-section h2 { font-size: 2rem; margin: 2rem 0 .85rem; }
.content-section h2:first-child { margin-top: 0; }
.content-section p { color: #d1d5db; font-size: 1.08rem; margin-bottom: 1rem; }
.content-section a { color: #f9a8d4; }
.feature-box, .cta-panel { background: rgba(55,65,81,.75); border: 1px solid #4b5563; border-radius: 1rem; padding: 1.5rem; margin: 1.5rem 0; }
.cta-panel { background: linear-gradient(135deg, rgba(236,72,153,.18), rgba(55,65,81,.85)); }
.related-links { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid #374151; display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.related-links h3 { width: 100%; }
.related-links a { text-decoration: none; padding: .55rem .8rem; border: 1px solid #4b5563; border-radius: 999px; color: #d1d5db; }
.related-links a:hover { border-color: rgba(236,72,153,.65); color: #fff; }
.legal-page p { color: #e5e7eb; }

.footer-content-4 { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.link-list, .social-list { display: grid; gap: .45rem; }
.link-list a, .social-list a, .legal-links a { color: #d1d5db; text-decoration: none; }
.link-list a:hover, .social-list a:hover, .legal-links a:hover { color: #f9a8d4; }
.social-list a { display: inline-flex; align-items: center; gap: .45rem; }
.social-list i { width: 17px; height: 17px; color: #f472b6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.legal-links { display: inline-flex; gap: 1rem; flex-wrap: wrap; }
.whatsapp-note { margin: 1rem 0; padding: 1rem; border: 1px solid rgba(34,197,94,.35); background: rgba(34,197,94,.08); color: #d1d5db; border-radius: .75rem; font-size: .95rem; }
.btn-whatsapp { background: linear-gradient(135deg, #22c55e, #15803d); color: white; border: 0; }
.btn-whatsapp:hover { box-shadow: 0 15px 30px rgba(34,197,94,.2); transform: translateY(-2px); }

@media (max-width: 900px) { .seo-teaser-grid, .subpage-hero-grid, .footer-content-4 { grid-template-columns: 1fr; } .brand-logo { height: 2.75rem; } .footer-bottom { justify-content: center; text-align: center; } }

/* ===== WTL Update: Social Icons, Legal Modal, Review Marquee ===== */
.social-icon {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .02em;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.legal-modal.is-open {
    display: flex;
}

.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, .78);
    backdrop-filter: blur(6px);
}

.legal-modal-dialog {
    position: relative;
    width: min(1100px, 96vw);
    height: min(820px, 90vh);
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 46%, #111827 100%);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.legal-modal-head {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.legal-modal-head h2 {
    margin: 0 2.5rem .25rem 0;
    color: #fff;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-modal-head p {
    margin: 0;
    color: #dbeafe;
    font-size: .95rem;
}

.legal-modal-close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, .72);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.legal-modal iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

body.legal-modal-open {
    overflow: hidden;
}

.review-marquee {
    overflow: hidden;
    position: relative;
    margin: 2rem 0 1rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: review-marquee 32s linear infinite;
}

.review-marquee:hover .review-track {
    animation-play-state: paused;
}

.review-card {
    width: min(360px, 82vw);
    min-height: 190px;
    padding: 1.35rem;
    border-radius: 1rem;
    background: rgba(55,65,81,.82);
    border: 1px solid #4b5563;
    box-shadow: 0 20px 45px rgba(0,0,0,.24);
}

.review-stars {
    color: #fbbf24;
    letter-spacing: .08em;
    margin-bottom: .85rem;
}

.review-card p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-card span,
.review-note {
    color: #d1d5db;
    font-size: .9rem;
}

.review-note {
    margin-bottom: 2rem;
}

@keyframes review-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - .5rem)); }
}

@media (max-width: 640px) {
    .legal-modal { padding: .5rem; }
    .legal-modal-dialog { height: 92vh; border-radius: .95rem; }
    .legal-modal-head { padding: 1rem; }
}
