/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
}

p {
    margin-bottom: 1.25rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookie-btn {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

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

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

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

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

/* ========================================
   NAVIGATION
   ======================================== */

.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   EDITORIAL LAYOUT STRUCTURE
   ======================================== */

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.editorial-hero {
    padding: 4rem 2rem 3rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

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

.overline {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #7f8c8d;
}

.page-header {
    padding: 4rem 2rem 2rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.text-block p:last-child {
    margin-bottom: 0;
}

/* ========================================
   IMAGES & FIGURES
   ======================================== */

.content-image,
.content-image-small {
    margin: 3rem 0;
}

.content-image img {
    width: 100%;
    border-radius: 4px;
}

.content-image-small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-image-small img {
    width: 100%;
    border-radius: 4px;
}

figcaption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #7f8c8d;
    margin-top: 0.75rem;
    font-style: italic;
    text-align: center;
}

/* ========================================
   LISTS
   ======================================== */

.styled-list,
.numbered-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.styled-list li,
.numbered-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.styled-list li strong,
.numbered-list li strong {
    color: #1a1a1a;
}

/* ========================================
   CALLOUT BOXES
   ======================================== */

.callout-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.callout-box h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.callout-box ol,
.callout-box ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.callout-box li {
    margin-bottom: 0.875rem;
}

/* ========================================
   BLOCKQUOTES & TESTIMONIALS
   ======================================== */

blockquote {
    border-left: 3px solid #e5e5e5;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.125rem;
    color: #2c3e50;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9375rem;
    color: #7f8c8d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonial-inline {
    background-color: #f8f9fa;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
}

.testimonial-author span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #7f8c8d;
}

/* ========================================
   STATS & HIGHLIGHTS
   ======================================== */

.stat-highlight {
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem 0;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
}

.stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CTAs & BUTTONS
   ======================================== */

.inline-cta {
    background-color: #f0f8ff;
    border-left: 4px solid #3498db;
    padding: 1.75rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.inline-cta p {
    margin-bottom: 1rem;
}

.inline-cta-strong {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-strong h3 {
    color: #ffffff;
    margin-top: 0;
    font-size: 1.75rem;
}

.inline-cta-strong p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #3498db;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-service,
.btn-service-large,
.btn-submit {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-service,
.btn-service-large {
    background-color: #27ae60;
    color: #ffffff;
    width: 100%;
}

.btn-service:hover,
.btn-service-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-service-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #2980b9;
}

/* ========================================
   URGENCY & BADGES
   ======================================== */

.urgency-block {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.urgency-label {
    display: inline-block;
    background-color: #dc3545;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.urgency-block h3 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.urgency-block p {
    margin-bottom: 1.5rem;
    color: #555;
}

.badge,
.badge-large {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.badge-large {
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
}

/* ========================================
   SERVICES SECTIONS
   ======================================== */

.services-preview {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #fafafa;
    border-radius: 8px;
}

.services-preview h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card-editorial.featured {
    border: 2px solid #3498db;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 1.625rem;
    color: #1a1a1a;
}

.service-card-editorial p {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

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

/* ========================================
   DETAILED SERVICES PAGE
   ======================================== */

.services-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.service-full {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-full.featured-service {
    border: 2px solid #3498db;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.service-header h2 {
    margin: 0;
    font-size: 2rem;
}

.service-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.0625rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.service-price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.service-description {
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.service-includes,
.service-results,
.service-investment,
.service-for {
    margin-bottom: 2.5rem;
}

.service-includes h3,
.service-results h3,
.service-investment h3,
.service-for h3 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.service-includes ul,
.service-results ul {
    list-style: none;
    padding: 0;
}

.service-includes li,
.service-results li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.service-includes li:last-child,
.service-results li:last-child {
    border-bottom: none;
}

.service-includes li:before,
.service-results li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-note,
.guarantee-section {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.comparison-note h2,
.guarantee-section h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.faq-section {
    margin: 4rem 0;
}

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

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

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

.cta-note {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info,
.contact-questions {
    flex: 1;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item .note {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.faq-compact {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-compact:last-child {
    border-bottom: none;
}

.faq-compact h3 {
    font-size: 1.0625rem;
    color: #1a1a1a;
    margin-bottom: 0.625rem;
}

.faq-compact p {
    color: #555;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.map-placeholder {
    position: relative;
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
}

.map-overlay p {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
}

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

.thanks-details p {
    font-size: 1.0625rem;
    color: #555;
}

#thanks-service {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.price-tag {
    color: #27ae60;
    font-weight: 700;
}

.next-steps {
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.next-steps li {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.thanks-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.thanks-note h3 {
    margin-top: 0;
    font-size: 1.125rem;
}

.thanks-meanwhile {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-meanwhile h3 {
    margin-top: 0;
    font-size: 1.125rem;
}

.thanks-meanwhile ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.thanks-meanwhile li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-meanwhile li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

/* ========================================
   FINAL CTA SECTIONS
   ======================================== */

.final-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
    margin-top: 0;
    font-size: 2rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ========================================
   FORM & MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #7f8c8d;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.service-display {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

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

.legal-content h2 {
    margin-top: 3rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.875rem;
    line-height: 1.7;
}

.contact-box {
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9375rem;
}

.cookie-table td {
    font-size: 0.9375rem;
    color: #555;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    margin: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .services-grid-editorial {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card-editorial {
        flex: 1;
        min-width: 300px;
    }

    .editorial-content {
        padding: 4rem 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .cookie-content {
        flex-wrap: nowrap;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 1024px) {
    .editorial-hero {
        padding: 5rem 2rem 4rem;
    }

    .page-header {
        padding: 5rem 2rem 3rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .lead {
        font-size: 1.375rem;
    }

    .content-image,
    .content-image-small {
        margin: 4rem 0;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1.125rem;
    }

    .editorial-hero,
    .page-header {
        padding: 2.5rem 1.5rem 2rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .service-full {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

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

    .service-price-large {
        font-size: 2.5rem;
    }

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

    .cookie-table {
        font-size: 0.8125rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .nav-minimal,
    .cookie-banner,
    .modal,
    .footer,
    .btn-primary,
    .btn-secondary,
    .btn-large,
    .btn-service,
    .btn-service-large,
    .hamburger {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1 {
        font-size: 24pt;
    }

    h2 {
        font-size: 18pt;
    }

    a {
        text-decoration: underline;
        color: #000;
    }
}