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

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: #2980b9;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a8a;
}

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

.nav-minimal {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #2980b9;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2980b9;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #2980b9;
}

/* ===============================================
   EDITORIAL FLOW STRUCTURE
   =============================================== */

.editorial-flow {
    background: #ffffff;
}

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

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-content {
    min-height: calc(100vh - 400px);
}

/* ===============================================
   HERO EDITORIAL
   =============================================== */

.hero-editorial {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

.hero-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 900px;
    margin: 2rem auto 0;
    overflow: hidden;
}

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

/* ===============================================
   TYPOGRAPHY - EDITORIAL STYLE
   =============================================== */

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    color: #2d3748;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    color: #2d3748;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 0 0.1em 0 0;
    color: #2980b9;
}

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

.story-intro,
.problem-amplification,
.insight-reveal,
.trust-building,
.benefits-reveal,
.final-push,
.urgency-block,
.form-section,
.guarantee-section {
    background: #ffffff;
}

.story-intro {
    border-top: 1px solid #e2e8f0;
}

.problem-amplification {
    background: #f7fafc;
    padding: 4rem 0;
}

.insight-reveal {
    padding: 4rem 0;
}

.trust-building {
    background: #edf2f7;
    padding: 4rem 0;
}

.testimonials-inline {
    background: #f7fafc;
    padding: 4rem 0;
}

.benefits-reveal {
    padding: 5rem 0;
    background: #ffffff;
}

.urgency-block {
    background: #fef5e7;
    padding: 3rem 0;
}

.form-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.final-push {
    padding: 4rem 0;
}

.guarantee-section {
    background: #e8f5e9;
    padding: 3rem 0;
}

/* ===============================================
   INLINE ELEMENTS
   =============================================== */

.inline-cta {
    display: inline-block;
    margin: 2rem 0;
    color: #2980b9;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #1a5a8a;
    border-bottom-color: #1a5a8a;
    transform: translateX(5px);
}

.pull-quote {
    border-left: 4px solid #2980b9;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background: #f7fafc;
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #2d3748;
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #718096;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 8px;
}

/* ===============================================
   INSIGHT BOX
   =============================================== */

.insight-box {
    background: #f0f9ff;
    border: 2px solid #bae6fd;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.insight-box h3 {
    color: #0c4a6e;
    margin-top: 0;
}

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

.insight-item {
    margin-bottom: 2rem;
}

.insight-item:last-child {
    margin-bottom: 0;
}

.insight-item strong {
    display: block;
    font-size: 1.2rem;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.insight-item p {
    margin: 0;
    color: #334155;
}

/* ===============================================
   TRUST POINTS
   =============================================== */

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-point {
    background: #ffffff;
    border-left: 4px solid #2980b9;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-point h4 {
    margin: 0 0 0.75rem 0;
    color: #2980b9;
}

.trust-point p {
    margin: 0;
}

/* ===============================================
   TESTIMONIALS
   =============================================== */

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #2980b9;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    color: #718096;
    font-weight: 500;
}

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

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: #2980b9;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2980b9;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    margin-top: 0;
    color: #1a202c;
}

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

.service-features li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

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

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

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

/* ===============================================
   BUTTONS
   =============================================== */

.btn-service,
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-final-cta {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-service,
.btn-primary {
    background: #2980b9;
    color: #ffffff;
    width: 100%;
}

.btn-service:hover,
.btn-primary:hover {
    background: #1a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.btn-service.primary {
    background: #27ae60;
}

.btn-service.primary:hover {
    background: #1e8449;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

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

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

.btn-submit:hover {
    background: #1e8449;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-final-cta {
    background: #e74c3c;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.btn-final-cta:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* ===============================================
   URGENCY BOX
   =============================================== */

.urgency-box {
    background: #ffffff;
    border: 3px solid #f39c12;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.urgency-box h3 {
    color: #d68910;
    margin-top: 0;
}

.urgency-cta {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c0392b;
    margin-top: 1.5rem;
}

/* ===============================================
   FORMS
   =============================================== */

.main-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #2980b9;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.95rem;
}

/* ===============================================
   STICKY CTA
   =============================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    background: #27ae60;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #1e8449;
    transform: scale(1.05);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideUp 0.4s ease;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

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

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

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

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

.btn-accept:hover {
    background: #1e8449;
}

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

.btn-reject:hover {
    border-color: #ffffff;
}

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

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

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

.footer-column p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
}

/* ===============================================
   PAGE HEADER
   =============================================== */

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header .lead-text {
    color: #f0f0f0;
}

/* ===============================================
   ABOUT PAGE
   =============================================== */

.about-story,
.mission-section,
.values-section,
.results-section,
.team-section {
    padding: 2rem 0;
}

.about-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.mission-box {
    background: #e3f2fd;
    border-left: 5px solid #1e88e5;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #0d47a1;
    font-weight: 500;
    margin: 0;
}

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

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2980b9;
}

.stat-label {
    margin-top: 0.5rem;
    color: #718096;
    font-size: 0.95rem;
}

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

.team-member {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.team-member h3 {
    margin-top: 0;
    color: #2c3e50;
}

.role {
    color: #2980b9;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    margin: 0.5rem;
    min-width: 200px;
}

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

.services-list {
    padding: 2rem 0;
}

.service-full {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.service-full.highlight {
    border: 3px solid #2980b9;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #2980b9;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.service-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing-box {
    background: #f7fafc;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    display: block;
}

.price-period {
    font-size: 1rem;
    color: #718096;
    display: block;
    margin: 0.5rem 0 1.5rem;
}

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

.contact-info-section {
    padding: 2rem 0;
}

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

.contact-box {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.contact-item h3 {
    margin-top: 0;
    color: #2980b9;
    font-size: 1.2rem;
}

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

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.faq-item p {
    margin: 0;
    color: #4a5568;
}

.map-placeholder {
    padding: 2rem 0;
}

.map-box {
    background: #e8f4f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #2980b9;
}

.contact-form-section {
    padding: 3rem 0;
}

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

.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

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

.step {
    margin-bottom: 2rem;
}

.step strong {
    display: block;
    color: #2980b9;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    min-width: 200px;
}

.thanks-tip {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.thanks-tip h3 {
    color: #856404;
    margin-top: 0;
}

.thanks-tip p {
    margin-bottom: 0;
    color: #856404;
}

.testimonials-section {
    padding: 3rem 0;
}

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

.legal-page {
    background: #ffffff;
    min-height: calc(100vh - 400px);
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.last-updated {
    color: #718096;
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

.cookies-table th {
    background: #f7fafc;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table tr:hover {
    background: #f7fafc;
}

.guarantee-box {
    background: #ffffff;
    border: 3px solid #27ae60;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.guarantee-box h3 {
    color: #27ae60;
    margin-top: 0;
}

.final-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 2rem 0;
}

/* ===============================================
   RESPONSIVE
   =============================================== */

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .narrow-content,
    .content-wrapper {
        padding: 2rem 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .sticky-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-sticky {
        width: 100%;
    }

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

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        width: 100%;
        margin: 0.5rem 0;
    }

    .main-form {
        padding: 1.5rem;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .narrow-content {
        max-width: 680px;
    }

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