* {
    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: #2c2c2c;
    background: #fafafa;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
}

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

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

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

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

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

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

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

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

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

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

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    pointer-events: all;
}

.btn-sticky {
    background: #2c2c2c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    opacity: 1;
}

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

.hero-offset-left {
    width: 45%;
    padding-right: 3rem;
}

.hero-text-block {
    max-width: 600px;
}

.hero-headline {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
}

.hero-offset-right {
    width: 55%;
    position: absolute;
    right: 0;
    top: 20%;
}

.hero-image-container {
    width: 90%;
    margin-left: auto;
}

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

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

.intro-narrow {
    width: 60%;
    max-width: 700px;
}

.intro-lead {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-follow {
    font-size: 1.25rem;
    color: #666;
}

.intro-offset-block {
    width: 40%;
    padding-top: 3rem;
}

.link-inline {
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 4px;
}

.problem-amplification {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

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

.text-overlap-left {
    width: 55%;
}

.text-overlap-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-overlap-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}

.image-overlap-right {
    width: 45%;
}

.image-overlap-right img {
    border-radius: 8px;
}

.insight-section {
    padding: 8rem 2rem;
    background: #2c2c2c;
    color: #fff;
}

.insight-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-headline {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ddd;
}

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

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

.story-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-card-offset {
    margin-top: 3rem;
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
}

.story-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

.trust-builder {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

.testimonial-inline {
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #2c2c2c;
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.attribution {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

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

.benefits-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.benefits-left {
    width: 50%;
}

.benefits-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #2c2c2c;
}

.benefits-right {
    width: 50%;
}

.benefits-right img {
    border-radius: 8px;
}

.cta-block-one {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #fff;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #2c2c2c;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

.btn-secondary:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.services-pricing {
    padding: 6rem 2rem;
    background: #fff;
}

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

.pricing-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card-elevated {
    margin-top: 2rem;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2c2c2c;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #4a4a4a;
}

.urgency-element {
    padding: 3rem 2rem;
    background: #fffbeb;
    border-top: 2px solid #f59e0b;
    border-bottom: 2px solid #f59e0b;
}

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

.urgency-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.urgency-subtext {
    font-size: 1rem;
    color: #666;
}

.visual-break {
    padding: 0;
    margin: 4rem 0;
}

.break-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.final-trust {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.trust-item p {
    color: #666;
    line-height: 1.7;
}

.order-section {
    padding: 6rem 2rem;
    background: #fff;
}

.order-container {
    max-width: 700px;
    margin: 0 auto;
}

.order-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.order-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: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.btn-submit {
    padding: 1.25rem 3rem;
    background: #2c2c2c;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4a4a4a;
}

.cta-final {
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-final-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: #fff;
    opacity: 1;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.1rem;
    font-weight: 600;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.thanks-steps li:before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #fff;
    text-align: center;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.3rem;
    color: #ddd;
}

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

.intro-text-narrow {
    text-align: center;
}

.intro-text-narrow p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

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

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

.collection-item-reverse {
    flex-direction: row-reverse;
}

.collection-visual {
    flex: 1;
}

.collection-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.collection-details {
    flex: 1;
}

.collection-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.collection-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.25rem;
}

.collection-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.collection-specs span {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.collection-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.cta-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #fff;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-hero-content p {
    font-size: 1.5rem;
    color: #ddd;
}

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

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.story-image {
    flex: 1;
}

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

.philosophy-section {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.7;
}

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

.process-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ccc;
    min-width: 60px;
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.values-section {
    padding: 6rem 2rem;
    background: #2c2c2c;
    color: #fff;
}

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

.values-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-block {
    flex: 1;
    min-width: 300px;
}

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

.value-block p {
    color: #ddd;
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.cta-about {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.cta-about h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #fff;
    text-align: center;
}

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

.contact-hero-content p {
    font-size: 1.3rem;
    color: #ddd;
}

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

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

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

.contact-visual {
    flex: 1;
}

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

.visual-caption {
    margin-top: 1rem;
    text-align: center;
}

.visual-caption p {
    font-size: 0.9rem;
    color: #999;
}

.directions-section {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

.directions-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.direction-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.direction-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.direction-item p {
    color: #666;
    line-height: 1.7;
}

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

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

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

.faq-item {
    border-left: 4px solid #2c2c2c;
    padding-left: 1.5rem;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

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

.cta-contact {
    padding: 5rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.cta-contact h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.legal-page {
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #444;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

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

    .hero-offset-left,
    .hero-offset-right {
        width: 100%;
        position: relative;
    }

    .hero-offset-right {
        top: 0;
        margin-top: 3rem;
    }

    .hero-image-container {
        width: 100%;
    }

    .hero-headline {
        font-size: 3rem;
    }

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

    .intro-narrow,
    .intro-offset-block {
        width: 100%;
    }

    .overlap-container {
        flex-direction: column;
    }

    .text-overlap-left,
    .image-overlap-right {
        width: 100%;
    }

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

    .benefits-left,
    .benefits-right {
        width: 100%;
    }

    .collection-item,
    .collection-item-reverse {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-floating {
        width: calc(100% - 2rem);
        padding: 1rem;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 5rem;
        left: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        display: none;
    }

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

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

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

    .intro-lead {
        font-size: 1.25rem;
    }

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

    .insight-headline {
        font-size: 2rem;
    }

    .insight-text {
        font-size: 1.1rem;
    }

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

    .story-card-offset {
        margin-top: 0;
    }

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

    .service-card-elevated {
        margin-top: 0;
    }

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

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

    .thanks-container h1 {
        font-size: 2rem;
    }

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