:root {
    --primary: #8B4A6B;
    --primary-dark: #6D3A54;
    --secondary: #D4A574;
    --accent: #F5E6D3;
    --dark: #2C1810;
    --light: #FDF8F4;
    --text: #3D2B1F;
    --text-light: #6B5344;
    --white: #FFFFFF;
    --shadow: rgba(44, 24, 16, 0.12);
    --shadow-strong: rgba(44, 24, 16, 0.22);
}

* {
    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);
    background: var(--light);
}

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: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: relative;
    z-index: 100;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

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

/* Hero Section */
.hero-funnel {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
    transform: rotate(15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 680px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.92;
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 14px 36px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* Section Styles */
.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-accent {
    background: var(--accent);
}

.section-gradient {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 48px;
}

/* Story Section */
.story-block {
    padding: 80px 0;
}

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

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

.story-highlight {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
    padding: 2px 8px;
    border-radius: 4px;
}

.story-image-wrap {
    margin: 50px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
}

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

/* Problem Section */
.problem-section {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1 1 280px;
    background: rgba(255,255,255,0.06);
    padding: 36px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.problem-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Split Section */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.split-content {
    flex: 1 1 400px;
}

.split-image {
    flex: 1 1 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow-strong);
}

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

.split-reverse {
    flex-direction: row-reverse;
}

/* Benefits Cards */
.benefits-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 50px;
}

.benefit-card {
    flex: 1 1 300px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 74, 107, 0.08);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.4;
    margin-bottom: 10px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 14px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #F8EDE3 100%);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 320px;
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Services / Pricing */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 320px;
    background: var(--light);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow);
}

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

.service-card.featured::before {
    content: 'Nejoblíbenější';
    position: absolute;
    top: 20px;
    right: -32px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 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.08);
}

.service-body {
    padding: 32px 28px;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.service-price .currency {
    font-size: 1rem;
    color: var(--text-light);
}

.service-price .unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.service-cta {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: var(--primary-dark);
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.form-content {
    flex: 1 1 400px;
    color: var(--white);
}

.form-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-item svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
}

.form-card {
    flex: 1 1 420px;
    background: var(--white);
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8E0DB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* Urgency Strip */
.urgency-strip {
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 0;
    text-align: center;
}

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

.urgency-strip strong {
    color: var(--primary-dark);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 30px var(--shadow-strong);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

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

.sticky-cta p {
    font-weight: 600;
    color: var(--dark);
}

.sticky-cta .btn-primary {
    padding: 12px 30px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1 1 300px;
}

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

.footer-desc {
    opacity: 0.7;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    flex: 1 1 200px;
}

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

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

.footer-links li {
    margin-bottom: 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(--white);
}

.footer-contact {
    flex: 1 1 250px;
}

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

.footer-contact p {
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-strong);
    z-index: 9999;
    display: none;
}

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

.cookie-banner h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cookie-accept {
    flex: 1;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    flex: 1;
    padding: 12px;
    background: transparent;
    color: var(--text);
    border: 2px solid #E8E0DB;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: var(--primary);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.content-page {
    padding: 80px 0;
    background: var(--white);
}

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

.content-page h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text);
}

.content-page ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1 1 350px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--light);
    border-radius: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    flex: 1 1 400px;
    background: var(--light);
    padding: 40px;
    border-radius: 24px;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-service {
    background: var(--accent);
    padding: 20px 30px;
    border-radius: 14px;
    margin: 30px 0;
}

.thanks-service span {
    font-weight: 700;
    color: var(--primary);
}

/* About Page */
.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow);
}

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

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1 1 250px;
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 20px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 70px 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--accent);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 36px;
}

/* Inline CTA */
.inline-cta {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
    border: 2px dashed var(--secondary);
}

.inline-cta h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.inline-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 40px var(--shadow);
    }

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

    .nav-links li {
        border-bottom: 1px solid #F0E8E2;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-hamburger {
        display: flex;
    }

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

    .hero-funnel {
        padding: 70px 0 80px;
    }

    .section {
        padding: 60px 0;
    }

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

    .split-section {
        gap: 40px;
    }

    .split-image img {
        height: 300px;
    }

    .form-wrap {
        gap: 40px;
    }

    .form-content h2 {
        font-size: 2rem;
    }

    .form-card {
        padding: 32px 24px;
    }

    .footer-grid {
        gap: 30px;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

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

    .benefit-card,
    .service-card,
    .testimonial-card {
        flex: 1 1 100%;
    }

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

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

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

    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}
