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

:root {
    --primary: #c9453d;
    --primary-dark: #a33830;
    --secondary: #2c3e50;
    --accent: #e8b923;
    --light: #f9f7f4;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.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 {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--secondary);
    padding: 80px 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: 20px;
}

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

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

.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.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;
    z-index: 998;
}

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

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

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c9453d" stroke-width="0.5" opacity="0.3"/></svg>');
    background-size: 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 700px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,69,61,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

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

.btn-accent:hover {
    background: #d4a81f;
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background: #333;
}

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

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

.section-white {
    background: white;
}

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

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

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

/* Problem Section */
.problem-section {
    background: white;
    position: relative;
}

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

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.problem-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.problem-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.problem-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

/* Story Section */
.story-section {
    background: var(--light);
}

.story-block {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
}

.story-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-text {
    color: var(--gray);
    font-size: 1.1rem;
}

.story-image img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* Trust Section */
.trust-section {
    background: var(--secondary);
    color: white;
    text-align: center;
}

.trust-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

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

.trust-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.trust-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Testimonials */
.testimonials-section {
    background: white;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

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

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

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

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
}

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

.benefits-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.benefits-title {
    font-size: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-text {
    color: var(--gray);
}

/* Services/Pricing Section */
.pricing-section {
    background: var(--light);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--secondary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: white;
}

.pricing-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-card-header {
    padding: 35px 30px;
    background: var(--light);
}

.pricing-card.featured .pricing-card-header {
    background: var(--primary);
    color: white;
}

.pricing-card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pricing-card-desc {
    font-size: 0.95rem;
    opacity: 0.8;
}

.pricing-card-body {
    padding: 35px 30px;
}

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

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--gray);
    margin-left: 5px;
}

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

.pricing-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

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

/* Form Section */
.form-section {
    background: white;
}

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

.form-content {
    flex: 1;
    min-width: 300px;
}

.form-box {
    flex: 1;
    min-width: 350px;
    background: var(--light);
    padding: 50px;
    border-radius: 25px;
}

.form-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.form-text {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.form-guarantee {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
}

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

.form-guarantee-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.form-guarantee-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.form-guarantee-text {
    font-size: 0.95rem;
    color: var(--gray);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

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

.form-submit {
    width: 100%;
}

/* Urgency Section */
.urgency-section {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.urgency-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.sticky-cta-text {
    font-weight: 600;
}

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

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

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-desc {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.7;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

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

.cookie-reject {
    background: var(--gray-light);
    color: var(--dark);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    text-align: center;
    color: white;
    padding: 40px 20px;
}

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

.thanks-icon svg {
    width: 60px;
    height: 60px;
    fill: white;
}

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

.thanks-text {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 40px;
}

.thanks-service {
    background: rgba(255,255,255,0.1);
    padding: 20px 40px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 40px;
}

/* About Page */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero-text {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 100px 0;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-desc {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Services Page */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px 0;
}

.service-card-full {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.service-card-image {
    height: 200px;
    background: var(--gray-light);
    overflow: hidden;
}

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

.service-card-content {
    padding: 35px;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card-desc {
    color: var(--gray);
    margin-bottom: 20px;
}

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

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrap {
    flex: 1;
    min-width: 350px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.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: 30px;
    height: 30px;
    fill: white;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-content {
    padding: 100px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

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

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

/* Insight Section */
.insight-section {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.insight-section::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 x="0" y="0" width="100" height="100" fill="none" stroke="%23ffffff" stroke-width="0.2" opacity="0.05"/></svg>');
    background-size: 50px;
}

.insight-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.insight-quote {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
}

.insight-author {
    color: var(--accent);
    font-weight: 600;
}

/* Mid CTA */
.mid-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.mid-cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.mid-cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .pricing-card.featured {
        transform: none;
    }

    .form-box {
        padding: 30px;
    }

    .nav-menu {
        width: 100%;
    }

    .footer-grid {
        gap: 40px;
    }

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

    .trust-stats {
        gap: 30px;
    }

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