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

:root {
    /* Colors */
    --primary: hsl(158, 56%, 40%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(158, 56%, 92%);
    --primary-dark: hsl(158, 56%, 30%);
    
    --secondary: hsl(158, 30%, 95%);
    --secondary-foreground: hsl(158, 56%, 25%);
    
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222.2, 84%, 4.9%);
    
    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    
    --accent: hsl(158, 56%, 50%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(210, 40%, 98%);
    
    --border: hsl(214.3, 31.8%, 91.4%);
    --input: hsl(214.3, 31.8%, 91.4%);
    --ring: hsl(158, 56%, 40%);
    
    /* Spacing */
    --radius: 0.75rem;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -2px hsl(158 56% 40% / 0.1);
    --shadow-medium: 0 10px 40px -4px hsl(158 56% 40% / 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 3rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

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

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    height: 5rem;
    align-items: center;
    justify-content: space-between;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.nav-brand a:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.nav-brand .logo {
    height: 4rem;
    width: auto;
}

/* Reduce logo size on tablet and mobile to prevent horizontal scroll */
@media (max-width: 1024px) {
    .nav-brand .logo {
        height: 2.4rem; /* 40% smaller */
        width: auto;
    }
}

@media (max-width: 768px) {
    .nav-brand .logo {
        height: 2.4rem; /* 40% smaller */
        width: auto;
    }
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

.nav-cta-text {
    display: none;
}

.nav-cta.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.nav-cta.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

@media (min-width: 640px) {
    .nav-cta-text {
        display: inline;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 1.875rem; /* 50px smaller than desktop (30px instead of 80px) */
        padding-bottom: 5rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile: Image first, 1:2 aspect ratio, 40% Y positioning */
@media (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1; /* Move image to top */
    }
    
    .hero-image img {
        width: 100%;
        height: 50vw; /* 1:2 aspect ratio (width:height = 2:1) */
        object-fit: cover;
        object-position: center 40%; /* 40% from top */
        border-radius: 1rem;
        box-shadow: var(--shadow-medium);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.hero-offer {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-dark);
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.hero-offer-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-offer-badge .icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    display: inline-block;
    flex-shrink: 0;
}

.hero-offer-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff !important;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 0;
}

.hero-offer-text strong {
    font-weight: 800;
    font-size: 1.35rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-offer-text {
        font-size: 1.5rem;
    }
    
    .hero-offer-text strong {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .hero-offer {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .hero-offer-text {
        font-size: 1.1rem;
    }
    
    .hero-offer-text strong {
        font-size: 1.2rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-number svg {
    width: 1.875rem;
    height: 1.875rem;
    color: var(--primary);
    display: inline-block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stat-address {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.stat-address:hover {
    color: var(--primary);
    text-decoration: underline;
}

.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: scale(1.02);
}

@media (max-width: 1023px) {
    .hero-stats {
        margin-top: 0;
        border-top: none;
        background: transparent;
        padding: 1rem 0 0 0;
        box-shadow: none;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    margin-bottom: 0;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .services .services-grid,
    #servicii .services-grid,
    section.services .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.service-card {
    background-color: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: none;
}

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

.service-image {
    height: 16rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

.service-description {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-benefit {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.service-price-btn {
    margin-top: 1rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Payment Options Section */
.payment-options {
    padding: 4rem 0;
    background-color: var(--muted);
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.payment-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.payment-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.payment-text p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payment-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .payment-content {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-benefits {
        justify-content: center;
    }
}

.services-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Promo Section */
.promo {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('assets/stomatolog-dentist-ovidiu-constanta-7.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

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

.promo-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

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

.promo-text-small {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.promo-price {
    color: var(--accent);
    font-size: 3rem;
    font-weight: 800;
}

.promo-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.promo-old-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 0.5rem;
}

.promo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.promo-services {
    margin: 2rem 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.promo-services h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}

.promo-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-services li {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.promo-note {
    font-size: 0.875rem;
    opacity: 0.9;
    font-style: italic;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .promo {
        padding: 3rem 0;
        background-attachment: scroll;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-text-small {
        font-size: 1.2rem;
    }
    
    .promo-price {
        font-size: 2.5rem;
    }
    
    .promo-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Team Section */
.team-section {
    margin: 3rem 0;
    text-align: center;
}

.team-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground);
}

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

.team-member {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.team-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-education {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
    text-align: center;
}

.map-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

.additional-services {
    display: grid;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--primary-light);
    border-radius: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .additional-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.additional-service h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.additional-service p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--background);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--card);
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
    padding: 1.5rem;
}

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

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    line-height: 1.7;
    margin-bottom: 0;
}

.trust-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-light);
    border-radius: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

.trust-message h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.trust-message p {
    margin-bottom: 0;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.experience-grid {
    display: grid;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.experience-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.experience-text {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 100%;
}

.experience-text .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.experience-text .section-description {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: space-between;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-steps h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.checkup-notice {
    padding: 1.5rem;
    background-color: var(--primary-light);
    border-radius: 0.75rem;
}

.checkup-title {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.checkup-description {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--background);
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: var(--muted);
}

.faq-icon {
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--card);
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-cta {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .contact-cta {
        padding: 3rem;
    }
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-cta h3 {
        font-size: 2rem;
    }
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary-foreground);
    flex-shrink: 0;
}

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

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

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

.footer-services ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-services li,
.footer-contact li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-hours {
    padding-top: 0.5rem;
}

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

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

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.web-design-credit {
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem !important;
    opacity: 0.8;
}

.web-design-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
}

.web-design-credit a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Services Page Specific Styles */
.services-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-light) 100%);
}

.services-hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.services-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .services-hero-title {
        font-size: 3rem;
    }
}

.services-hero-description {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.services-pricing {
    padding: 4rem 0;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--muted);
    margin-top: 3rem;
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background-color: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.pricing-header {
    background-color: var(--primary-light);
    padding: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.pricing-content {
    padding: 1.5rem;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item-content {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
}

.pricing-check {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-item-content span {
    font-size: 0.875rem;
}

.pricing-price {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.pricing-notice {
    max-width: 48rem;
    margin: 0 auto 4rem;
    padding: 1.5rem;
    background-color: var(--primary-light);
    border-radius: 0.5rem;
}

.pricing-notice h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-notice ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-notice li {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.booking-section {
    max-width: 64rem;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .booking-header h2 {
        font-size: 2.5rem;
    }
}

.booking-header p {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.booking-widget {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

.booking-header-widget {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.booking-icon {
    color: var(--primary);
}

.booking-header-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

.booking-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.date-selection label,
.time-selection label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.date-btn,
.time-btn {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    text-align: center;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    background: none;
    cursor: pointer;
}

.date-btn:hover,
.time-btn:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.date-btn.selected,
.time-btn.selected {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.booking-confirmation {
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 0.5rem;
}

.confirmation-text {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.confirmation-note {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.whatsapp-btn {
    width: 100%;
    gap: 0.5rem;
}

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

.contact-alternatives p {
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--background);
        border-top: 1px solid var(--border);
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateY(-100%);
        opacity: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        display: flex;
    }

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

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

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

    .additional-services {
        grid-template-columns: 1fr;
    }

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

    .date-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus,
.date-btn:focus,
.time-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .booking-section {
        display: none;
    }
    
    .hero,
    .services,
    .why-choose-us,
    .experience,
    .faq,
    .contact {
        padding: 1rem 0;
    }
}

/* Privacy Policy Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.page-updated {
    font-size: 0.875rem;
    opacity: 0.8;
    font-style: italic;
}

.policy-content {
    padding: 4rem 0;
    background-color: var(--background);
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.policy-main {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.5rem 0 0.75rem 0;
}

.policy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.25rem 0 0.5rem 0;
}

.policy-section p {
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

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

.policy-section li {
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--muted);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.policy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-small);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card li {
    margin-bottom: 0.75rem;
}

.sidebar-card a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

.cookie-status {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.cookie-item:last-child {
    border-bottom: none;
}

.cookie-name {
    font-weight: 500;
    color: var(--foreground);
}

.cookie-status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-status-badge.active {
    background-color: var(--success-light);
    color: var(--success);
}

@media (max-width: 1024px) {
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .policy-main {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
}

/* Footer Sitemap and Keywords Styles */
.footer-sitemap h4,
.footer-keywords h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 1rem;
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-sitemap a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-sitemap a:hover {
    color: var(--background);
    text-decoration: underline;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.keyword-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--background);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.keyword-tag:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .footer-sitemap,
    .footer-keywords {
        margin-top: 1rem;
    }
}

/* Contact CTA Button Styling */
.contact-cta .btn:not(:last-child) {
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .contact-cta .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
    
    .contact-cta .btn:last-child {
        margin-bottom: 0;
    }
}

/* Landing Pages Styles */
.landing-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
    padding: 4rem 0;
    min-height: auto;
}

.landing-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.landing-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.landing-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--foreground);
}

.landing-hero-title .highlight {
    color: var(--primary);
}

.landing-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: -0.5rem;
}

.landing-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.landing-offer-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-dark);
    margin: 1rem 0;
}

.landing-offer-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.landing-offer-content {
    color: white;
}

.landing-offer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.landing-offer-content p {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: white;
}

.landing-offer-content strong {
    font-size: 1.75rem;
    font-weight: 800;
}

.landing-offer-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.landing-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-landing {
    min-width: 220px;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-landing:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-landing.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-landing.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-landing.btn-outline {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: 3px solid var(--primary);
    font-weight: 700;
}

.btn-landing.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-landing .icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.btn-landing .icon[fill] {
    fill: currentColor;
}

.btn-landing.btn-outline .icon {
    fill: currentColor;
}

.landing-hero-image {
    position: relative;
}

.landing-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block;
}

/* Problem Section */
.landing-problem {
    padding: 4rem 0;
    background-color: var(--background);
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.problem-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Solution Section */
.landing-solution {
    padding: 4rem 0;
    background-color: var(--secondary);
}

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

.solution-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.solution-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.solution-content {
    padding: 1.5rem;
}

.solution-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.solution-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Before/After Section */
.landing-before-after {
    padding: 4rem 0;
    background-color: var(--background);
}

.before-after-single {
    max-width: 1000px;
    margin: 2rem auto 0;
}

.before-after-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

.before-after-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 600px;
    max-width: 100%;
}

.before-after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    pointer-events: none;
}

.before-after-label {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.before-after-label.after {
    background: var(--primary);
    background: rgba(20, 184, 166, 0.9);
}

.before-after-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-item {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

.comparison-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.comparison-item:first-child h3 {
    color: var(--muted-foreground);
}

.comparison-item:last-child h3 {
    color: var(--primary);
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    line-height: 1.7;
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
}

.comparison-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-item:first-child li:before {
    content: "✗";
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .before-after-overlay {
        padding: 1rem;
    }
    
    .before-after-label {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .before-after-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-item {
        padding: 1.5rem;
    }
    
    .before-after-main-image {
        max-height: 400px;
    }
}

/* Services Section */
.landing-services {
    padding: 4rem 0;
    background-color: var(--secondary);
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.service-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Reviews Section */
.landing-reviews {
    padding: 4rem 0;
    background-color: var(--background);
}

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

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

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

@media (max-width: 767px) {
    .reviews-grid .review-card:nth-child(n+3) {
        display: none;
    }
}

.review-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
}

.review-source {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.review-text {
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    color: var(--foreground);
    font-weight: 600;
}

.review-author span {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* CTA Section */
.landing-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.landing-cta .btn-landing.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 3px solid white;
}

.landing-cta .btn-landing.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-box > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-offer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.cta-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-includes {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.cta-includes p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

@media (max-width: 1024px) {
    .landing-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .landing-hero-image {
        order: -1;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 2rem 0;
    }
    
    .landing-hero-title {
        font-size: 2rem;
    }
    
    .landing-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-price {
        font-size: 2.5rem;
    }
    
    .landing-hero-actions {
        flex-direction: column;
    }
    
    .btn-landing {
        width: 100%;
    }
}
