/* 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: #2c3e50;
    font-size: 18px;
    overflow-x: hidden;
}

/* Container Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Header */
.header-minimal {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

.logo a {
    text-decoration: none;
    color: #1a73e8;
}

.nav-floating {
    display: flex;
    gap: 30px;
}

.nav-floating a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-floating a:hover,
.nav-floating a.active {
    color: #1a73e8;
}

/* Hero Section */
.hero-story {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a73e8;
    color: #fff;
}

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

.btn-sticky {
    display: inline-block;
    padding: 18px 35px;
    background: #f43f5e;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(244, 63, 94, 0.4);
    transition: transform 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

/* Section Intro */
.section-intro {
    padding: 100px 0;
    background: #fff;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

.intro-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    margin-top: 40px;
    padding: 30px;
    background: #f0f7ff;
    border-left: 4px solid #1a73e8;
    border-radius: 4px;
}

/* Section Problem */
.section-problem {
    padding: 100px 0;
    background: #f7fafc;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a5568;
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f43f5e;
    font-weight: 700;
    font-size: 24px;
}

.split-image {
    flex: 1;
}

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

.split-layout-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

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

.section-insight h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.insight-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a5568;
}

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

.insight-card {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #92400e;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #78350f;
}

/* Section Trust */
.section-trust {
    padding: 100px 0;
    background: #f7fafc;
}

.section-trust h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a73e8;
}

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

.testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: #1a73e8;
}

/* Section Solution */
.section-solution {
    padding: 100px 0;
    background: #fff;
}

.section-solution h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.section-solution > p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a5568;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.step h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

/* CTA Mid Section */
.section-cta-mid {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a73e8 0%, #0052cc 100%);
}

.cta-box {
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

/* Benefits Section */
.section-benefits {
    padding: 100px 0;
    background: #fff;
}

.section-benefits h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.benefit-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 35px;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

/* About Section */
.section-about {
    padding: 100px 0;
    background: #f7fafc;
}

/* Pricing Section */
.section-pricing {
    padding: 100px 0;
    background: #fff;
}

.section-pricing h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #4a5568;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    flex: 1;
    padding: 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #1a73e8;
    box-shadow: 0 10px 40px rgba(26, 115, 232, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a73e8;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.pricing-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #1a73e8;
    margin: 30px 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

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

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    background: #1a73e8;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-pricing:hover {
    background: #0052cc;
}

.btn-pricing.featured-btn {
    background: #667eea;
}

.btn-pricing.featured-btn:hover {
    background: #5568d3;
}

.additional-services {
    margin-top: 80px;
}

.additional-services h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.additional-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.additional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #f7fafc;
    border-radius: 8px;
}

.additional-name {
    font-size: 18px;
    color: #2c3e50;
}

.additional-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

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

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

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

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

.form-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    color: #4a5568;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.form-checkbox {
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 15px;
    color: #4a5568;
    cursor: pointer;
}

.form-checkbox label a {
    color: #1a73e8;
    text-decoration: underline;
}

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

.btn-submit:hover {
    background: #0052cc;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #1a1a1a;
    color: #fff;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #b0b0b0;
    font-size: 15px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

/* Section Content */
.section-content,
.section-content-alt {
    padding: 80px 0;
}

.section-content {
    background: #fff;
}

.section-content-alt {
    background: #f7fafc;
}

.section-content h2,
.section-content-alt h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.section-content p,
.section-content-alt p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

.trust-list {
    list-style: none;
    margin-top: 30px;
}

.trust-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 24px;
}

.section-cta {
    padding: 80px 0;
    background: #1a73e8;
    color: #fff;
    text-align: center;
}

.section-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

/* Services Page */
.services-overview {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 80px;
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail.highlighted {
    border: 3px solid #1a73e8;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.service-detail h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-price {
    font-size: 56px;
    font-weight: 800;
    color: #1a73e8;
    margin: 20px 0 30px;
}

.service-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-detail h3 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: #1a1a1a;
}

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

.service-features li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

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

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

.additional-services-section {
    margin-top: 80px;
    padding: 50px;
    background: #f7fafc;
    border-radius: 12px;
}

.additional-services-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.additional-services-section > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #4a5568;
}

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

.additional-service {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.additional-service h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.additional-service .additional-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
    margin: 15px 0;
}

.additional-service p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.section-process {
    padding: 80px 0;
    background: #fff;
}

.section-process h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

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

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

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

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

.contact-details {
    flex: 1;
}

.contact-form-container {
    flex: 1;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-item a {
    color: #1a73e8;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 15px;
    font-style: italic;
    color: #6b7280;
    margin-top: 10px;
}

.section-faq {
    padding: 80px 0;
    background: #f7fafc;
}

.section-faq h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    margin-bottom: 35px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    background: #fff;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a5568;
}

.thanks-details {
    margin: 40px 0;
}

.selected-service {
    padding: 25px;
    background: #f0f7ff;
    border-radius: 8px;
    display: inline-block;
}

.selected-service p {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.next-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.thanks-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.section-tips {
    padding: 80px 0;
    background: #f7fafc;
}

.section-tips h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

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

.tip-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.tip-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 50px 0 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-page a {
    color: #1a73e8;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background: #f7fafc;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 16px;
    color: #4a5568;
}

.cookie-controls {
    margin: 30px 0;
    text-align: center;
}

.btn-cookie-reset {
    padding: 14px 30px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-note {
    font-size: 15px;
    color: #6b7280;
    margin-top: 15px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

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

    .nav-floating {
        display: none;
    }

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

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

    .pricing-cards {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .section-intro h2,
    .section-solution h2,
    .section-benefits h2,
    .section-pricing h2 {
        font-size: 32px;
    }

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

    .legal-page h1 {
        font-size: 32px;
    }
}
