/* 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: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.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;
    min-width: 250px;
}

.cookie-content a {
    color: #60a5fa;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.nav-menu a {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Offset Asymmetric Layout */
.hero-offset {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem 2rem;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding-left: 5%;
}

.hero-label {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.hero-offset p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(-3rem);
}

.hero-image-right img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary {
    background: #2563eb;
    color: #ffffff;
}

.cta-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

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

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

.cta-inline {
    background: transparent;
    color: #2563eb;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    border-radius: 0;
}

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

.cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-large:hover {
    background: #2563eb;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background: #f9fafb;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 20px;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2.5rem;
    color: #2563eb;
    font-weight: 800;
}

.trust-item span {
    color: #6b7280;
    font-size: 0.95rem;
}

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

.intro-block-small {
    flex: 0.8;
    padding-top: 3rem;
}

.intro-block-large {
    flex: 1.2;
}

.intro-asymmetric h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #374151;
    font-weight: 500;
    margin-bottom: 2rem;
}

.intro-block-large img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Problem Section */
.problem-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    background: #1f2937;
    color: #ffffff;
    align-items: center;
}

.problem-visual {
    flex: 0.7;
    padding-left: 5%;
}

.problem-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.problem-stat h3 {
    font-size: 5rem;
    color: #60a5fa;
    font-weight: 900;
    margin-bottom: 1rem;
}

.problem-stat p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.problem-text {
    flex: 1.3;
    padding-right: 5%;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.problem-text .cta-inline {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

/* Services Showcase - Asymmetric Grid */
.services-showcase {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 3rem;
    padding-left: 10%;
    font-weight: 800;
}

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

.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-main {
    flex: 1 1 calc(60% - 1rem);
    background: #eff6ff;
    border-color: #2563eb;
}

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

.service-premium {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
}

.service-card:not(.service-offset):not(.service-main):not(.service-premium) {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.service-label {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-premium .service-label {
    background: #fbbf24;
    color: #1a1a1a;
}

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

.service-premium h3 {
    color: #ffffff;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-premium p {
    color: #e0e7ff;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-premium .service-price {
    color: #fbbf24;
}

.btn-select {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.service-premium .btn-select {
    background: #fbbf24;
    color: #1a1a1a;
}

.service-premium .btn-select:hover {
    background: #f59e0b;
}

/* Form Section Offset */
.form-section-offset {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #6b7280;
    font-size: 1.1rem;
}

.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: #374151;
}

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

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

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Testimonial Asymmetric */
.testimonial-asymmetric {
    display: flex;
    gap: 2rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-main {
    flex: 1.5;
    background: #eff6ff;
    padding: 3rem;
    border-radius: 20px;
    transform: translateY(-1rem);
}

.testimonial-side {
    flex: 1;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 20px;
    transform: translateY(2rem);
}

blockquote {
    font-style: italic;
    color: #374151;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-side blockquote p {
    font-size: 1.1rem;
}

blockquote footer {
    font-style: normal;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Benefit Reveal */
.benefit-reveal {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #f9fafb;
    border-radius: 15px;
    min-width: 280px;
}

.benefit-highlight {
    background: #1f2937;
    color: #ffffff;
    transform: scale(1.05);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-highlight h3 {
    color: #60a5fa;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

.benefit-highlight p {
    color: #e5e7eb;
}

/* Urgency Block */
.urgency-block {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

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

.urgency-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.urgency-content p {
    font-size: 1.2rem;
    color: #78350f;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Final CTA Offset */
.final-cta-offset {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.final-cta-content {
    max-width: 700px;
    margin-left: 20%;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #111827;
    color: #e5e7eb;
    padding: 4rem 2rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #9ca3af;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.sticky-cta span {
    font-weight: 600;
}

.btn-sticky {
    background: #ffffff;
    color: #2563eb;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #dbeafe;
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 10rem 2rem 5rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 10%;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    color: #bfdbfe;
}

/* About Story Asymmetric */
.about-story-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-block {
    flex: 1.2;
}

.story-visual {
    flex: 0.8;
    transform: translateY(-2rem);
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.story-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Mission Offset */
.mission-offset {
    padding: 5rem 2rem;
    background: #f9fafb;
    max-width: 1000px;
    margin: 0 auto;
    margin-left: 20%;
    border-radius: 30px;
}

.mission-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Team Grid Asymmetric */
.team-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.team-main {
    flex: 1 1 calc(50% - 1rem);
    background: #eff6ff;
}

.team-offset {
    transform: translateY(2rem);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.3rem;
}

.team-role {
    padding: 0 1.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p:not(.team-role) {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Values Asymmetric */
.values-asymmetric {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

.value-large {
    flex: 1 1 100%;
    background: #eff6ff;
}

.value-offset {
    transform: translateX(3rem);
}

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

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Asymmetric */
.stats-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-large,
.stat-medium,
.stat-small {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.stat-large {
    flex: 1 1 50%;
    min-width: 280px;
}

.stat-medium {
    flex: 1 1 calc(30% - 1rem);
    min-width: 240px;
    transform: translateY(2rem);
}

.stat-small {
    flex: 1 1 calc(20% - 1rem);
    min-width: 200px;
    transform: translateY(-1rem);
}

.stats-asymmetric h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stats-asymmetric p {
    font-size: 1.1rem;
    color: #bfdbfe;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: #1f2937;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about-content p {
    color: #e5e7eb;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Page Styles */
.services-intro-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    flex: 1.3;
}

.intro-highlight {
    flex: 0.7;
    display: flex;
    align-items: center;
    background: #fef3c7;
    padding: 2rem;
    border-radius: 15px;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #78350f;
    line-height: 1.5;
}

/* Service Detail Items */
.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-offset-left {
    padding-left: 5%;
}

.service-offset-right {
    padding-right: 5%;
}

.service-detail-content,
.service-detail-visual {
    flex: 1;
}

.service-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin: 1rem 0;
}

.service-detail-content p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #4b5563;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.service-premium-highlight {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.service-premium-content {
    flex: 1;
}

.service-premium-content h3,
.service-premium-content p,
.service-premium-content .service-includes li {
    color: #ffffff;
}

.service-premium-content .service-price-large {
    color: #fbbf24;
}

.btn-premium {
    background: #fbbf24;
    color: #1a1a1a;
}

.btn-premium:hover {
    background: #f59e0b;
}

.service-premium-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: #fbbf24;
    color: #1a1a1a;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
}

/* Process Steps Asymmetric */
.process-section {
    padding: 5rem 2rem;
    background: #f9fafb;
    max-width: 1200px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.process-step {
    flex: 1 1 calc(25% - 1.5rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    min-width: 220px;
}

.step-large {
    flex: 1 1 calc(40% - 1rem);
    background: #eff6ff;
}

.step-offset {
    transform: translateY(2rem);
}

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.guarantee-content-asymmetric {
    max-width: 800px;
    margin-left: 15%;
    color: #ffffff;
}

.guarantee-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.guarantee-content-asymmetric p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d1fae5;
}

/* Contact Page Styles */
.contact-main-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-note {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.contact-note p {
    color: #1e40af;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
    transform: translateY(-3rem);
}

.contact-map-placeholder img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-cta-section {
    padding: 5rem 2rem;
    background: #1f2937;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    color: #e5e7eb;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Thanks Page Styles */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-info p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #6b7280;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-info-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.info-block {
    max-width: 800px;
    margin: 0 auto;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-block p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.checklist li:before {
    content: "□";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
}

/* Legal Page Styles */
.legal-page {
    padding: 8rem 2rem 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-date {
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #4b5563;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookie-table td {
    color: #6b7280;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .floating-nav {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-offset {
        flex-direction: column;
        padding: 5rem 1.5rem 3rem 1.5rem;
    }

    .hero-content-left {
        padding-left: 0;
    }

    .hero-image-right {
        transform: none;
    }

    .trust-strip {
        flex-direction: column;
        gap: 2rem;
    }

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

    .intro-block-small {
        padding-top: 0;
    }

    .problem-section {
        flex-direction: column;
        gap: 2rem;
    }

    .problem-visual,
    .problem-text {
        padding-left: 0;
        padding-right: 0;
    }

    .section-title-offset {
        padding-left: 0;
    }

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

    .service-card,
    .service-main,
    .service-offset,
    .service-premium {
        flex: 1 1 100%;
        transform: none;
    }

    .form-container-asymmetric {
        margin-left: 0;
        padding: 2rem;
    }

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

    .testimonial-main,
    .testimonial-side {
        transform: none;
    }

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

    .benefit-highlight {
        transform: none;
    }

    .final-cta-content {
        margin-left: 0;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .story-visual {
        transform: none;
    }

    .mission-offset {
        margin-left: 0;
    }

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

    .team-main,
    .team-offset {
        flex: 1 1 100%;
        transform: none;
    }

    .values-blocks {
        flex-direction: column;
    }

    .value-offset {
        transform: none;
    }

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

    .stat-large,
    .stat-medium,
    .stat-small {
        flex: 1 1 100%;
        transform: none;
    }

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

    .service-detail-item {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .service-detail-item:nth-child(even) {
        flex-direction: column;
    }

    .service-premium-highlight {
        flex-direction: column;
        padding: 2rem;
    }

    .service-premium-badge {
        position: static;
        margin-bottom: 1rem;
        display: inline-block;
    }

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

    .step-offset {
        transform: none;
    }

    .guarantee-content-asymmetric {
        margin-left: 0;
    }

    .contact-main-asymmetric {
        flex-direction: column;
    }

    .contact-map-placeholder {
        transform: none;
    }

    .page-hero-content {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-offset h1 {
        font-size: 2rem;
    }

    .section-title-offset,
    .final-cta-content h2 {
        font-size: 2rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}