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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

.btn-accept {
    background: #0066ff;
    color: #ffffff;
}

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

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

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

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

.nav-brand a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero-content-offset {
    max-width: 600px;
    z-index: 2;
    padding-right: 2rem;
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0066ff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title-large {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle-minimal {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.hero-cta-wrapper {
    margin-top: 2rem;
}

.hero-visual-block {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 85%;
    z-index: 1;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary-hero {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: #0066ff;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary-hero:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary-inline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #0066ff;
    font-weight: 600;
    border: 2px solid #0066ff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary-inline:hover {
    background: #0066ff;
    color: #ffffff;
}

.btn-large-primary {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-large-primary:hover {
    background: #0066ff;
    transform: translateY(-2px);
}

.btn-tertiary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f5f5f5;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    background: #e0e0e0;
}

/* Statement Section */
.statement-offset {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.statement-inner {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 15%;
}

.statement-text {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    color: #1a1a1a;
    border-left: 4px solid #0066ff;
    padding-left: 2rem;
    font-style: italic;
}

/* Reality Split Section */
.reality-split {
    padding: 8rem 3rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.reality-left {
    flex: 1;
    padding-right: 3rem;
}

.reality-right {
    flex: 1;
}

.reality-right img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section-title-irregular {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.text-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.25rem;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.problem-grid-asymmetric {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card:nth-child(1) {
    transform: translateY(-20px);
}

.problem-card:nth-child(2) {
    transform: translateY(20px);
}

.problem-card:nth-child(3) {
    transform: translateY(0);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Transformation Visual */
.transformation-visual {
    padding: 8rem 3rem;
}

.transformation-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.transformation-text {
    flex: 1;
}

.transformation-image {
    flex: 1;
}

.transformation-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section-title-bold {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 2rem;
}

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

.list-spaced li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.list-spaced li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: bold;
}

/* Services Preview Asymmetric */
.services-preview-asymmetric {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem auto;
    padding-left: 10%;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0066ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title-xl {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.services-grid-irregular {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-large {
    grid-column: span 2;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card-medium {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-small {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-large:hover,
.service-card-medium:hover,
.service-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0066ff;
    margin-bottom: 1rem;
}

.service-card-large h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-medium h3,
.service-card-small h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-large p,
.service-card-medium p,
.service-card-small p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.service-link {
    display: inline-block;
    color: #0066ff;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Insight Section */
.insight-section {
    padding: 8rem 3rem;
    background: #0066ff;
    color: #ffffff;
}

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

.insight-title {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 2rem;
}

.insight-body {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.insight-stats {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 250px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

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

/* Testimonials Asymmetric */
.testimonials-asymmetric {
    padding: 8rem 3rem;
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #0066ff;
}

.testimonial-offset-left {
    transform: translateY(-30px);
}

.testimonial-offset-right {
    transform: translateY(30px);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

/* CTA Block Visual */
.cta-block-visual {
    padding: 8rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.cta-content-offset {
    flex: 1;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-image-block {
    flex: 1;
}

.cta-image-block img {
    border-radius: 8px;
}

/* Process Section */
.process-section {
    padding: 8rem 3rem;
}

.section-title-centered {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-1 {
    transform: translateY(-15px);
}

.step-2 {
    transform: translateY(15px);
}

.step-3 {
    transform: translateY(-10px);
}

.step-4 {
    transform: translateY(10px);
}

.step-number {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0066ff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* Form Section */
.form-section {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
}

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

.form-intro {
    margin-bottom: 3rem;
    padding-left: 10%;
}

.form-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.form-description {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    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: #ffffff;
    background: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* Final Push */
.final-push {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

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

.final-text {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

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

.footer-main {
    flex: 2;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: #0066ff;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

/* Services Page Specific */
.page-hero-offset {
    padding: 150px 3rem 5rem 3rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

.page-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #666;
}

.services-intro {
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-large {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333;
}

.services-full-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem 6rem 3rem;
}

.service-item-detailed {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-odd {
    flex-direction: row;
}

.service-even {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

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

.service-content {
    flex: 1;
}

.service-number {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0066ff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.service-description-extended {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

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

.service-includes h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: bold;
}

.service-pricing-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066ff;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0066ff;
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

.services-cta {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

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

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

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

/* About Page */
.about-story {
    padding: 6rem 3rem;
}

.about-story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-block {
    flex: 1;
}

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

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-approach {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
}

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

.principle-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #0066ff;
}

.principle-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.principle-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.about-team {
    padding: 6rem 3rem;
}

.team-grid-asymmetric {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto 0 auto;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member:nth-child(2) {
    transform: translateY(30px);
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #0066ff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.about-results {
    padding: 6rem 3rem;
    background: #0066ff;
    color: #ffffff;
}

.results-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-philosophy {
    padding: 6rem 3rem;
}

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

.philosophy-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.philosophy-quote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 600;
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid #0066ff;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.about-cta {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

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

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

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

/* Contact Page */
.contact-main {
    padding: 4rem 3rem;
}

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

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

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0066ff;
}

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

.contact-detail a {
    color: #0066ff;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-approach {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.approach-box {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

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

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #0066ff;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.approach-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.approach-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-faq {
    padding: 6rem 3rem;
}

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

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

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

.faq-item {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0066ff;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

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

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

.thanks-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
}

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

.thanks-what-next {
    padding: 6rem 3rem;
    background: #f9f9f9;
}

.what-next-content {
    max-width: 1200px;
    margin: 0 auto;
}

.what-next-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

.what-next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.next-step-number {
    width: 50px;
    height: 50px;
    background: #0066ff;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.next-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-resources {
    padding: 6rem 3rem;
}

.resources-content {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.resources-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0066ff;
    transition: all 0.3s ease;
}

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

.resource-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Legal Pages */
.legal-page {
    padding: 150px 3rem 6rem 3rem;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem 0;
    color: #333;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #0066ff;
    text-decoration: underline;
}

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

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

.gdpr-table td,
.cookies-table td {
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 2rem 3rem 2rem;
    }

    .hero-visual-block {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        height: 400px;
        margin-top: 3rem;
    }

    .hero-title-large {
        font-size: 3rem;
    }

    .reality-split {
        flex-direction: column;
        gap: 3rem;
    }

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

    .services-grid-irregular {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        grid-column: span 1;
    }

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

    .testimonial-offset-left,
    .testimonial-offset-right {
        transform: translateY(0);
    }

    .cta-block-visual {
        flex-direction: column;
    }

    .service-item-detailed {
        flex-direction: column !important;
        gap: 2rem;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-subtitle-minimal {
        font-size: 1.2rem;
    }

    .section-title-irregular,
    .section-title-bold {
        font-size: 2rem;
    }

    .section-title-xl {
        font-size: 2.5rem;
    }

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

    .insight-title,
    .cta-title {
        font-size: 2rem;
    }

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

    .contact-form {
        padding: 2rem;
    }

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

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .process-steps-irregular .process-step {
        transform: translateY(0) !important;
    }
}
