/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background: #00C853;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00C853;
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
    background: #f9f9f9;
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    color: #4a4a4a;
    max-width: 540px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTAs */
.cta-primary,
.cta-secondary,
.cta-text,
.cta-inline {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #00C853;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
}

.cta-primary:hover {
    background: #00B248;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 200, 83, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
    font-size: 16px;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.cta-text {
    color: #00C853;
    font-size: 16px;
    border-bottom: 2px solid #00C853;
    padding-bottom: 2px;
}

.cta-text:hover {
    color: #00B248;
    border-color: #00B248;
}

.cta-inline {
    color: #00C853;
    font-size: 16px;
    text-decoration: underline;
}

.cta-inline:hover {
    color: #00B248;
}

/* Split Content Sections */
.split-content,
.split-reverse {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: 100px 0;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left h2,
.split-right h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.split-left p,
.split-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.split-text {
    padding: 40px 0;
}

/* Trust Indicators */
.trust-indicators {
    background: #1a1a1a;
    color: #ffffff;
    padding: 100px 0;
}

.trust-indicators h2 {
    color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #00C853;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.5;
}

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

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

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

.centered-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
    color: #1a1a1a;
}

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

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

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

.service-card {
    flex: 1;
    min-width: 380px;
    background: #f9f9f9;
    padding: 36px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #00C853;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 15px;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00C853;
    font-weight: 700;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-section blockquote {
    margin: 0;
}

.testimonial-section p {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: #ffffff;
}

.testimonial-section cite {
    font-size: 15px;
    font-style: normal;
    color: #b0b0b0;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f9f9f9;
}

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

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #00C853;
}

.btn-submit {
    padding: 16px 32px;
    background: #00C853;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #00B248;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 200, 83, 0.3);
}

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

.sticky-cta-btn {
    background: #00C853;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #00B248;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 200, 83, 0.5);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00C853;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333333;
}

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

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: #f9f9f9;
}

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

.hero-content-center h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-content-center p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0 100px;
}

.service-detail-item {
    margin-bottom: 100px;
}

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

.service-detail-item.reverse .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #00C853;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features-box {
    background: #f9f9f9;
    padding: 28px;
    border-radius: 12px;
    margin-top: 24px;
}

.service-features-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-features-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features-box li {
    font-size: 15px;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative;
}

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

/* Pricing Note */
.pricing-note {
    padding: 80px 0;
    background: #f9f9f9;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: #ffffff;
}

.cta-box {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-box p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 32px;
}

/* About Page Styles */
.about-story {
    padding: 100px 0;
    background: #ffffff;
}

.about-approach {
    padding: 100px 0;
    background: #f9f9f9;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
}

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

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

.about-team {
    padding: 100px 0;
    background: #ffffff;
}

.about-values {
    padding: 100px 0;
    background: #f9f9f9;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.about-expertise {
    padding: 100px 0;
    background: #ffffff;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 60px;
}

.expertise-col {
    flex: 1;
    min-width: 260px;
}

.expertise-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.expertise-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expertise-col li {
    font-size: 15px;
    color: #4a4a4a;
    padding-left: 20px;
    position: relative;
}

.expertise-col li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00C853;
    font-weight: 700;
}

.about-location {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-cta {
    padding: 100px 0;
    background: #ffffff;
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-block {
    margin-bottom: 48px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-detail a {
    color: #00C853;
    text-decoration: underline;
}

.contact-detail a:hover {
    color: #00B248;
}

.contact-note {
    font-size: 14px;
    color: #6a6a6a;
    margin-top: 8px;
}

.contact-cta-box {
    background: #f9f9f9;
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
}

.contact-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-cta-box p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-directions {
    padding: 80px 0;
    background: #f9f9f9;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

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

.direction-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.direction-item p {
    font-size: 16px;
    color: #4a4a4a;
}

.contact-faq {
    padding: 80px 0;
    background: #ffffff;
}

.contact-faq h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
}

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

.faq-item {
    flex: 1;
    min-width: 320px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.contact-final-cta {
    padding: 80px 0;
    background: #f9f9f9;
}

/* Thanks Page */
.thanks-hero {
    padding: 120px 0;
    background: #f9f9f9;
}

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

.success-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.thanks-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.thanks-details {
    background: #ffffff;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #00C853;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

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

.thanks-cta p {
    font-size: 16px;
    margin-bottom: 16px;
}

.thanks-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 15px;
}

.thanks-links a {
    color: #00C853;
    text-decoration: underline;
}

.thanks-links a:hover {
    color: #00B248;
}

.thanks-links span {
    color: #b0b0b0;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.legal-updated {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
    list-style: disc;
}

.legal-content a {
    color: #00C853;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #00B248;
}

.legal-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

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

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

.cookies-table td {
    font-size: 15px;
    color: #4a4a4a;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .split-reverse,
    .service-detail-split {
        flex-direction: column;
        gap: 48px;
        margin: 60px 0;
    }

    .contact-split {
        flex-direction: column;
        gap: 48px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 18px;
    }

    .section-title,
    .centered-content h2,
    .hero-content-center h1 {
        font-size: 32px;
    }

    .split-left h2,
    .split-right h2 {
        font-size: 32px;
    }

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

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 20px;
    }

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

    .cta-box {
        padding: 40px 28px;
    }

    .form-intro h2,
    .cta-box h2 {
        font-size: 28px;
    }

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

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

    .legal-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .split-content,
    .split-reverse {
        margin: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}
