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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-light: #ff6b85;
    --text-dark: #0f0f0f;
    --text-light: #f5f5f5;
    --text-gray: #666;
    --bg-light: #fafafa;
    --bg-dark: #1a1a2e;
    --border-color: #e0e0e0;
}

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

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

.cookie-content a {
    color: var(--accent-light);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: var(--accent-light);
}

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

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

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 2rem;
    right: 3rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-brand a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 5% 4rem;
    overflow: hidden;
}

.hero-offset-text {
    flex: 1;
    max-width: 550px;
    margin-right: -5%;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-gray);
    line-height: 1.5;
    max-width: 500px;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-left: 3rem;
    transform: translateY(-3rem);
}

.hero-visual-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-overlay-cta {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    background: var(--accent-color);
    padding: 1.5rem 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.cta-primary {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-primary:hover {
    color: var(--bg-light);
}

/* Intro Staggered */
.intro-staggered {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    transform: translateY(3rem);
}

.intro-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.intro-right {
    flex: 1;
    max-width: 500px;
}

.intro-right p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Visual Statement */
.visual-statement {
    padding: 6rem 5%;
    position: relative;
}

.statement-image {
    width: 70%;
    margin-left: auto;
}

.statement-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.statement-text-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background: white;
    padding: 3rem;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.statement-text-overlay blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

/* Offset Insight */
.offset-insight {
    padding: 8rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-block-left {
    flex: 1;
    padding-right: 2rem;
}

.insight-block-left h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.insight-block-right {
    flex: 1;
    transform: translateY(4rem);
}

.insight-block-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Trust Layer */
.trust-layer {
    padding: 6rem 5%;
    background: var(--bg-dark);
    color: var(--text-light);
}

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

.trust-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.testimonial-inline {
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: var(--accent-light);
    font-style: italic;
}

/* Problem Amplify */
.problem-amplify {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.problem-text {
    flex: 1.2;
}

.problem-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

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

.problem-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.problem-visual {
    flex: 1;
    transform: translateY(-3rem);
}

.problem-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

/* Solution Reveal */
.solution-reveal {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.solution-reveal h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-cards-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.solution-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.card-offset-1 {
    transform: translateY(3rem);
}

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

/* CTA Section Sticky */
.cta-section-sticky {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    text-align: center;
}

.cta-sticky-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 2rem;
}

.cta-btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Services Showcase - Asymmetric */
.services-showcase {
    padding: 8rem 5%;
}

.services-showcase h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    max-width: 900px;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-large {
    transform: translateX(-3rem);
}

.service-medium {
    transform: translateX(3rem);
}

.service-small {
    max-width: 700px;
    margin-left: auto;
}

.service-reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.service-details {
    flex: 1.2;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-details p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Urgency Block */
.urgency-block {
    padding: 6rem 5%;
    background: var(--secondary-color);
    text-align: center;
}

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

.urgency-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 8rem 5%;
}

.benefits-reveal h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefit-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.benefit-1 {
    transform: translateY(2rem);
}

.benefit-2 {
    transform: translateY(-2rem);
}

.benefit-3 {
    transform: translateY(3rem);
}

.benefit-4 {
    transform: translateY(-1rem);
}

/* Form Section */
.form-section {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

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

.form-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

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

.contact-form {
    transform: rotate(1deg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 6rem 5%;
    text-align: center;
    background: var(--bg-dark);
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-light);
}

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

/* Page Hero Offset */
.page-hero-offset {
    padding: 10rem 5% 6rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.page-hero-content {
    max-width: 800px;
    transform: translateX(5%);
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Detail */
.services-detail {
    padding: 6rem 5%;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.service-pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

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

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Services CTA */
.services-cta {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* About Page */
.about-hero {
    padding: 10rem 5% 6rem;
    background: var(--bg-dark);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-split {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    transform: translateY(3rem);
}

.about-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.about-philosophy {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.about-philosophy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

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

.philosophy-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.philosophy-offset {
    transform: translateY(3rem);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.about-approach {
    padding: 8rem 5%;
}

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

.approach-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    min-width: 80px;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.approach-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

.about-values {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.about-values h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.value-offset-1 {
    transform: translateY(2rem);
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.about-impact {
    padding: 8rem 5%;
    background: var(--secondary-color);
}

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

.impact-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 4rem;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 200px;
}

.about-cta {
    padding: 6rem 5%;
    text-align: center;
}

.about-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-hero {
    padding: 10rem 5% 6rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-main {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

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

.contact-detail a {
    color: var(--accent-color);
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-form-side {
    flex: 1.3;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 10rem 5% 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.thanks-message {
    margin: 2rem 0;
}

.service-confirmation {
    font-size: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

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

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 5% 4rem;
}

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

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-floating {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 8rem 5% 4rem;
    }

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

    .hero-visual-block {
        margin-left: 0;
        transform: none;
    }

    .hero-overlay-cta {
        position: static;
        margin-top: 2rem;
    }

    .intro-staggered {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-left {
        transform: none;
    }

    .statement-text-overlay {
        position: static;
        margin-top: 2rem;
    }

    .statement-image {
        width: 100%;
    }

    .offset-insight {
        flex-direction: column;
    }

    .insight-block-right {
        transform: none;
    }

    .problem-amplify {
        flex-direction: column;
        gap: 3rem;
    }

    .problem-visual {
        transform: none;
    }

    .solution-cards-offset {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2 {
        transform: none;
    }

    .service-item {
        flex-direction: column;
        transform: none !important;
    }

    .service-reverse {
        flex-direction: column;
    }

    .service-small {
        margin-left: 0;
    }

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

    .benefit-1,
    .benefit-2,
    .benefit-3,
    .benefit-4 {
        transform: none;
    }

    .form-container-offset {
        transform: none;
    }

    .footer-main {
        flex-direction: column;
    }

    .service-detail-item {
        flex-direction: column;
    }

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

    .about-visual {
        transform: none;
    }

    .philosophy-offset {
        transform: none;
    }

    .value-offset-1,
    .value-offset-2 {
        transform: none;
    }

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

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .approach-step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }
}
