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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    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;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.96);
    color: #fff;
    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;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

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

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
}

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

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

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.hero-offset-block {
    position: absolute;
    top: 10%;
    right: 0;
    width: 55%;
    height: 70%;
    transform: skewY(-3deg);
    overflow: hidden;
}

.hero-visual {
    width: 100%;
    height: 100%;
    transform: skewY(3deg) scale(1.2);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-float {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin-left: 5%;
    transform: translateY(-2rem);
}

.hero-text-float h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* CTAs */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Intro Curiosity - Asymmetric */
.intro-curiosity {
    padding: 6rem 2rem;
    background: #fff;
}

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

.text-narrow-left {
    flex: 1;
    max-width: 500px;
}

.text-narrow-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.text-narrow-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

/* Problem Amplify - Split Diagonal */
.problem-amplify {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.split-diagonal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.content-block {
    flex: 1;
    padding: 2rem;
}

.content-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.visual-diagonal {
    flex: 1;
    transform: rotate(-2deg);
}

.visual-diagonal img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Story Reveal - Offset Cards */
.story-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.story-card:nth-child(even) {
    flex-direction: row-reverse;
}

.card-visual {
    flex: 1;
}

.card-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-story {
    flex: 1;
    padding: 2rem;
}

.card-story h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-story p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.story-insight {
    font-style: italic;
    color: #7f8c8d;
    border-left: 3px solid #e74c3c;
    padding-left: 1rem;
}

/* Insight Core - Centered Message */
.insight-core {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.centered-message h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.centered-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Trust Building - Asymmetric Grid */
.trust-building {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.trust-block {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.trust-block:nth-child(2) {
    transform: translateY(-2rem);
}

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

.trust-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.trust-icon img {
    width: 100%;
    height: 100%;
}

.trust-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* Testimonials Inline Flow */
.testimonials-inline {
    padding: 6rem 2rem;
    background: #fff;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem 3rem;
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    position: relative;
}

.testimonial:nth-child(even) {
    margin-left: 4rem;
}

.testimonial:nth-child(odd) {
    margin-right: 4rem;
}

.testimonial p {
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #7f8c8d;
}

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.2rem;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid #e74c3c;
    transform: scale(1.05);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    flex: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.cta-service {
    display: block;
    text-align: center;
    padding: 1rem;
    background: #2c3e50;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #1a252f;
}

.services-note {
    text-align: center;
    margin-top: 3rem;
}

.link-subtle {
    color: #e74c3c;
    font-size: 1.1rem;
}

.link-subtle:hover {
    text-decoration: underline;
}

/* Urgency Block */
.urgency-block {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

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

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.urgency-stat {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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: #e74c3c;
}

.btn-submit {
    padding: 1.2rem;
    background: #e74c3c;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.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;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #aaa;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.5);
}

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

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

.lead-text {
    font-size: 1.3rem;
}

.about-story {
    padding: 6rem 2rem;
    background: #fff;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-text {
    flex: 1;
}

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

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

.manifesto-core {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.manifesto-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-statement h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.belief-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

.team-approach {
    padding: 6rem 2rem;
    background: #fff;
}

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

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.approach-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.philosophy {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #fff;
}

.philosophy-text {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: #e74c3c;
    color: #fff;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #fff;
}

/* Services Page */
.services-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    text-align: center;
}

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

.services-hero-content p {
    font-size: 1.3rem;
}

.services-full {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail.featured-service {
    border: 3px solid #e74c3c;
}

.service-visual {
    flex: 1;
}

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

.service-info {
    flex: 1;
}

.service-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-tag.highlight {
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-info h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.popular-badge {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-select-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.comparison-note {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.comparison-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.comparison-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.contact-main {
    padding: 6rem 2rem;
    background: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.contact-block a {
    color: #e74c3c;
}

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

.note-text {
    font-size: 0.9rem;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

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

.visual-caption {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #7f8c8d;
}

.faq-contact {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: #fff;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-confirmation {
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 4px;
}

.selected-service {
    font-size: 1.1rem;
    color: #27ae60;
}

.next-steps {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.while-waiting {
    padding: 6rem 2rem;
    background: #fff;
}

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

.waiting-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.waiting-suggestions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.suggestion {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.suggestion h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.suggestion p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.link-arrow {
    color: #e74c3c;
    font-weight: 600;
}

.link-arrow:hover {
    text-decoration: underline;
}

.reassurance {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.reassurance-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.reassurance-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.small-text {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Legal Pages */
.legal-hero {
    padding: 8rem 2rem 4rem;
    background: #2c3e50;
    color: #fff;
    text-align: center;
}

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

.update-date {
    font-size: 1rem;
    color: #aaa;
}

.legal-content {
    padding: 6rem 2rem;
    background: #fff;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

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

.legal-container ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.legal-container a {
    color: #e74c3c;
}

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .asymmetric-wrapper,
    .split-diagonal,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .hero-offset-block {
        width: 80%;
        height: 50%;
    }

    .visual-offset-right {
        transform: translateY(0);
    }

    .visual-diagonal {
        transform: rotate(0);
    }

    .testimonial:nth-child(even),
    .testimonial:nth-child(odd) {
        margin-left: 0;
        margin-right: 0;
    }

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

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .hero-text-float h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

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

    .centered-message h2 {
        font-size: 2rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .trust-block:nth-child(2) {
        transform: translateY(0);
    }

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

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

    .story-card:nth-child(even) {
        flex-direction: column;
    }

    .approach-grid,
    .waiting-suggestions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-text-float {
        padding: 2rem;
    }

    .nav-floating {
        padding: 0.8rem 1rem;
    }

    .service-card {
        min-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
