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

:root {
    --primary: #2c5530;
    --primary-dark: #1a3a1e;
    --secondary: #d4a853;
    --accent: #8b4513;
    --light: #f8f5f0;
    --dark: #1c1c1c;
    --gray: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

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

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

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 - Floating Style */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1000px;
}

.main-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: 0.3s;
}

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

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 100px;
}

.hero-text {
    flex: 1;
}

.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: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
}

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

.hero-desc {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 500px;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.hero-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image svg {
    width: 70%;
    height: 70%;
    opacity: 0.9;
}

.hero-stat {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-stat.stat-1 {
    bottom: -20px;
    left: -20px;
}

.hero-stat.stat-2 {
    top: 30px;
    right: -30px;
}

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

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

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

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

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

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

.problem-intro p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.8;
}

.problem-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    background: rgba(255,255,255,0.05);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

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

.problem-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.problem-item p {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

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

.story-image {
    flex: 1;
    height: 450px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 20px;
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
}

.story-content {
    flex: 1;
}

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

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

.story-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.story-highlight {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid var(--primary);
}

.story-highlight p {
    margin: 0;
    font-style: italic;
    color: var(--dark);
}

/* Insight Section */
.insight-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.insight-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.insight-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.insight-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.insight-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insight-card:hover::before {
    transform: scaleX(1);
}

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

.insight-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

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

.insight-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.trust-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.trust-content {
    position: relative;
    z-index: 1;
}

.trust-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.trust-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trust-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

.trust-stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.trust-stat-text {
    font-size: 1rem;
    opacity: 0.8;
}

.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge svg {
    width: 40px;
    height: 40px;
}

.trust-badge span {
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonials-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.testimonials-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

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

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

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    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: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

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

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

.benefits-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

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

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

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.benefits-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card-mini {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.benefit-card-mini:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card-mini:nth-child(odd) {
    margin-left: 40px;
}

.benefit-card-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

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

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.service-card.featured .service-price-label,
.service-card.featured .service-desc {
    opacity: 0.9;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-image {
    height: 180px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .service-image {
    background: rgba(255,255,255,0.1);
}

.service-image svg {
    width: 80px;
    height: 80px;
    stroke: var(--white);
    stroke-width: 1.5;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.service-card.featured .service-desc {
    color: var(--white);
}

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

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

.service-card.featured .service-price-value {
    color: var(--secondary);
}

.service-price-label {
    font-size: 0.9rem;
    color: var(--gray);
}

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

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

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

.service-card.featured .service-features li::before {
    color: var(--secondary);
}

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

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

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

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: var(--secondary);
    color: var(--dark);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.urgency-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.urgency-text p {
    font-size: 1.1rem;
    max-width: 500px;
}

.urgency-cta {
    background: var(--dark);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.form-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.form-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.form-benefits li svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    color: var(--dark);
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.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(44, 85, 48, 0.1);
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.sticky-cta svg {
    width: 20px;
    height: 20px;
}

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

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

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    max-width: 300px;
}

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

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

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

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

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

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

.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-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

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

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

/* Content Pages */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.content-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

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

.content-section ul {
    margin: 15px 0 15px 25px;
    color: var(--gray);
}

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

/* About Page */
.about-intro {
    padding: 100px 0;
    background: var(--light);
}

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

.about-image {
    flex: 1;
    height: 400px;
    background: var(--primary);
    border-radius: 20px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

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

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

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
}

.contact-map {
    flex: 1;
    height: 400px;
    background: var(--light);
    border-radius: 20px;
}

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

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

.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;
    stroke: var(--white);
    stroke-width: 3;
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.thanks-service {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

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

.thanks-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Services Page */
.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 0;
}

.service-row {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-row-image {
    flex: 1;
    height: 350px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-row-image svg {
    width: 120px;
    height: 120px;
    stroke: var(--white);
    stroke-width: 1;
}

.service-row-content {
    flex: 1;
}

.service-row-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

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

.service-row-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content,
    .story-wrapper,
    .benefits-wrapper,
    .form-wrapper,
    .about-grid,
    .contact-grid,
    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-wrapper.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        height: 300px;
    }

    .hero-stat {
        display: none;
    }
}

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

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

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

    .hero-desc {
        font-size: 1rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .problem-grid,
    .insight-cards,
    .trust-stats,
    .testimonials-grid,
    .services-grid,
    .footer-grid,
    .values-grid {
        flex-direction: column;
    }

    .urgency-content {
        text-align: center;
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 80px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-header {
        padding: 120px 0 60px;
    }

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

    .benefits-visual {
        display: none;
    }
}
