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

:root {
    --primary-color: #00ff88;
    --secondary-color: #0066ff;
    --dark-bg: #0a0a0f;
    --mid-bg: #1a1a24;
    --light-bg: #2a2a38;
    --text-light: #ffffff;
    --text-gray: #b0b0c0;
    --accent-purple: #8844ff;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
    --spacing-xlarge: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: rgba(26, 26, 36, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta .btn-nav {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav-cta .btn-nav:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--mid-bg);
    padding: 1.5rem;
    z-index: 2000;
    border-top: 2px solid var(--primary-color);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: var(--text-gray);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    transform: translateY(-2px);
}

.hero-asymmetric {
    padding: 10rem 2rem 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    transform: translateY(3rem);
}

.hero-label {
    display: inline-block;
    background: var(--accent-purple);
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-content-offset p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual-overlap {
    flex: 1;
    transform: translateY(-2rem) rotate(-2deg);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.trust-indicators-offset {
    display: flex;
    justify-content: space-around;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.trust-block {
    text-align: center;
    padding: 2rem;
    background: var(--mid-bg);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.trust-block.trust-elevated {
    transform: translateY(-1.5rem);
    background: linear-gradient(135deg, var(--accent-purple), var(--secondary-color));
}

.trust-block:hover {
    transform: translateY(-0.5rem);
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-gray);
    font-size: 1rem;
}

.intro-story-irregular {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-text-narrow {
    flex: 1.2;
    max-width: 650px;
}

.story-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-text-narrow p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.story-visual-stagger {
    flex: 1;
    transform: rotate(3deg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.3);
}

.insight-block-diagonal {
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
    padding: 5rem 2rem;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

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

.insight-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

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

.insight-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.services-showcase-asymmetric {
    padding: 6rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    transform: translateX(3rem);
}

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

.services-header-offset p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

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

.service-card {
    background: var(--mid-bg);
    padding: 2rem;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.service-card.service-large {
    flex: 1 1 calc(66.666% - 2rem);
}

.service-card.service-wide {
    flex: 1 1 100%;
}

.service-card.service-elevated {
    transform: translateY(-1rem);
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
}

.service-card.service-accent {
    background: linear-gradient(135deg, var(--accent-purple), var(--mid-bg));
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-service {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.social-proof-staggered {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-offset,
.testimonial-elevated {
    background: var(--mid-bg);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 800px;
}

.testimonial-offset {
    align-self: flex-start;
    transform: translateX(2rem);
}

.testimonial-elevated {
    align-self: flex-end;
    transform: translateX(-2rem) translateY(-1rem);
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
}

.testimonial-offset:nth-child(3) {
    align-self: center;
}

blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

cite {
    color: var(--text-gray);
    font-style: normal;
    font-size: 0.95rem;
}

.cta-diagonal-block {
    background: linear-gradient(135deg, var(--accent-purple), var(--secondary-color));
    padding: 5rem 2rem;
    transform: skewY(-3deg);
    margin: 5rem 0;
}

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

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

.cta-content-overlap p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-offset {
    flex: 1;
    transform: translateY(2rem);
}

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

.form-intro-offset p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.form-container-elevated {
    flex: 1.2;
    background: var(--mid-bg);
    padding: 3rem;
    border-radius: 12px;
    transform: translateY(-1rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: var(--light-bg);
    border: 1px solid var(--text-gray);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.tech-stack-offset {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-stack-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tech-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.tech-item {
    background: var(--mid-bg);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-gray);
    transition: transform 0.3s ease, background 0.3s ease;
}

.tech-item.tech-highlight {
    background: linear-gradient(135deg, var(--accent-purple), var(--secondary-color));
    color: var(--text-light);
}

.tech-item:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--dark-bg);
}

.footer-asymmetric {
    background: var(--mid-bg);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
    text-align: center;
    color: var(--text-gray);
}

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

.about-intro-diagonal {
    flex: 1;
    transform: translateY(2rem);
}

.about-intro-diagonal h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-intro-diagonal p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.about-visual-stagger {
    flex: 1;
    transform: rotate(-2deg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.origin-story-irregular {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-block-offset {
    flex: 1.3;
}

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

.story-block-offset p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.story-image-elevated {
    flex: 1;
    transform: translateY(-2rem);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(136, 68, 255, 0.3);
}

.philosophy-diagonal {
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
    padding: 5rem 2rem;
    transform: skewY(2deg);
    margin: 4rem 0;
}

.philosophy-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    transform: skewY(-2deg);
}

.principles-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    transform: skewY(-2deg);
}

.principle-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease;
}

.principle-card.principle-large {
    transform: translateY(-1rem);
}

.principle-card.principle-elevated {
    transform: translateY(1rem);
}

.principle-card:hover {
    transform: translateY(-0.5rem);
}

.principle-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.principle-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-showcase-staggered {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.team-grid-irregular {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    background: var(--mid-bg);
    padding: 2rem;
    border-radius: 12px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

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

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

.team-member:hover {
    transform: translateY(0);
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-gray);
}

.achievements-diagonal {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-diagonal h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.achievement-item {
    background: var(--mid-bg);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
}

.achievement-item.achievement-elevated {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 120px;
}

.achievement-text {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.values-offset {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.values-content-diagonal {
    background: linear-gradient(135deg, var(--accent-purple), var(--secondary-color));
    padding: 4rem;
    border-radius: 12px;
    transform: rotate(-1deg);
}

.values-content-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.values-content-diagonal p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.services-intro-offset {
    max-width: 800px;
    transform: translateX(3rem);
}

.services-intro-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.services-intro-offset p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

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

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--mid-bg);
    border-radius: 12px;
}

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

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

.service-detail-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    color: var(--text-gray);
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-timeline {
    color: var(--text-gray);
    font-size: 1rem;
}

.process-section-diagonal {
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
    padding: 5rem 2rem;
    transform: skewY(-2deg);
    margin: 5rem 0;
}

.process-section-diagonal h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    transform: skewY(2deg);
}

.process-steps-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    transform: skewY(2deg);
}

.process-step {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease;
}

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

.process-step.step-elevated {
    transform: translateY(-1.5rem);
}

.process-step:hover {
    transform: translateY(0);
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-gray);
}

.contact-hero-diagonal {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro-offset {
    max-width: 800px;
    transform: translateX(3rem);
}

.contact-intro-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-intro-offset p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.contact-info-asymmetric {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-details-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    background: var(--mid-bg);
    padding: 2rem;
    border-radius: 12px;
}

.contact-block.contact-elevated {
    transform: translateX(2rem);
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-visual-stagger {
    flex: 1;
    transform: rotate(2deg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.contact-reasons-diagonal {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-reasons-diagonal h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.reasons-grid-irregular {
    display: flex;
    gap: 2rem;
}

.reason-card {
    background: var(--mid-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease;
}

.reason-card.reason-offset {
    transform: translateY(1.5rem);
}

.reason-card.reason-elevated {
    transform: translateY(-1.5rem);
}

.reason-card:hover {
    transform: translateY(0);
}

.reason-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--text-gray);
}

.faq-section-offset {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-item {
    background: var(--mid-bg);
    padding: 2rem;
    border-radius: 12px;
    max-width: 900px;
}

.faq-item.faq-elevated {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-final-diagonal {
    background: linear-gradient(135deg, var(--accent-purple), var(--secondary-color));
    padding: 5rem 2rem;
    transform: skewY(2deg);
    margin: 5rem 0;
}

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

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

.cta-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-hero-diagonal {
    padding: 10rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.steps-grid-irregular {
    display: flex;
    gap: 2rem;
}

.step-card {
    background: var(--mid-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease;
}

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

.step-card.step-elevated {
    transform: translateY(-1.5rem);
}

.step-card:hover {
    transform: translateY(0);
}

.step-icon {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.step-time {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.resources-diagonal h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.resource-card {
    background: var(--mid-bg);
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease;
}

.resource-card.resource-elevated {
    transform: translateY(-1.5rem);
    background: linear-gradient(135deg, var(--mid-bg), var(--light-bg));
}

.resource-card:hover {
    transform: translateY(-0.5rem);
}

.resource-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-offset {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-reminder {
    background: var(--mid-bg);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.contact-reminder h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-reminder p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-hero {
    padding: 8rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.legal-content {
    padding: 2rem 2rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-text p {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-text li {
    color: var(--text-gray);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-text strong {
    color: var(--text-light);
}

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

.cookie-table thead {
    background: var(--mid-bg);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-bg);
}

.cookie-table th {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-story-irregular,
    .origin-story-irregular,
    .form-section-asymmetric,
    .contact-info-asymmetric,
    .about-hero-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content-offset,
    .story-text-narrow,
    .story-block-offset,
    .form-intro-offset {
        transform: translateY(0);
    }

    .hero-visual-overlap,
    .story-visual-stagger,
    .story-image-elevated,
    .contact-visual-stagger,
    .about-visual-stagger {
        transform: rotate(0);
    }

    .services-header-offset,
    .services-intro-offset,
    .contact-intro-offset {
        transform: translateX(0);
    }

    .principles-grid-asymmetric,
    .team-grid-irregular,
    .process-steps-irregular,
    .reasons-grid-irregular,
    .steps-grid-irregular,
    .resources-grid-offset {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
        transform: translateX(0);
    }

    .service-detail-card.service-offset-right {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-content-offset h1,
    .about-intro-diagonal h1,
    .services-intro-offset h1,
    .contact-intro-offset h1 {
        font-size: 2.5rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .trust-indicators-offset {
        flex-direction: column;
    }

    .trust-block.trust-elevated {
        transform: translateY(0);
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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