:root {
    --primary: #8B4513;
    --primary-dark: #5D2E0C;
    --secondary: #D4A574;
    --accent: #C9302C;
    --text-dark: #2C1810;
    --text-light: #F5F0EB;
    --bg-cream: #FDF8F3;
    --bg-warm: #F5EDE4;
    --bg-dark: #3D2314;
    --shadow: rgba(44, 24, 16, 0.15);
    --shadow-strong: rgba(44, 24, 16, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-cream);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

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

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 15px;
}

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

.nav-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    color: var(--text-dark);
    font-weight: 500;
}

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

/* Hero Section */
.hero-funnel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 50%, #E8DDD4 100%);
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #5A4A40;
    max-width: 500px;
}

.hero-image-wrapper {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.hero-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 69, 19, 0.4);
    color: var(--text-light);
}

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

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

.btn-accent {
    background: var(--accent);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(201, 48, 44, 0.3);
}

.btn-accent:hover {
    background: #A82622;
    transform: translateY(-2px);
    color: var(--text-light);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-warm {
    background: var(--bg-warm);
}

.section-cream {
    background: var(--bg-cream);
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Problem Section */
.problem-block {
    background: #FFF9F5;
    border-left: 4px solid var(--accent);
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
}

.problem-block h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.problem-list li::before {
    content: '✗';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Benefits */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: #5A4A40;
    font-size: 0.95rem;
}

/* Services/Pricing */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.service-card.featured {
    border: 3px solid var(--primary);
    position: relative;
}

.service-card.featured::before {
    content: 'Nejoblíbenější';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-content p {
    color: #5A4A40;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-currency {
    font-size: 1rem;
    color: #5A4A40;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #5A4A40;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #5A4A40;
    margin-bottom: 20px;
    padding-top: 30px;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #8A7A70;
}

/* Story Section */
.story-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.story-text p {
    margin-bottom: 20px;
}

.story-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 30px;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-strong);
}

.story-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Stats */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 25px;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #5A4A40;
}

/* Process */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    color: #5A4A40;
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2A1609 100%);
    padding: 80px 20px;
}

.form-wrapper {
    background: white;
    padding: 40px 25px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-header p {
    color: #5A4A40;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid #E8DDD4;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #FDFBF9;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #8A7A70;
    margin-top: 15px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--accent) 0%, #D94440 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.urgency-banner p {
    font-weight: 600;
    font-size: 1.05rem;
}

.urgency-banner strong {
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-align: center;
}

.sticky-cta .btn {
    width: 100%;
    padding: 14px 24px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #5A4A40;
    line-height: 1.7;
}

/* Guarantee */
.guarantee-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 2px solid #22C55E;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.guarantee-box h3 {
    font-size: 1.4rem;
    color: #166534;
    margin-bottom: 15px;
}

.guarantee-box p {
    color: #15803D;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-text a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
}

.thanks-content h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #5A4A40;
    margin-bottom: 30px;
}

.thanks-details {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thanks-details ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thanks-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5A4A40;
}

.thanks-details li::before {
    content: '✓';
    color: #22C55E;
    font-weight: bold;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2A1609 100%);
    padding: 120px 20px 60px;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Page */
.content-page {
    padding: 60px 20px;
    background: white;
}

.content-page h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page p {
    margin-bottom: 15px;
    color: #5A4A40;
}

.content-page ul {
    margin: 15px 0 15px 25px;
    color: #5A4A40;
}

.content-page li {
    margin-bottom: 8px;
}

/* Contact Page */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #5A4A40;
}

/* About Page */
.about-intro {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-strong);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: var(--bg-warm);
    padding: 30px;
    border-radius: 16px;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.value-card p {
    color: #5A4A40;
}

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

    .nav-menu {
        display: flex;
        width: auto;
        flex-direction: row;
        gap: 30px;
        margin-top: 0;
    }

    .nav-menu a {
        padding: 0;
        border: none;
    }

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

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

    .hero-image-wrapper img {
        height: 400px;
    }

    .section {
        padding: 100px 20px;
    }

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

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 10px);
    }

    .services-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 13px);
    }

    .testimonials-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 13px);
    }

    .story-block {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-image {
        flex: 1;
    }

    .story-image img {
        height: 350px;
    }

    .form-wrapper {
        padding: 50px 40px;
    }

    .sticky-cta-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .sticky-cta .btn {
        width: auto;
    }

    .faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .contact-info-grid {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }

    .about-intro {
        flex-direction: row;
        align-items: center;
    }

    .about-image,
    .about-intro > div {
        flex: 1;
    }

    .about-image img {
        height: 400px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 10px);
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .hero-funnel {
        padding: 0 20px;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .hero-text {
        flex: 1;
        max-width: 550px;
    }

    .hero-image-wrapper {
        flex: 1;
        margin-top: 0;
        max-width: 500px;
    }

    .hero-image-wrapper img {
        height: 450px;
    }

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

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

    .benefit-card {
        flex: 1 1 calc(25% - 15px);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 17px);
    }

    .stats-row {
        justify-content: space-around;
    }

    .stat-item {
        min-width: 180px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }

    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-40 {
    margin-top: 40px;
}
