/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-accept {
    background: #2ecc71;
    color: white;
}

.btn-accept:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background: white;
    color: #2c3e50;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    transform: translateX(3rem);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1a252f;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(-2rem) rotate(-2deg);
}

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

/* Intro Offset Section */
.intro-offset {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    transform: translateY(3rem);
}

.intro-left h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 16px;
    color: white;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.stat-card:nth-child(2) {
    transform: rotate(-3deg) translateX(2rem);
}

.stat-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Problem Asymmetric */
.problem-asymmetric {
    padding: 5rem 2rem;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.problem-image-float {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    opacity: 0.3;
    z-index: 1;
}

.problem-text-overlay {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: translateX(-4rem);
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.problem-text-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e74c3c;
}

.problem-list {
    margin-bottom: 2rem;
}

.problem-list li {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: bold;
}

.problem-insight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
    padding: 1.5rem;
    background: #ebf5fb;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

/* Approach Stacked */
.approach-stacked {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    margin-bottom: 5rem;
}

.approach-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.approach-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-card {
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.step-offset-1 {
    transform: translateX(5rem);
}

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

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

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

.step-card:hover {
    transform: translateX(0) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ecf0f1;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Testimonial Float */
.testimonial-float {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.testimonial-card:nth-child(2) {
    transform: rotate(2deg) translateY(2rem);
}

.testimonial-card:hover {
    transform: rotate(0) scale(1.02);
}

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

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Services Select */
.services-select {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 2rem);
    min-width: 320px;
    position: relative;
    transition: all 0.3s ease;
}

.service-main {
    transform: scale(1.05) translateY(-1rem);
    border: 3px solid #3498db;
}

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

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

.service-offset-3 {
    transform: translateY(2.5rem);
}

.service-offset-4 {
    transform: translateY(-0.5rem);
}

.service-offset-5 {
    transform: translateY(1.5rem);
}

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card > p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details ul {
    margin-bottom: 2rem;
}

.service-details li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.service-price {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #ecf0f1;
    border-radius: 8px;
}

.price-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.btn-service-select {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: white;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(-3rem);
}

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

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

.form-intro p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #dfe6e9;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2ecc71;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

/* Guarantee Offset */
.guarantee-offset {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    transform: rotate(-1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.guarantee-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.guarantee-card p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Why Us Asymmetric */
.why-us-asymmetric {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.why-content {
    flex: 1.2;
}

.why-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transform: translateX(-2rem);
    transition: all 0.3s ease;
}

.why-item:nth-child(even) {
    transform: translateX(2rem);
}

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

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.why-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.why-image {
    flex: 1;
    transform: rotate(3deg);
}

.why-image img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Final CTA Offset */
.final-cta-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    transform: translateY(-2rem);
}

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

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: white;
    color: #667eea;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-column p,
.footer-column li {
    color: #b2bec3;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: #3498db;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    transform: translateX(-3rem);
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
}

.page-hero-image {
    position: absolute;
    right: -5rem;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    width: 40%;
    opacity: 0.15;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: white;
}

.story-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.story-block {
    max-width: 800px;
}

.story-offset {
    transform: translateX(8rem);
}

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

.story-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Team Asymmetric */
.team-asymmetric {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.team-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.team-member {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.member-offset {
    transform: translateX(5rem);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.member-image {
    width: 200px;
    flex-shrink: 0;
}

.member-image img {
    border-radius: 12px;
    width: 100%;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Values Offset */
.values-offset {
    padding: 6rem 2rem;
    background: white;
}

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

.values-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transform: translateX(-2rem);
}

.value-item:nth-child(even) {
    transform: translateX(4rem);
}

.value-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ecf0f1;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.value-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Clients Section */
.clients-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.clients-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.clients-info {
    max-width: 900px;
    margin: 0 auto;
}

.clients-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* CTA About */
.cta-about {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

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

.cta-about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Services Detail */
.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-detail-card.service-offset {
    transform: translateX(4rem);
}

.service-detail-header {
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-detail-header h2 {
    font-size: 2.5rem;
    flex: 1;
}

.service-price-large .price {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.service-price-large .price-note {
    font-size: 1rem;
    opacity: 0.9;
}

.service-detail-content {
    padding: 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-detail-text {
    flex: 1.5;
    min-width: 350px;
}

.service-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-detail-text h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-text ul {
    margin-bottom: 1.5rem;
}

.service-detail-text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-detail-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-detail-text p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.service-detail-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.service-cta {
    padding: 2rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

.btn-service-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Service Comparison */
.service-comparison {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.service-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    align-items: center;
}

.comparison-header {
    background: #2c3e50;
    color: white;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    font-size: 1.05rem;
}

.comparison-row:not(.comparison-header) .comparison-cell:first-child {
    color: #5a6c7d;
}

.comparison-row:not(.comparison-header) .comparison-cell:last-child {
    color: #3498db;
    font-weight: 600;
}

/* Services CTA Final */
.services-cta-final {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.services-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Contact Hero */
.contact-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Contact Main */
.contact-main {
    padding: 5rem 2rem;
    background: white;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

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

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-detail a {
    color: #3498db;
}

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

.contact-note {
    padding: 1.5rem;
    background: #ebf5fb;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    color: #2c3e50;
    line-height: 1.7;
}

.contact-form-block {
    flex: 1.3;
}

.contact-form-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.form-privacy {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    color: #5a6c7d;
    line-height: 1.6;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: underline;
}

/* Contact FAQ */
.contact-faq {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1;
    min-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Thanks Section */
.thanks-section {
    padding: 10rem 2rem 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-info {
    padding: 1.5rem;
    background: #ebf5fb;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-info p {
    color: #2c3e50;
    font-size: 1.1rem;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.email-link {
    color: #3498db;
    font-weight: 600;
    font-size: 1.2rem;
}

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

/* Legal Page */
.legal-page {
    padding: 10rem 2rem 5rem;
    background: white;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-update {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #34495e;
}

.legal-container p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-container li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    list-style: disc;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text-block {
        transform: translateX(0);
    }

    .hero-image-overlap {
        transform: translateY(0) rotate(0);
    }

    .intro-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-left {
        transform: translateY(0);
    }

    .problem-image-float {
        display: none;
    }

    .problem-text-overlay {
        transform: translateX(0);
    }

    .why-us-asymmetric {
        flex-direction: column;
    }

    .why-image {
        transform: rotate(0);
    }

    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .service-detail-card.service-offset {
        transform: translateX(0);
    }

    .form-container-offset {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 1rem;
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 5rem;
        right: -100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        gap: 1.5rem;
    }

    .nav-menu.active {
        right: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-left h2 {
        font-size: 2rem;
    }

    .step-offset-1,
    .step-offset-2,
    .step-offset-3,
    .step-offset-4 {
        transform: translateX(0);
    }

    .service-card {
        width: 100%;
        transform: translateY(0);
    }

    .service-main,
    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4,
    .service-offset-5 {
        transform: translateY(0);
    }

    .why-item,
    .why-item:nth-child(even) {
        transform: translateX(0);
    }

    .story-offset {
        transform: translateX(0);
    }

    .team-member {
        flex-direction: column;
    }

    .member-offset {
        transform: translateX(0);
    }

    .value-item,
    .value-item:nth-child(even) {
        transform: translateX(0);
    }

    .page-hero-content {
        transform: translateX(0);
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .comparison-row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .faq-item {
        min-width: 100%;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }

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

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .approach-header h2 {
        font-size: 2rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }
}
