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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fefefe;
    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;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.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;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #4a4a4a;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero - Offset Asymmetric */
.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    padding: 4rem 2rem 4rem 8%;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.hero-visual-right {
    flex: 1;
    position: relative;
    margin-left: -10%;
    margin-top: 8%;
}

.hero-visual-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #fff;
}

.cta-inline {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
}

.cta-inline:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

.cta-service {
    background: #f3f4f6;
    color: #1a1a1a;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

.cta-service:hover {
    background: #2563eb;
    color: #fff;
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-offset {
    flex: 1.2;
    padding-left: 5%;
    transform: translateY(-5%);
}

.intro-block-offset h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.intro-block-offset p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.intro-visual-overlap {
    flex: 1;
    position: relative;
    margin-right: -5%;
    transform: translateY(5%);
}

.intro-visual-overlap img {
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
}

.intro-stat {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Problem Amplify Section */
.problem-amplify {
    background: #f9fafb;
    padding: 6rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
    padding: 2rem;
}

.problem-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.problem-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.problem-content .cta-inline {
    margin-top: 1.5rem;
}

/* Services Preview - Asymmetric Grid */
.services-preview {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4rem;
    margin-left: 5%;
}

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

.service-card-overlap {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.service-card-1 {
    flex-basis: 55%;
    transform: translateY(-2rem);
}

.service-card-2 {
    flex-basis: 40%;
    transform: translateY(1rem);
}

.service-card-3 {
    flex-basis: 45%;
    transform: translateY(-1rem);
}

.service-card-4 {
    flex-basis: 50%;
    transform: translateY(2rem);
}

.service-card-5 {
    flex-basis: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    transform: translateY(-1rem);
}

.service-card-overlap:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card-overlap h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-5 h3 {
    color: #fff;
}

.service-card-overlap p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-5 p {
    color: rgba(255, 255, 255, 0.9);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card-5 .service-price {
    color: #fff;
    font-size: 1.5rem;
}

.service-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link:hover {
    text-decoration: underline;
}

.service-card-5 .service-link {
    color: #fff;
}

/* Trust Builder Section */
.trust-builder {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.trust-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.trust-text {
    flex: 1;
    padding-right: 2rem;
}

.trust-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.trust-testimonials {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Insight Section */
.insight-section {
    padding: 8rem 2rem;
    background: #fef3c7;
}

.insight-block {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-block h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.3;
}

.insight-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insight-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* CTA Sticky Trigger */
.cta-sticky-trigger {
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-visual-block {
    flex: 1.2;
    margin-left: -5%;
}

.cta-visual-block img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(-1deg);
}

.cta-text-block {
    flex: 1;
    padding: 2rem;
}

.cta-text-block h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 8rem 2rem;
    background: #f9fafb;
}

.benefits-reveal h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    position: relative;
}

.benefit-number {
    font-size: 5rem;
    font-weight: 800;
    color: #e5e7eb;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.benefit-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Form Section - Asymmetric */
.form-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    background: #2563eb;
    color: #fff;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Urgency Element */
.urgency-element {
    padding: 2rem;
    background: #fef3c7;
    margin: 3rem 0;
}

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

.urgency-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    background: #2563eb;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    display: block;
}

.sticky-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

/* Page Hero - Offset */
.page-hero-offset {
    padding: 10rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-offset h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* About Page Styles */
.about-story {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block {
    flex: 1.3;
}

.story-block h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.mission-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.mission-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.team-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.approach-item {
    flex: 1;
    min-width: 250px;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.approach-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.values-section {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.numbers-section {
    padding: 8rem 2rem;
    background: #f9fafb;
}

.numbers-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.number-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 1rem;
}

.number-label {
    display: block;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.4;
}

.cta-about {
    padding: 6rem 2rem;
}

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

.cta-about-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* Services Page Styles */
.services-detailed {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #2563eb;
}

.service-detail-card.service-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    position: relative;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 4rem;
}

.service-title-price {
    flex: 1;
}

.service-title-price h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-highlight h2,
.service-highlight h3 {
    color: #fff;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
}

.service-highlight .service-price-large {
    color: #fff;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-highlight .service-includes li {
    color: rgba(255, 255, 255, 0.9);
}

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

.service-highlight .service-includes li::before {
    color: #fff;
}

.service-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.process-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
}

.step-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.process-step p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.faq-services {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-services h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

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

.cta-services-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-services-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-main {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 16px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.7rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-detail a {
    color: #2563eb;
    font-weight: 600;
}

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

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

.contact-cta {
    padding: 6rem 2rem;
}

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

.contact-cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-details {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
}

.step-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-service-reminder {
    padding: 4rem 2rem;
    background: #fef3c7;
}

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

.service-reminder-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-reminder-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thanks-explore {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-explore h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.explore-card {
    flex: 1;
    min-width: 250px;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
}

.explore-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.explore-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.explore-card a {
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
}

.explore-card a:hover {
    text-decoration: underline;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 10rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

.legal-content {
    padding: 2rem 2rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem;
}

.legal-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

.legal-text p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.cookie-table td:first-child {
    width: 30%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-floating {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-offset {
        flex-direction: column;
        padding-top: 8rem;
    }

    .hero-content-left {
        padding: 2rem;
        max-width: 100%;
    }

    .hero-visual-right {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-block-offset {
        padding-left: 0;
        transform: none;
    }

    .intro-visual-overlap {
        margin-right: 0;
        transform: none;
    }

    .intro-stat {
        position: static;
        margin-top: 1rem;
    }

    .services-asymmetric-grid {
        flex-direction: column;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5 {
        flex-basis: 100%;
        transform: none;
    }

    .trust-content-split {
        flex-direction: column;
    }

    .trust-text {
        padding-right: 0;
    }

    .cta-sticky-trigger {
        flex-direction: column-reverse;
    }

    .cta-visual-block {
        margin-left: 0;
    }

    .about-story {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .form-container-asymmetric {
        padding: 2rem;
        transform: none;
    }
}

@media (max-width: 640px) {
    .benefits-layout {
        flex-direction: column;
    }

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

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

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

    .footer-main {
        flex-direction: column;
    }
}
