/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

ul {
    list-style-position: inside;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.logo:hover {
    color: #2563eb;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

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

.nav-menu a {
    display: block;
    padding: 0.75rem 2rem;
    color: #1f2937;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f3f4f6;
    color: #2563eb;
}

/* Hero Section */
.hero-visual {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Containers */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Story Intro Section */
.story-intro {
    background: #f9fafb;
}

.story-intro h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #1f2937;
}

.story-intro p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.inline-img {
    margin: 2.5rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Split Layout */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text,
.split-image {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.split-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.problem-list,
.benefits-list,
.mission-list {
    margin: 2rem 0;
}

.problem-list li,
.benefits-list li,
.mission-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Problem Amplify */
.problem-amplify {
    background: #1f2937;
    color: #ffffff;
}

.problem-amplify .split-text h3 {
    color: #ffffff;
}

.problem-amplify .split-text p {
    color: #e5e7eb;
}

/* Insight Reveal */
.insight-reveal {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.insight-reveal > .content-narrow > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.insight-box {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.insight-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.insight-box p {
    color: #4b5563;
    line-height: 1.7;
}

/* CTA Sections */
.cta-inline,
.cta-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Social Proof */
.social-proof {
    padding: 4rem 2rem;
    background: #ffffff;
}

.social-proof h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #1f2937;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
    font-style: normal;
}

/* Methodology Section */
.methodology {
    background: #1f2937;
    color: #ffffff;
}

.methodology h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.methodology > .content-narrow > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #e5e7eb;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step p {
    color: #e5e7eb;
    line-height: 1.7;
}

/* Benefits Reveal */
.benefits-reveal {
    background: #f9fafb;
}

.benefits-reveal .split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefits-list li strong {
    color: #667eea;
}

/* Services Section */
.services-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.services-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e5e7eb;
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.service-badge.popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card > p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-service,
.btn-service-detail {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover,
.btn-service-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 3rem 2rem;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #92400e;
    text-align: center;
}

.urgency-content p {
    font-size: 1.125rem;
    color: #78350f;
    margin-bottom: 1rem;
    text-align: center;
}

/* Form Section */
.form-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    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: #667eea;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-final {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
}

/* Footer */
.footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #e5e7eb;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 2rem 4rem;
    margin-top: 70px;
    text-align: center;
    color: #ffffff;
}

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

.header-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Story */
.about-story {
    padding: 4rem 2rem;
    background: #ffffff;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-story p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

/* Mission Section */
.mission-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

/* Values Section */
.values-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-section > .content-narrow > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.approach-item p {
    color: #4b5563;
    line-height: 1.7;
}

/* Services Detailed */
.services-detailed {
    padding: 2rem;
}

.service-detail-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.service-detail-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #1f2937;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
}

.service-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-body h4 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: #1f2937;
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    font-weight: 700;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.7;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.contact-info-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

/* Contact CTA */
.contact-cta {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Contact Alternative */
.contact-alternative {
    padding: 2rem;
    background: #ffffff;
    text-align: center;
}

.contact-alternative h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-alternative p {
    font-size: 1.125rem;
    color: #4b5563;
}

/* Thanks Section */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    margin-top: 70px;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.thanks-info {
    margin-bottom: 2rem;
}

.selected-service-box {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.selected-service-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.selected-service-box p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.thanks-next {
    margin-bottom: 2.5rem;
}

.thanks-next h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.thanks-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-steps li {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #667eea;
    font-weight: 700;
    border: 2px solid #667eea;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.thanks-note {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #92400e;
}

.thanks-note p {
    margin-bottom: 0;
}

/* Legal Content */
.legal-content {
    background: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .method-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(50% - 1rem);
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }
}