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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.5rem 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-family: 'Helvetica Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #666;
}

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

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

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

/* Hero Section */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    color: #ffffff;
}

.hero-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Story Block */
.story-block {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-lead {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: #2a2a2a;
}

.story-narrow strong {
    font-weight: 700;
    color: #000;
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 5%;
    background: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.insight-visual {
    flex: 1;
}

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

.insight-text {
    flex: 1;
}

.insight-list {
    list-style: none;
    margin-top: 2rem;
}

.insight-list li {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-size: 1.1rem;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Narrative Wide */
.narrative-wide {
    padding: 8rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.narrative-container {
    max-width: 1200px;
    margin: 0 auto;
}

.narrative-container h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.narrative-cards {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.narrative-card {
    flex: 1;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffffff;
}

.card-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.narrative-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.narrative-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 6rem 5%;
    background: #f4f4f4;
}

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

.testimonial-content blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

/* Problem Amplification */
.problem-amplification {
    padding: 7rem 5%;
    background: #ffffff;
}

.problem-split {
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.problem-left {
    flex: 1;
}

.problem-right {
    flex: 1;
}

.problem-right img {
    width: 100%;
}

.problem-left em {
    font-style: italic;
    font-size: 1.3rem;
    color: #000;
}

/* Value Proposition */
.value-proposition {
    padding: 8rem 5%;
    background: #f9f9f9;
}

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

.value-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    display: block;
    margin-bottom: 1rem;
}

.value-header h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.value-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-mid-section {
    margin-top: 3rem;
}

/* Trust Elements */
.trust-elements {
    padding: 6rem 5%;
    background: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: #666;
}

/* Philosophy Deep */
.philosophy-deep {
    padding: 7rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.philosophy-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.philosophy-list {
    list-style: none;
    margin-top: 2rem;
}

.philosophy-list li {
    padding: 1.5rem 0;
    padding-left: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    font-size: 1.15rem;
}

.philosophy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Benefits Cascade */
.benefits-cascade {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.cascade-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cascade-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.cascade-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cascade-item {
    padding: 2.5rem;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.cascade-item h3 {
    margin-bottom: 1rem;
}

/* Social Proof */
.social-proof-deep {
    padding: 7rem 5%;
    background: #ffffff;
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
}

.proof-container h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
}

.proof-grid {
    display: flex;
    gap: 3rem;
}

.proof-card {
    flex: 1;
    padding: 2.5rem;
    background: #f9f9f9;
    border-top: 3px solid #1a1a1a;
}

.proof-card p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.proof-card span {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

/* Offer Reveal */
.offer-reveal {
    padding: 8rem 5%;
    background: #f4f4f4;
}

.offer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.offer-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.offer-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 350px;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-top: 4px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.offer-card.featured {
    border-top-color: #d4af37;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.offer-badge {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
}

.featured-badge {
    color: #d4af37;
    font-weight: 700;
}

.offer-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.offer-duration {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.offer-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.offer-includes {
    list-style: none;
    margin: 2rem 0;
}

.offer-includes li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.offer-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.offer-price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
}

/* Urgency Block */
.urgency-block {
    padding: 6rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.urgency-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

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

.form-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

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

.application-form {
    background: #ffffff;
    padding: 3rem;
    border-top: 4px solid #1a1a1a;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 2px solid #e0e0e0;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.cta-primary,
.cta-secondary,
.cta-final,
.btn-submit,
.btn-select,
.btn-select-service {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-final:hover,
.btn-submit:hover,
.btn-select:hover,
.btn-select-service:hover {
    background: #333;
    transform: translateY(-2px);
}

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

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-secondary {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 7rem 5%;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.final-cta-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    padding: 5rem 5% 2rem;
    background: #0a0a0a;
    color: #ffffff;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    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);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem 5%;
    z-index: 1100;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 12rem 5% 6rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page */
.about-story {
    padding: 7rem 5%;
    background: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.mission-block {
    padding: 7rem 5%;
    background: #f9f9f9;
}

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

.mission-lead {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

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

.values-container h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.team-intro {
    padding: 7rem 5%;
    background: #f9f9f9;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-lead {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 50%;
}

.member-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.numbers-proof {
    padding: 7rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.numbers-container h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
}

.numbers-grid {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.number-item {
    text-align: center;
}

.big-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.number-item p {
    font-size: 1rem;
    opacity: 0.8;
}

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

.approach-container {
    max-width: 800px;
    margin: 0 auto;
}

.approach-list {
    list-style: none;
    margin-top: 2rem;
}

.approach-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.approach-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

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

.cta-about-content h2 {
    margin-bottom: 2rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Services Page */
.services-intro {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.services-detailed {
    padding: 5rem 5%;
    background: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-full {
    display: flex;
    gap: 5rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-badge {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
}

.premium-badge {
    color: #d4af37;
    font-weight: 700;
}

.vip-badge {
    color: #8b0000;
    font-weight: 700;
}

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

.service-details {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.detail-item {
    font-size: 0.95rem;
}

.detail-item strong {
    display: block;
    margin-bottom: 0.3rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
}

.service-includes li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.service-price-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f9f9f9;
    text-align: center;
}

.price-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.comparison-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table td {
    font-size: 0.95rem;
}

.faq-services {
    padding: 6rem 5%;
    background: #ffffff;
}

.cta-services {
    padding: 6rem 5%;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-services-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-services-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Contact Page */
.contact-main {
    padding: 6rem 5%;
    background: #ffffff;
}

.contact-container {
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.contact-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.contact-quote p {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0;
}

.contact-faq {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.faq-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.faq-item a {
    text-decoration: underline;
}

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

.contact-cta-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 12rem 5% 8rem;
    background: #f9f9f9;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
}

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

.thanks-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 1.5rem 0 1.5rem 2.5rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.thanks-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.thanks-quote {
    margin: 3rem 0;
    padding: 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.thanks-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
}

.thanks-actions {
    margin: 3rem 0;
}

.thanks-contact {
    margin-top: 3rem;
    font-size: 0.95rem;
}

.thanks-contact a {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 10rem 5% 6rem;
    background: #ffffff;
}

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

.legal-container h1 {
    margin-bottom: 1rem;
}

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

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

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.legal-content a {
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 700;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f9f9f9;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: block;
    }

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

    .insight-grid,
    .problem-split,
    .about-container,
    .contact-container,
    .service-full {
        flex-direction: column;
        gap: 3rem;
    }

    .narrative-cards,
    .trust-grid,
    .proof-grid,
    .team-grid,
    .numbers-grid {
        flex-direction: column;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-table {
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-floating {
        padding: 1rem 5%;
    }

    .hero-immersive {
        padding: 6rem 5% 4rem;
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    section {
        padding: 4rem 5%;
    }

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

    .application-form {
        padding: 2rem 1.5rem;
    }

    .page-hero {
        padding: 8rem 5% 4rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}