:root {
    --primary: #2c3e50;
    --secondary: #c9a87c;
    --accent: #8b6914;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e5e5e5;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

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

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

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

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

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

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

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

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary);
}

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

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light) 0%, #e8e0d5 100%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 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='%23c9a87c' fill-opacity='0.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");
    opacity: 0.5;
    z-index: -1;
}

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

.hero-text {
    flex: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.15;
}

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

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

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

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

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

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

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

.hero-float-1 {
    bottom: -30px;
    left: -30px;
}

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

.hero-float-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-float-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-float-sub {
    color: var(--gray);
    font-size: 0.8rem;
}

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

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

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

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 40px 30px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

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

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

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

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a87c' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.story-quote {
    font-size: 2rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    display: block;
    margin-bottom: -20px;
}

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

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.85;
    line-height: 1.9;
}

.story-cta {
    margin-top: 40px;
}

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

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

.insight-visual {
    flex: 1;
}

.insight-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.insight-image svg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    opacity: 0.3;
}

.insight-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 30px;
}

.insight-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    color: var(--white);
}

.insight-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.insight-content {
    flex: 1;
}

.insight-list {
    margin: 30px 0;
}

.insight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.insight-check {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.insight-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.trust-logo {
    opacity: 0.5;
    transition: var(--transition);
}

.trust-logo:hover {
    opacity: 1;
}

.trust-numbers {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.trust-number-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.trust-number-label {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 10px;
}

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

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

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

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

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

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    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 {
    color: var(--gray);
    font-size: 0.85rem;
}

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

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 100px;
    height: 100px;
    opacity: 0.9;
}

.service-content {
    padding: 30px;
}

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

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

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

.service-price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

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

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

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark);
}

.service-feature svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

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

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

.benefits-content {
    flex: 1;
}

.benefits-content .section-label {
    color: var(--secondary);
}

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

.benefits-list {
    margin: 40px 0;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 124, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: var(--secondary);
}

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

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

.benefits-visual {
    flex: 1;
}

.benefits-image {
    width: 100%;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefits-image svg {
    width: 70%;
    height: 70%;
    opacity: 0.8;
}

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

.cta-box {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

.form-content {
    flex: 1;
}

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

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

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

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

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

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

.urgency-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-timer {
    display: inline-flex;
    gap: 10px;
    margin-left: 20px;
}

.urgency-timer span {
    background: rgba(0,0,0,0.2);
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
}

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

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

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

.footer-col:first-child {
    flex: 2;
    min-width: 280px;
}

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

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

.footer-desc {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

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

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

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

.footer-links a {
    opacity: 0.7;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

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

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

.footer-legal a {
    opacity: 0.6;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    padding: 16px 28px;
}

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

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

.cookie-inner {
    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: 10px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

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

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: var(--light);
    text-align: center;
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
}

/* About Page */
.about-section {
    padding: 80px 0;
}

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

.about-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    flex: 1;
}

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

.about-values {
    padding: 80px 0;
    background: var(--light);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

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

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

.contact-info {
    flex: 1;
}

.contact-card {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.contact-map {
    flex: 1;
    height: 400px;
    background: var(--gray-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Page */
.services-page-section {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
}

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

.service-item-image {
    flex: 1;
    min-height: 300px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-content {
    flex: 1.5;
    padding: 50px;
}

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

.service-item-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.legal-content ul {
    color: var(--gray);
    margin-bottom: 20px;
    padding-left: 25px;
}

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

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

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

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

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

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

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

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

.thanks-service-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.thanks-service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .insight-wrapper,
    .benefits-wrapper,
    .form-wrapper,
    .about-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-image {
        height: 350px;
    }

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

    .benefits-wrapper {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero-float {
        display: none;
    }

    .trust-numbers {
        gap: 40px;
    }

    .footer-grid {
        gap: 40px;
    }

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

    .cta-box {
        padding: 40px 25px;
    }

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

    .urgency-timer {
        display: none;
    }
}
