:root {
    --primary: #1a3a5c;
    --secondary: #d4a853;
    --accent: #2d5a87;
    --dark: #0f2133;
    --light: #f8f6f3;
    --white: #ffffff;
    --gray: #6b7c8a;
    --gray-light: #e8e6e3;
    --success: #3d8b6e;
}

* {
    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);
    overflow-x: hidden;
}

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

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

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

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

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 48px; }

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background: var(--accent);
}

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

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

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

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 16px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

.nav-links a {
    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 {
    margin-left: 16px;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 16px;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: 0 8px 30px rgba(212,168,83,0.4);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(212,168,83,0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-text {
    flex: 1;
}

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

.hero h1 {
    color: var(--dark);
    margin-bottom: 24px;
}

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

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

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

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

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15,33,51,0.2);
}

.hero-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image svg {
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

.hero-floating {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    font-weight: 600;
}

.hero-floating-1 {
    top: 20%;
    left: -40px;
}

.hero-floating-2 {
    bottom: 20%;
    right: -40px;
}

.hero-floating .number {
    font-size: 2rem;
    color: var(--secondary);
    display: block;
}

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

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.problem-card {
    flex: 1;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    border-left: 4px solid var(--secondary);
    transition: transform 0.3s ease;
}

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

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

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

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

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

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

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

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

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

.story-header h2 {
    margin-bottom: 20px;
}

.story-header p {
    opacity: 0.85;
    font-size: 1.15rem;
}

.story-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    opacity: 0.9;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    opacity: 0.8;
}

.story-cta {
    text-align: center;
    margin-top: 60px;
}

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

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

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

.testimonials {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    display: block;
    line-height: 0.5;
    margin-bottom: 16px;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info strong {
    display: block;
    color: var(--dark);
}

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

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

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

.benefit-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--primary);
    color: var(--white);
}

.benefit-card:hover .benefit-icon {
    background: var(--secondary);
}

.benefit-card:hover .benefit-icon svg {
    stroke: var(--dark);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
    transition: all 0.3s ease;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
}

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

.services-header h2 {
    margin-bottom: 16px;
}

.services-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
}

.service-card.featured {
    background: var(--secondary);
    color: var(--dark);
    border: none;
}

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

.service-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    opacity: 0.85;
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    opacity: 0.9;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 600;
}

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

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

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

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

.process-steps {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
}

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

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

.cta-section p {
    color: var(--dark);
    opacity: 0.8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 36px;
}

.urgency-badge {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 24px;
    color: var(--dark);
}

.form-info p {
    color: var(--gray);
    margin-bottom: 32px;
}

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

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--dark);
}

.form-benefits li svg {
    width: 24px;
    height: 24px;
    stroke: var(--success);
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.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: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    width: 100%;
}

/* About Page */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--light) 0%, #e8e4df 100%);
    text-align: center;
}

.page-hero h1 {
    color: var(--dark);
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-image {
    flex: 1;
}

.about-image-inner {
    height: 450px;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-inner svg {
    width: 150px;
    height: 150px;
    opacity: 0.3;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 24px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    opacity: 0.8;
}

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

.service-full-card {
    display: flex;
    gap: 40px;
    padding: 50px;
    background: var(--light);
    border-radius: 20px;
    align-items: center;
}

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

.service-full-info {
    flex: 1;
}

.service-full-info h2 {
    color: var(--dark);
    margin-bottom: 16px;
}

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

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

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

.service-full-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--dark);
}

.service-full-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 600;
}

.service-full-image {
    flex: 0 0 300px;
    height: 250px;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-full-image svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

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

.contact-item:last-child {
    border-bottom: none;
}

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

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

.contact-item-content strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

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

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

.contact-map-placeholder {
    text-align: center;
    color: var(--gray);
}

.contact-map-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary);
    margin-bottom: 16px;
}

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

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

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

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

.thanks-content h1 {
    color: var(--dark);
    margin-bottom: 16px;
}

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

.selected-service {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.selected-service strong {
    color: var(--primary);
    font-size: 1.2rem;
}

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

.legal-content h2 {
    color: var(--dark);
    margin: 40px 0 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--dark);
    margin: 32px 0 12px;
}

.legal-content p {
    color: var(--gray);
}

.legal-content ul {
    color: var(--gray);
    margin-left: 24px;
    margin-bottom: 16px;
}

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

/* 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.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
}

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

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

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

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

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

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

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

.footer-brand {
    flex: 2;
}

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

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

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

.footer-links {
    flex: 1;
}

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

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

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-floating {
        display: none;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .timeline-marker {
        margin: 0 auto;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-step::after {
        display: none;
    }

    .form-wrapper {
        flex-direction: column;
    }

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

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

    .service-full-card {
        flex-direction: column !important;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

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

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .sticky-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .service-full-card {
        padding: 30px;
    }
}
