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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2563eb;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #1d4ed8;
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

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

.sticky-btn {
    background: #059669;
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(5,150,105,0.4);
    transition: all 0.3s ease;
    display: block;
}

.sticky-btn:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5,150,105,0.5);
}

/* Hero Section - LONG-FORM FUNNEL Archetype */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 24px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    background: #fff;
    color: #1e3a8a;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

/* Story Section - Asymmetric Layout */
.story-section {
    padding: 100px 24px;
    background: #f9fafb;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-block {
    max-width: 720px;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #111827;
    font-weight: 700;
}

.story-block p {
    font-size: 19px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Insight Section - Split Layout */
.insight-section {
    padding: 100px 24px;
    background: #fff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 18px;
}

.insight-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    background: #eff6ff;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #1e40af;
    line-height: 1.4;
}

/* Problem Section - Card Grid */
.problem-section {
    padding: 100px 24px;
    background: linear-gradient(to bottom, #f3f4f6, #fff);
}

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

.problem-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 50px;
}

.problem-card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #dc2626;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,99,235,0.3);
}

/* Transformation Section */
.transformation-section {
    padding: 100px 24px;
    background: #1f2937;
    color: #fff;
}

.transformation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.transform-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
}

.transform-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.transform-visual img {
    border-radius: 12px;
}

/* Trust Section - Step Flow */
.trust-section {
    padding: 100px 24px;
    background: #f9fafb;
}

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

.trust-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
    color: #111827;
}

.trust-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 24px;
    background: #fff;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-wrapper h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f3f4f6;
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid #059669;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #6b7280;
    font-weight: 600;
}

/* Benefit Reveal Section */
.benefit-reveal {
    padding: 100px 24px;
    background: linear-gradient(to bottom, #f9fafb, #fff);
}

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

.benefit-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #111827;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.benefit-item img {
    flex: 0 0 300px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.benefit-text {
    flex: 1;
    min-width: 300px;
}

.benefit-text h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #111827;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 24px;
    background: #1e293b;
    color: #fff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    opacity: 0.9;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #334155;
    padding: 36px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: 2px solid #60a5fa;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #78350f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    opacity: 0.9;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 24px;
    background: #fef3c7;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #92400e;
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #78350f;
    margin-bottom: 18px;
}

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

.btn-urgent {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: 18px 42px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-urgent:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220,38,38,0.4);
}

/* Form Section */
.form-section {
    padding: 100px 24px;
    background: #f9fafb;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
}

.form-subtitle {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 50px;
}

.main-form {
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    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: #2563eb;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: #059669;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5,150,105,0.3);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 24px;
    background: #ecfdf5;
}

.guarantee-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-wrapper h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #065f46;
}

.guarantee-wrapper p {
    font-size: 19px;
    line-height: 1.7;
    color: #047857;
    margin-bottom: 16px;
}

.guarantee-note {
    font-size: 15px;
    font-style: italic;
    color: #059669;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-final {
    display: inline-block;
    background: #fff;
    color: #047857;
    padding: 20px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
}

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

/* Footer */
.main-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 60px 24px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2563eb;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, #1e40af, #3730a3);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

/* About Page Specific */
.about-story {
    padding: 100px 24px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.values-section {
    padding: 100px 24px;
    background: #f9fafb;
}

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

.values-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #111827;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2563eb;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.stats-section {
    padding: 100px 24px;
    background: #1e3a8a;
    color: #fff;
}

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

.stats-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #60a5fa;
}

.stat-description {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    padding: 100px 24px;
    background: #fff;
}

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

.team-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #111827;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    background: #f3f4f6;
    padding: 36px;
    border-radius: 10px;
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #111827;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.approach-section {
    padding: 100px 24px;
    background: #f9fafb;
}

.approach-container {
    max-width: 900px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 40px;
    margin-bottom: 32px;
    text-align: center;
    color: #111827;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 24px;
    background: #2563eb;
    color: #fff;
    text-align: center;
}

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

/* Services Page Specific */
.services-detail {
    padding: 100px 24px;
    background: #f9fafb;
}

.services-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #2563eb;
    background: linear-gradient(to bottom, #eff6ff, #fff);
}

.featured-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #78350f;
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: #111827;
}

.service-price-large {
    font-size: 36px;
    font-weight: 800;
    color: #059669;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.service-detail-content h4 {
    font-size: 19px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #374151;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 16px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: #4b5563;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.btn-service {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.comparison-section {
    padding: 100px 24px;
    background: #fff;
}

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

.comparison-container h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: #111827;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-table th {
    background: #1e3a8a;
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

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

.guarantee-info {
    padding: 80px 24px;
    background: #ecfdf5;
}

.guarantee-detail {
    font-weight: 600;
    color: #047857;
}

.faq-section {
    padding: 100px 24px;
    background: #f9fafb;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #111827;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #fff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

/* Contact Page Specific */
.contact-section {
    padding: 100px 24px;
    background: #fff;
}

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

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #111827;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item {
    flex: 1;
    min-width: 280px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2563eb;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.contact-item a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-reasons {
    padding: 100px 24px;
    background: #f9fafb;
}

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

.reasons-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #111827;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.reason-card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.reason-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.alternative-contact {
    padding: 80px 24px;
    background: #2563eb;
    color: #fff;
    text-align: center;
}

.alternative-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.alternative-container p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.location-section {
    padding: 100px 24px;
    background: #fff;
}

.location-container {
    max-width: 900px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 40px;
    margin-bottom: 24px;
    text-align: center;
    color: #111827;
}

.location-container > p {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.location-directions {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2563eb;
}

.direction-item p {
    font-size: 16px;
    color: #6b7280;
}

/* Thanks Page Specific */
.thanks-section {
    padding: 100px 24px;
    background: #f9fafb;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-message {
    font-size: 19px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 32px;
}

.selected-service {
    font-size: 17px;
    color: #374151;
}

.selected-service strong {
    color: #2563eb;
}

.thanks-next {
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
    color: #111827;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 24px;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
}

.thanks-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 100px 24px;
    background: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-updated {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

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

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-block h2,
    .insight-content h2,
    .problem-container h2,
    .trust-container h2,
    .testimonial-wrapper h2,
    .benefit-container h2,
    .services-container h2 {
        font-size: 28px;
    }

    .transform-text h2 {
        font-size: 32px;
    }

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

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .about-container,
    .transformation-content {
        gap: 30px;
    }

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

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

    .benefit-item {
        flex-direction: column;
    }

    .benefit-item img {
        flex: 1;
    }

    .cookie-content {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 14px;
    }

    .thanks-container {
        padding: 40px 24px;
    }
}

@media (min-width: 769px) {
    .story-container {
        flex-direction: row;
        align-items: center;
    }

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

    .about-container {
        flex-direction: row;
    }

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