:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --dark: #0d1b2a;
    --light: #f8f9fa;
    --accent: #2d6a4f;
    --text: #333;
    --text-light: #666;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-heavy: 0 8px 40px rgba(0,0,0,0.15);
}

* {
    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;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--dark);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--dark);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 25px;
}

.nav-menu a {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Logo */
.logo-fixed {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero-funnel {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.02)" width="50" height="50"/><rect fill="rgba(255,255,255,0.02)" x="50" y="50" width="50" height="50"/></svg>');
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--secondary);
}

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.stat-item {
    text-align: center;
}

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

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

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

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

.btn-primary:hover {
    background: #d4ad2f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,162,39,0.3);
}

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

.btn-secondary:hover {
    background: var(--light);
    transform: translateY(-2px);
}

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

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

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

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

.btn-lg {
    padding: 20px 45px;
    font-size: 1.1rem;
}

.btn-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
    transform: translateX(5px);
}

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

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

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

.section-gray {
    background: #f0f2f5;
}

.section-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #1d4a3a 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    position: relative;
    overflow: hidden;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #e74c3c;
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: #fce4e4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.problem-icon svg {
    width: 30px;
    height: 30px;
    stroke: #e74c3c;
}

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

.problem-card p {
    color: var(--text-light);
}

/* Story Section */
.story-section {
    position: relative;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.story-image-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--secondary);
    color: var(--dark);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-heavy);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.story-list {
    list-style: none;
    margin: 30px 0;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.story-list-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.story-list-icon svg {
    width: 12px;
    height: 12px;
    stroke: white;
}

/* Benefits Section */
.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-block {
    flex: 1;
    min-width: 300px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit-text p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Services/Pricing Section */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

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

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-body {
    padding: 35px;
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

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

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.pricing-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.pricing-check {
    width: 20px;
    height: 20px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent);
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

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

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

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

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Trust Elements */
.trust-strip {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 25px;
    height: 25px;
    stroke: var(--primary);
}

/* Process Section */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.2);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
    text-align: right;
    padding-right: 80px;
    padding-left: 0;
}

.process-content {
    flex: 1;
    padding-left: 80px;
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    z-index: 2;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.process-content p {
    opacity: 0.8;
}

/* Form Section */
.form-section {
    position: relative;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.form-guarantees {
    list-style: none;
}

.form-guarantees li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.form-guarantees svg {
    width: 20px;
    height: 20px;
    stroke: var(--secondary);
}

.form-container {
    flex: 1;
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

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

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

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

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

.urgency-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgency-text strong {
    font-size: 1.2rem;
}

.urgency-timer {
    background: rgba(0,0,0,0.2);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text span {
    color: var(--secondary);
}

/* FAQ Section */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

.faq-answer-inner {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--dark);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    z-index: 9999;
    display: none;
}

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

.cookie-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-accept:hover {
    background: #d4ad2f;
}

.cookie-reject {
    background: rgba(255,255,255,0.1);
    color: white;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.2);
}

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

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

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

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

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

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.about-intro-content {
    flex: 1;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px;
}

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

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--dark);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    opacity: 0.8;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-row-image {
    flex: 1;
    min-height: 350px;
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-row-content {
    flex: 1;
    padding: 50px;
}

.service-row-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-row-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
}

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

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

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

.contact-details p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--dark);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.thanks-service {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 1.1rem;
}

.thanks-service strong {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 35px;
    }

    .story-wrapper,
    .form-wrapper,
    .about-intro,
    .contact-grid {
        flex-direction: column;
    }

    .story-image-badge {
        right: 20px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
    }

    .process-number {
        left: 30px;
        transform: none;
    }

    .process-content,
    .process-step:nth-child(even) .process-content {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-funnel {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .urgency-text {
        flex-direction: column;
        gap: 10px;
    }

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

    .breadcrumb {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .logo-fixed {
        font-size: 1.1rem;
        padding: 10px 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }

    .pricing-body {
        padding: 25px;
    }

    .pricing-value {
        font-size: 2.5rem;
    }
}
