* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a202c;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #667eea;
}

.nav-cta {
    background: #667eea;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-offset-left {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    margin-left: 5%;
}

.hero-label {
    display: inline-block;
    background: #edf2f7;
    color: #4a5568;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-offset-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.hero-large {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-box {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    z-index: -1;
}

.hero-visual-right img {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-primary:hover {
    background: #5568d3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.insight-strip {
    background: #1a202c;
    color: #ffffff;
    padding: 3rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.strip-content {
    max-width: 900px;
    margin: 0 auto;
    transform: skewY(2deg);
    text-align: center;
}

.strip-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.problem-overlap {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.overlap-image {
    flex: 0 0 45%;
    position: relative;
}

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

.overlap-text {
    flex: 1;
    padding-left: 2rem;
}

.overlap-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 800;
}

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

.cost-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
}

.cost-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.insight-text {
    background: #edf2f7;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    font-style: italic;
    margin-top: 2rem;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: #f7fafc;
}

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

.section-marker {
    display: inline-block;
    color: #667eea;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: #1a202c;
    font-weight: 800;
    max-width: 600px;
}

.service-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 2rem);
    min-width: 350px;
}

.card-medium {
    flex: 1 1 calc(50% - 2rem);
    min-width: 320px;
}

.card-small {
    flex: 1 1 calc(40% - 2rem);
    min-width: 300px;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.service-card p {
    flex: 1;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.btn-service {
    background: #1a202c;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2d3748;
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.trust-diagonal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    margin: 6rem 0;
    position: relative;
}

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

.diagonal-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.trust-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-item p {
    line-height: 1.8;
    opacity: 0.95;
}

.testimonial-offset {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-box {
    flex: 1;
    background: #edf2f7;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    margin-left: 8%;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #2d3748;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #667eea;
}

.testimonial-visual {
    flex: 0 0 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.2;
}

.approach-cards {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a202c;
    font-weight: 800;
}

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

.approach-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.approach-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.7;
}

.results-split {
    display: flex;
    padding: 6rem 2rem;
    gap: 4rem;
    background: #1a202c;
    color: #ffffff;
}

.results-left {
    flex: 0 0 40%;
    padding-right: 2rem;
}

.results-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.metric-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.results-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-story {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.form-section {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 800;
}

.form-intro p {
    font-size: 1.125rem;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit {
    background: #667eea;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.final-cta-strip {
    background: #667eea;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.final-cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.footer-asymmetric {
    background: #1a202c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.footer-col a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

.page-hero-offset {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-text-stack {
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-stack h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.story-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.story-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 800;
}

.story-content-narrow p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.philosophy-offset {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
    background: #f7fafc;
}

.philosophy-visual {
    flex: 0 0 35%;
}

.philosophy-visual img {
    width: 100%;
    border-radius: 12px;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 800;
}

.principle-block {
    margin-bottom: 2.5rem;
}

.principle-block h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.principle-block p {
    color: #4a5568;
    line-height: 1.7;
}

.team-approach {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-description {
    margin-top: 2rem;
}

.team-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.values-asymmetric {
    padding: 6rem 2rem;
    background: #1a202c;
    color: #ffffff;
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.values-header h2 {
    font-size: 3rem;
    font-weight: 800;
}

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

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

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.experience-strip {
    padding: 4rem 2rem;
    background: #f7fafc;
}

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

.experience-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.sector-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.sector-tag {
    background: #667eea;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.cta-about {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

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

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

.intro-content-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.intro-left p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.intro-right {
    flex: 0 0 45%;
}

.pricing-note {
    background: #edf2f7;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.pricing-note h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.pricing-note ul {
    list-style: none;
}

.pricing-note li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.pricing-note li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

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

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-header h3 {
    font-size: 2rem;
    font-weight: 700;
}

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

.service-detail-body {
    padding: 2.5rem;
}

.service-overview {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 500;
}

.service-detail-body h4 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-detail-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-body li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-combinations {
    padding: 4rem 2rem;
    background: #f7fafc;
}

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

.combo-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.combo-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.combo-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.combo-price {
    display: block;
    font-weight: 700;
    color: #667eea;
    font-size: 1.125rem;
}

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

.services-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
    font-weight: 800;
}

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

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

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.services-cta-final {
    padding: 6rem 2rem;
    text-align: center;
    background: #1a202c;
    color: #ffffff;
}

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

.cta-final-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 800;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-block a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual-side {
    flex: 0 0 40%;
}

.visual-placeholder img {
    width: 100%;
    border-radius: 12px;
}

.contact-approach {
    padding: 6rem 2rem;
    background: #f7fafc;
}

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

.approach-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a202c;
    font-weight: 800;
}

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

.approach-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

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

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    background: #edf2f7;
    padding: 3rem;
    border-radius: 12px;
}

.cta-box-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.cta-box-centered p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.thanks-message {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.7;
}

.thanks-next-steps {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
    font-weight: 800;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-badge {
    flex: 0 0 50px;
    height: 50px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-resources {
    padding: 4rem 2rem;
    background: #f7fafc;
}

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

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

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

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.resource-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.resource-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #5568d3;
}

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

.reassurance-box {
    background: #edf2f7;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.reassurance-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.reassurance-box p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page {
    padding: 4rem 2rem;
    background: #f7fafc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 800;
}

.legal-updated {
    color: #718096;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2d3748;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

.cookie-table thead {
    background: #edf2f7;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-left {
        padding-right: 0;
        margin-left: 0;
        max-width: 100%;
    }

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

    .problem-overlap,
    .testimonial-offset,
    .philosophy-offset,
    .contact-split {
        flex-direction: column;
    }

    .results-split {
        flex-direction: column;
    }

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

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

    .intro-right {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero-text-stack h1 {
        font-size: 2.5rem;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .services-header-offset h2,
    .centered-heading {
        font-size: 2rem;
    }

    .trust-blocks,
    .approach-grid,
    .values-grid {
        flex-direction: column;
    }

    .service-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

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

    .resource-cards {
        flex-direction: column;
    }

    .legal-container {
        padding: 2rem;
    }

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

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

    .hero-large {
        font-size: 1.125rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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