/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a202c;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #764ba2;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

/* Container Widths */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.logo:hover {
    color: #764ba2;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-scroll {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    width: 100%;
    max-width: 500px;
}

.visual-placeholder svg {
    width: 100%;
    height: auto;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

/* Sections */
section {
    padding: 4rem 0;
}

.hook-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.hook-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hook-section p {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Story Flow */
.story-flow {
    background-color: #f7fafc;
    padding: 5rem 0;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.story-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.story-text p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
}

.problem-list {
    list-style: none;
    margin: 1.5rem 0;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0625rem;
    color: #2d3748;
}

.problem-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.highlight-text {
    font-size: 1.1875rem;
    font-weight: 600;
    color: #667eea;
    margin-top: 1.5rem;
}

.image-placeholder {
    width: 100%;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

/* Insight Reveal */
.insight-reveal {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

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

.insight-card {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.insight-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.insight-card h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.insight-card p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

/* Trust Builder */
.trust-builder {
    background-color: #f7fafc;
    padding: 5rem 0;
}

.trust-builder h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1875rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.process-vertical {
    margin: 3rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-content h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.step-content p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4a5568;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e2e8f0;
    color: #2d3748;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    color: #2d3748;
}

/* Testimonials */
.testimonial-flow {
    background-color: #ffffff;
    padding: 5rem 0;
}

.testimonial-flow h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.testimonial-scroll {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #764ba2;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9375rem;
    color: #667eea;
    font-weight: 600;
}

/* Benefits Reveal / Services */
.benefits-reveal {
    background-color: #f7fafc;
    padding: 5rem 0;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-lead {
    text-align: center;
    font-size: 1.1875rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

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

.service-block {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-block.featured {
    border-color: #667eea;
    position: relative;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.service-body p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #2d3748;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Urgency Section */
.urgency-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.urgency-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.emphasis-text {
    font-size: 1.1875rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
}

/* Form Section */
.form-section {
    background-color: #f7fafc;
    padding: 5rem 0;
}

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

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

.conversion-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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.5rem;
    font-weight: normal;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

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

.final-cta h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1875rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #ffffff;
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    color: #764ba2;
}

/* Footer */
.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-column p {
    font-size: 0.9375rem;
    color: #cbd5e0;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #a0aec0;
    margin-bottom: 0;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    color: #ffffff;
}

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

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

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    text-align: center;
}

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-cookie.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #38a169;
    transform: translateY(-1px);
}

.btn-cookie.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #2d3748;
    transform: translateY(-1px);
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9375rem;
}

.cookie-link:hover {
    color: #cbd5e0;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 0;
}

/* About Page */
.about-story {
    background-color: #ffffff;
    padding: 5rem 0;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
}

.visual-separator {
    margin: 3rem 0;
    text-align: center;
}

.visual-separator svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.values-section {
    background-color: #f7fafc;
    padding: 5rem 0;
}

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

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

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.value-item p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.team-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo svg {
    width: 100%;
    height: 100%;
}

.team-member h4 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.approach-section {
    background-color: #f7fafc;
    padding: 5rem 0;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-section-simple {
    background-color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

.cta-section-simple p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Services Page */
.services-full {
    background-color: #ffffff;
    padding: 3rem 0;
}

.service-detail-block {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-block.featured-service {
    border: 2px solid #667eea;
}

.service-detail-block.premium-service {
    border: 2px solid #764ba2;
    background: linear-gradient(135deg, #f7fafc 0%, #faf5ff 100%);
}

.badge-featured,
.badge-premium {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
}

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

.badge-premium {
    background: linear-gradient(135deg, #764ba2 0%, #9333ea 100%);
}

.service-detail-header {
    margin-bottom: 1.5rem;
}

.service-detail-title {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.price-tag {
    font-size: 1.875rem;
    font-weight: 700;
    color: #667eea;
}

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

.service-detail-body h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.detailed-list {
    list-style: none;
    margin: 1.5rem 0;
}

.detailed-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #2d3748;
}

.detailed-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.detailed-list strong {
    color: #1a202c;
}

.comparison-section {
    background-color: #f7fafc;
    padding: 5rem 0;
}

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

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.guide-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.guide-item p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 0;
}

.services-form-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

/* Contact Page */
.contact-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

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

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.contact-item .note {
    font-size: 0.9375rem;
    color: #718096;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    width: 100%;
}

.visual-placeholder-large {
    width: 100%;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

.visual-placeholder-large svg {
    width: 100%;
    height: auto;
}

.faq-section {
    background-color: #f7fafc;
    padding: 5rem 0;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.contact-cta {
    background-color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

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

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 5rem 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

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

.thanks-details {
    margin: 2rem 0;
}

.selected-service {
    display: inline-block;
    background-color: #edf2f7;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.0625rem;
    color: #2d3748;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 0;
}

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

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fef5e7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.thanks-note p {
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 0;
}

.while-waiting {
    background-color: #ffffff;
    padding: 5rem 0;
}

.while-waiting h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.questions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.question-card {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.question-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.question-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 3rem 0;
}

.update-date {
    font-size: 0.9375rem;
    color: #718096;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

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

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #f7fafc;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e2e8f0;
    font-size: 0.9375rem;
}

.cookies-table th {
    font-weight: 600;
    color: #1a202c;
}

.cookies-table td {
    color: #4a5568;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        text-align: left;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .insight-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .testimonial-scroll {
        flex-direction: row;
    }

    .testimonial-item {
        flex: 1;
    }

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

    .service-block {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .value-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .team-member {
        flex: 1;
        min-width: calc(33.333% - 1.67rem);
    }

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

    .contact-info,
    .contact-visual {
        flex: 1;
    }

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

    .question-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-links {
        gap: 2.5rem;
    }

    .insight-card {
        min-width: calc(25% - 1.5rem);
    }

    .service-block {
        min-width: calc(33.333% - 1.34rem);
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Print Styles */
@media print {
    .nav-minimal,
    .sticky-cta,
    .cookie-banner,
    .hero-visual,
    .visual-placeholder,
    .visual-placeholder-large {
        display: none;
    }
}
