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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.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;
}

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

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

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

.btn-cookie.accept:hover {
    background: #27ae60;
}

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

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

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

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

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

/* Hero Offset Asymmetric */
.hero-offset {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-right: 3rem;
}

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

.hero-offset h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual-right {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498db;
    color: #fff;
}

/* Insight Asymmetric Section */
.insight-asymmetric {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.insight-small-box {
    flex: 0.4;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    align-self: flex-start;
}

.insight-small-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-large-box {
    flex: 0.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(40px);
}

.quote-large {
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.9;
}

/* Story Narrow Section */
.story-narrow {
    max-width: 720px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-content img {
    width: 100%;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.inline-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ecf0f1;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.inline-cta a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
}

/* Cards Offset Grid */
.cards-offset-grid {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title-asymmetric {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    max-width: 600px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.card-elevated {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card-elevated:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.card-elevated.card-1 {
    transform: translateY(-20px);
}

.card-elevated.card-3 {
    transform: translateY(20px);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ecf0f1;
    margin-bottom: 1rem;
}

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

.card-elevated p {
    color: #546e7a;
    line-height: 1.6;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #fff;
}

.testimonial-left {
    flex: 1;
    padding-right: 4rem;
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.85;
}

.testimonial-right {
    flex: 0.5;
}

.testimonial-right img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

/* Approach Layered */
.approach-layered {
    padding: 6rem 0;
    position: relative;
}

.approach-background {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
}

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

.section-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.approach-block {
    flex: 1;
    min-width: 280px;
}

.approach-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.approach-block p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Stats Irregular */
.stats-irregular {
    padding: 5rem 2rem;
    background: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.stat-box.stat-large {
    flex: 0 1 350px;
}

.stat-box.stat-medium {
    flex: 0 1 280px;
    transform: translateY(30px);
}

.stat-box.stat-small {
    flex: 0 1 240px;
    transform: translateY(-20px);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.5;
}

/* CTA Overlap */
.cta-overlap {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-box {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    background: #fff;
    color: #3498db;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

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

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

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

.footer-brand {
    flex: 1.5;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col h3 {
    font-size: 1.5rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul 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: #95a5a6;
}

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

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

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

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Page Hero Minimal */
.page-hero-minimal {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.page-hero-minimal h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #546e7a;
}

/* About Story Offset */
.about-story-offset {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-visual {
    flex: 0.45;
}

.story-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.story-text {
    flex: 0.55;
}

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

.story-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Insight Cards Irregular */
.insight-cards-irregular {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.insight-card.insight-wide {
    flex: 2;
    min-width: 300px;
}

.insight-card.insight-narrow {
    flex: 1;
    min-width: 250px;
    background: #3498db;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-number {
    font-size: 4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

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

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #546e7a;
}

.insight-card.insight-narrow p {
    color: #fff;
}

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

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.team-member.member-large {
    flex: 1 1 100%;
    display: flex;
}

.team-member.member-small {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

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

.team-member.member-large .member-photo {
    flex: 0.4;
}

.team-member.member-large .member-info {
    flex: 0.6;
    padding: 3rem;
}

.team-member.member-small .member-info {
    padding: 2rem;
}

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

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

.member-info p {
    color: #546e7a;
    line-height: 1.6;
}

/* Philosophy Layered */
.philosophy-layered {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.philosophy-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.label-small {
    display: inline-block;
    background: #ecf0f1;
    color: #34495e;
    padding: 0.3rem 0.9rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.philosophy-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.philosophy-box p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

/* Values Offset Cards */
.values-offset-cards {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.values-offset-cards h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border-left: 4px solid #3498db;
}

.value-card:nth-child(even) {
    transform: translateY(20px);
}

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

.value-card p {
    color: #546e7a;
    line-height: 1.6;
}

/* CTA About */
.cta-about {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.cta-content-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.cta-buttons-about {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

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

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

/* Services Hero Split */
.services-hero-split {
    margin-top: 80px;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero-left {
    flex: 1;
}

.services-hero-left h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-hero-left p {
    font-size: 1.2rem;
    color: #546e7a;
}

.services-hero-right {
    flex: 1;
}

.services-hero-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

/* Services Intro Narrow */
.services-intro-narrow {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

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

.intro-lead {
    font-size: 1.25rem;
    color: #2c3e50;
    line-height: 1.7;
    text-align: center;
}

/* Services List Asymmetric */
.services-list-asymmetric {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-item.service-large {
    display: flex;
}

.service-item.service-medium {
    display: flex;
    flex-direction: row-reverse;
}

.service-item.service-compact {
    padding: 3rem;
}

.service-item.service-highlight {
    position: relative;
    border: 3px solid #3498db;
    display: flex;
}

.service-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 3rem;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.service-content {
    flex: 1;
    padding: 3rem;
}

.service-visual {
    flex: 0.45;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tag {
    display: inline-block;
    background: #ecf0f1;
    color: #34495e;
    padding: 0.3rem 0.9rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #546e7a;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

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

.price {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.3rem;
}

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

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

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

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

.form-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #546e7a;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    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;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

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

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.btn-submit-form {
    background: #3498db;
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.faq-item p {
    color: #546e7a;
    line-height: 1.6;
}

/* Contact Hero Minimal */
.contact-hero-minimal {
    margin-top: 80px;
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.contact-hero-minimal h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Contact Split Layout */
.contact-split-layout {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 0.4;
}

.contact-content-side {
    flex: 0.6;
}

.contact-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-box h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    color: #546e7a;
    line-height: 1.6;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.quick-questions {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.quick-questions h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.quick-questions p {
    font-size: 1.05rem;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.cta-box-contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.cta-box-contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Thanks Hero */
.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-info p {
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

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

/* Thanks Next Steps */
.thanks-next-steps {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

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

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

.step-item p {
    color: #546e7a;
    line-height: 1.6;
}

/* Legal Page */
.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    min-height: 70vh;
}

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

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

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

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

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

.legal-container p {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-container li {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 1rem;
    }

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

    .hero-offset {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-offset h1 {
        font-size: 2rem;
    }

    .hero-visual-right {
        transform: none;
        margin-top: 2rem;
    }

    .insight-wrapper,
    .about-story-offset,
    .testimonial-split,
    .services-hero-split,
    .contact-split-layout {
        flex-direction: column;
    }

    .testimonial-left {
        padding-right: 0;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .service-item.service-large,
    .service-item.service-medium,
    .service-item.service-highlight {
        flex-direction: column;
    }

    .service-visual {
        min-height: 250px;
    }

    .form-row {
        flex-direction: column;
    }

    .stat-box {
        transform: none !important;
    }

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

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

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

    .page-hero-minimal h1,
    .contact-hero-minimal h1 {
        font-size: 2rem;
    }

    .section-title-asymmetric,
    .section-title-offset {
        font-size: 1.8rem;
    }

    .cta-box h2,
    .thanks-content h1 {
        font-size: 1.8rem;
    }
}
