/* Reset & 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: #2d2d2d;
    background: #ffffff;
    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;
}

ul {
    list-style: none;
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23667eea" width="1200" height="800"/><path fill="%23764ba2" opacity="0.5" d="M0 400 Q300 200 600 400 T1200 400 V800 H0 Z"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-primary,
.cta-inline,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: #ffffff;
    color: #2d2d2d;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.cta-inline {
    background: #2d2d2d;
    color: #ffffff;
    margin-top: 2rem;
}

.cta-secondary {
    background: transparent;
    color: #2d2d2d;
    border: 2px solid #2d2d2d;
}

/* Story Hook Section */
.story-hook {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background: #f8f8f8;
}

.story-content {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.story-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

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

.story-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #c2c2c2 0%, #e0e0e0 100%);
    border-radius: 12px;
}

/* Problem Reveal */
.problem-reveal {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background: #ffffff;
}

.problem-visual {
    width: 100%;
    height: 350px;
    background: linear-gradient(-45deg, #ffd89b 0%, #19547b 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.problem-text h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.problem-list {
    margin-bottom: 2rem;
}

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

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #d63031;
    font-size: 1.5rem;
    font-weight: bold;
}

.problem-insight {
    background: #f8f8f8;
    padding: 1.5rem;
    border-left: 4px solid #2d2d2d;
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.05rem;
}

/* Transformation Section */
.transformation {
    padding: 5rem 5%;
    background: #2d2d2d;
    color: #ffffff;
    text-align: center;
}

.transformation h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    font-weight: 700;
}

.transformation-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.transform-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.transform-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.transform-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* Trust Signals */
.trust-signals {
    padding: 5rem 5%;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    color: #4a4a4a;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #2d2d2d;
}

/* Visual Showcase */
.visual-showcase {
    padding: 5rem 5%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-large {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 12px;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-item {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #d3cce3 0%, #e9e4f0 100%);
    border-radius: 12px;
}

/* Deep Benefit */
.deep-benefit {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.deep-benefit h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.benefit-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-step {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    padding-left: 5rem;
}

.step-num {
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
}

.benefit-step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Collections Preview */
.collections-preview {
    padding: 5rem 5%;
    background: #ffffff;
}

.collections-preview h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: #4a4a4a;
}

.collection-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.collection-card {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-image.urban {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-image.active {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-image.premium {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.card-image.trail {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.card-image.studio {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.card-image.limited {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
}

.card-content {
    padding: 2rem;
}

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

.card-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.price-hint {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

.cta-card {
    width: 100%;
    padding: 1rem 2rem;
    background: #2d2d2d;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Urgency Block */
.urgency-block {
    padding: 4rem 5%;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.urgency-note {
    font-weight: 600;
    color: #856404;
}

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.form-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: #4a4a4a;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    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: #2d2d2d;
}

.cta-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #2d2d2d;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Final Trust */
.final-trust {
    padding: 5rem 5%;
    background: #ffffff;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Footer */
.site-footer {
    background: #2d2d2d;
    color: #ffffff;
    padding: 3rem 5%;
}

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

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

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

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.98);
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-accept {
    background: #ffffff;
    color: #2d2d2d;
}

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

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

/* About Page Styles */
.about-hero {
    padding: 8rem 5% 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-lead {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    opacity: 0.95;
}

.about-story {
    padding: 5rem 5%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-block h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.story-visual {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #c2c2c2 0%, #e0e0e0 100%);
    border-radius: 12px;
}

.values-section {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.values-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.value-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.process-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.process-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.process-step {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    padding-left: 5rem;
}

.process-num {
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

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

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

.team-section {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.team-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: #4a4a4a;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.role {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.mission-section {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.mission-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Services Page Styles */
.services-hero {
    padding: 8rem 5% 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 5rem 5%;
    background: #ffffff;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-visual {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.urban-visual {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.active-visual {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.premium-visual {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.trail-visual {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.studio-visual {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.limited-visual {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
}

.service-info h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.service-description p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-features {
    margin: 2rem 0;
}

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

.service-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #43e97b;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

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

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d2d2d;
}

.cta-service {
    padding: 1.2rem 3rem;
    background: #2d2d2d;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 5% 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-info-section {
    padding: 5rem 5%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-block {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
}

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

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

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

.map-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #c2c2c2 0%, #e0e0e0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.faq-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

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

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

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

.contact-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 8rem 5% 5rem;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-message {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
}

.thanks-details p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thanks-next {
    margin: 3rem auto;
    max-width: 700px;
}

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    align-items: center;
}

.thanks-info {
    padding: 5rem 5%;
    background: #ffffff;
}

.thanks-info h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 12px;
}

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

.info-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.info-card a {
    color: #667eea;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages Styles */
.legal-content {
    padding: 8rem 5% 5rem;
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    list-style: disc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.legal-note {
    background: #fff3cd;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin: 1.5rem 0;
    font-size: 1rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .story-hook,
    .problem-reveal,
    .about-story,
    .service-detail {
        flex-direction: row;
        align-items: center;
    }

    .story-content,
    .problem-text {
        flex: 1;
    }

    .story-image,
    .problem-visual,
    .story-visual,
    .service-visual {
        flex: 1;
    }

    .transformation-grid,
    .trust-grid,
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .transform-card,
    .trust-item,
    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .showcase-grid {
        flex-direction: row;
    }

    .showcase-item {
        flex: 1;
    }

    .collection-cards,
    .team-grid,
    .info-grid,
    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .collection-card,
    .team-member,
    .info-card,
    .faq-item {
        flex: 1;
        min-width: 300px;
    }

    .contact-info-section {
        flex-direction: row;
    }

    .contact-details,
    .map-placeholder {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .benefit-flow,
    .process-flow {
        flex-direction: row;
    }

    .benefit-step,
    .process-step {
        flex: 1;
    }
}

/* Mobile Navigation Toggle */
@media (max-width: 767px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

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

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