/* 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', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Navigation */
.nav-minimal {
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie {
    background: #0066cc;
    color: #fff;
}

.btn-cookie:hover {
    background: #0052a3;
}

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

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

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

.btn-sticky {
    display: block;
    background: #ff6b35;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* Hero Visual Full */
.hero-visual-full {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92), rgba(0, 51, 102, 0.92)),
                url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.hero-overlay {
    width: 100%;
}

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

.hero-content-narrow h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-hero-transparent {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-hero-transparent:hover {
    background: #fff;
    color: #0066cc;
}

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

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

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

/* Section Styles */
section {
    padding: 5rem 0;
}

/* Intro Story */
.intro-story {
    background: #f8f9fa;
    padding: 4rem 0;
}

.intro-lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-story p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.2rem;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 0;
    background: #fff;
}

.content-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

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

.problem-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.problem-list {
    margin: 2rem 0;
    padding-left: 0;
}

.problem-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

.problem-highlight {
    background: #fff3e0;
    padding: 1.5rem;
    border-left: 4px solid #ff6b35;
    font-size: 1.25rem;
    font-weight: 700;
    color: #d84315;
    margin-top: 2rem;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

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

/* Inline CTA Section */
.inline-cta-section {
    background: #0066cc;
    padding: 3rem 0;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-inline {
    display: inline-block;
    background: #fff;
    color: #0066cc;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-inline:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Insight Reveal */
.insight-reveal {
    background: #f8f9fa;
    padding: 6rem 0;
}

.insight-reveal h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    font-style: italic;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.insight-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Story Scenario */
.story-scenario {
    padding: 5rem 0;
    background: #fff;
}

.story-scenario h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-scenario p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.testimonial-inline {
    background: #e3f2fd;
    border-left: 5px solid #0066cc;
    padding: 2rem;
    margin: 3rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: #1a1a1a;
    display: block;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #0066cc;
    font-size: 1rem;
}

/* Trust Building */
.trust-building {
    background: #f8f9fa;
    padding: 6rem 0;
}

.trust-building h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.trust-col {
    flex: 1;
    min-width: 280px;
}

.trust-col img {
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trust-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.trust-col p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 6rem 0;
    background: #fff;
}

.content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.benefits-text {
    flex: 1.2;
    min-width: 300px;
}

.benefits-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #0066cc;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.benefits-visual {
    flex: 0.8;
    min-width: 300px;
}

.benefits-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Social Proof */
.social-proof {
    background: #f8f9fa;
    padding: 6rem 0;
}

.social-proof h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #0066cc;
}

/* Services Pricing */
.services-pricing {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.services-pricing h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border: 3px solid #0066cc;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin: 2rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #333;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin: 1.5rem 0 1rem;
}

.btn-price {
    width: 100%;
    padding: 1rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-price:hover {
    background: #0052a3;
    transform: scale(1.02);
}

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

.urgency-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.urgency-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.urgency-highlight {
    background: rgba(255, 107, 53, 0.2);
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-urgency {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-urgency:hover {
    background: #e55a25;
    transform: scale(1.05);
}

/* Final CTA Section with Form */
.final-cta-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 6rem 0;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

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

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

.checkbox-group a {
    color: #0066cc;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
    transform: scale(1.02);
}

/* Guarantee Section */
.guarantee-section {
    background: #fff3e0;
    padding: 3rem 0;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e65100;
}

.guarantee-section p {
    font-size: 1.1rem;
    color: #444;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    color: #aaa;
    font-size: 1rem;
}

.footer-col ul {
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #66b3ff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #777;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0066cc, #003d7a);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero-text {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Story */
.about-story {
    padding: 5rem 0;
    background: #fff;
}

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

.about-story p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.mission-split {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

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

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.mission-visual {
    flex: 1;
    min-width: 300px;
}

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

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: #fff;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.value-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 1.05rem;
    color: #0066cc;
    font-weight: 600;
}

/* CTA Simple */
.cta-simple {
    background: #0066cc;
    padding: 4rem 0;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #0066cc;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

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

.service-block {
    margin-bottom: 6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-info {
    flex: 1.2;
    min-width: 300px;
    position: relative;
}

.popular-badge {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-tagline {
    font-size: 1.2rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-includes {
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.service-price-note {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #0052a3;
    transform: scale(1.05);
}

.btn-service.featured {
    background: #ff6b35;
}

.btn-service.featured:hover {
    background: #e55a25;
}

.service-image {
    flex: 0.8;
    min-width: 300px;
}

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

/* Comparison Section */
.comparison-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

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

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

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

.comparison-table th {
    background: #0066cc;
    color: #fff;
    font-weight: 700;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

/* Guarantee Section Page */
.guarantee-section-page {
    background: #fff3e0;
    padding: 4rem 0;
    text-align: center;
}

.guarantee-section-page h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #e65100;
}

.guarantee-section-page p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #fff;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #0066cc;
}

.faq-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #0066cc;
}

.contact-item p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.contact-item a {
    color: #0066cc;
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-note {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* FAQ Quick */
.faq-quick {
    background: #f8f9fa;
    padding: 5rem 0;
}

.faq-quick h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 6rem 0;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.4rem;
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-details p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-details strong {
    color: #0066cc;
}

/* Next Steps */
.next-steps {
    padding: 5rem 0;
    background: #fff;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Thanks Tips */
.thanks-tips {
    background: #f8f9fa;
    padding: 5rem 0;
}

.thanks-tips h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-tips > p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.tips-list {
    padding-left: 1.5rem;
}

.tips-list li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
    list-style: decimal;
}

/* Thanks Contact & Social */
.thanks-contact,
.thanks-social {
    padding: 4rem 0;
    text-align: center;
}

.thanks-contact h2,
.thanks-social h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-contact p,
.thanks-social p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-contact strong {
    color: #0066cc;
}

/* Legal Page */
.legal-page {
    padding: 5rem 0;
    background: #fff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-date {
    font-size: 1rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #0066cc;
}

.legal-page p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul,
.legal-page ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.7rem;
    list-style: disc;
}

.legal-page ol li {
    list-style: decimal;
}

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-page strong {
    color: #1a1a1a;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa;
}

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

.cookie-table th {
    background: #0066cc;
    color: #fff;
    font-weight: 700;
}

.cookie-table td {
    font-size: 1rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }

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

    .comparison-table {
        font-size: 0.9rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }
}