/* ===================================
   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.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 90%;
}

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

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

.nav-menu li a {
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #2b6cb0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a202c;
    transition: all 0.3s ease;
}

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

.hero-full {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85), rgba(45, 55, 72, 0.75));
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    color: #ffffff;
}

.hero-content-narrow h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.cta-hero {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(66, 153, 225, 0.5);
}

/* ===================================
   PAGE HEROES
   =================================== */

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

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.page-hero-legal {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-legal h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-size: 1rem;
    opacity: 0.8;
}

/* ===================================
   CONTAINER UTILITIES
   =================================== */

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ===================================
   STORY & CONTENT SECTIONS
   =================================== */

.story-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a202c;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.highlight-text {
    background-color: #fef5e7;
    border-left: 4px solid #f6ad55;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 2rem;
    color: #744210;
}

/* ===================================
   CTA BLOCKS
   =================================== */

.cta-inline-block {
    background: linear-gradient(135deg, #4299e1, #667eea);
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-inline-block p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #4299e1;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #edf2f7;
    transform: scale(1.05);
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    padding: 5rem 0;
}

.dark-bg {
    background-color: #1a202c;
    color: #ffffff;
}

.problem-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card {
    flex: 1 1 calc(50% - 2rem);
    background-color: #2d3748;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #f6ad55;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f6ad55;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e0;
}

/* ===================================
   INSIGHT SECTION
   =================================== */

.insight-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.insight-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a5568;
}

.insight-image {
    width: 100%;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2b6cb0;
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-sticky {
    background-color: #f6ad55;
    color: #1a202c;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

/* ===================================
   TRUST SECTION
   =================================== */

.trust-section {
    padding: 5rem 0;
    background-color: #edf2f7;
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #4299e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.testimonial cite {
    font-weight: 700;
    font-style: normal;
    color: #4299e1;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

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

.benefits-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-large {
    flex: 1 1 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
}

.benefit-small {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #cbd5e0;
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-small h3 {
    color: #2d3748;
}

.benefit-large p,
.benefit-small p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefit-small p {
    color: #4a5568;
}

/* ===================================
   REVEAL SECTION (SERVICES/PRICING)
   =================================== */

.reveal-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.reveal-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.reveal-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.service-reveal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-item.featured {
    border: 3px solid #4299e1;
    box-shadow: 0 8px 24px rgba(66, 153, 225, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #f6ad55;
    color: #1a202c;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-top: 1.5rem;
}

/* ===================================
   URGENCY BLOCK
   =================================== */

.urgency-block {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    padding: 2.5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.urgency-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.urgency-content p {
    font-size: 1.15rem;
}

/* ===================================
   FORM SECTION
   =================================== */

.form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #4299e1, #667eea);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

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

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    background-color: #f6ad55;
    color: #1a202c;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #ed8936;
    transform: scale(1.05);
}

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

.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4299e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #718096;
}

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

.about-content {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: #1a202c;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.feature-list {
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
}

.feature-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

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

.cta-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #edf2f7;
    transform: scale(1.05);
}

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

.services-detailed {
    padding: 4rem 0;
}

.service-card-full {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    padding: 3rem;
    position: relative;
}

.featured-service {
    border: 3px solid #4299e1;
    box-shadow: 0 8px 24px rgba(66, 153, 225, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #f6ad55;
    color: #1a202c;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
}

.service-info {
    flex: 1 1 65%;
}

.service-pricing {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-description {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-info ul {
    list-style: disc;
    margin-left: 2rem;
}

.service-info ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
}

.btn-service {
    background: linear-gradient(135deg, #4299e1, #667eea);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

.comparison-section {
    padding: 3rem 0;
    background-color: #f7fafc;
}

.comparison-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.comparison-note p {
    font-size: 1.05rem;
    color: #4a5568;
}

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

.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1 1 45%;
}

.contact-map {
    flex: 1 1 45%;
}

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

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a202c;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-item a {
    color: #4299e1;
    font-weight: 600;
}

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

.map-placeholder {
    width: 100%;
    border-radius: 12px;
}

.map-note {
    font-size: 1rem;
    color: #4a5568;
    margin-top: 1rem;
    line-height: 1.6;
}

.faq-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

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

.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    text-align: center;
    color: #ffffff;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.thanks-details {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.next-steps {
    background-color: #ffffff;
    color: #2d3748;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.step {
    flex: 1 1 calc(33.333% - 2rem);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4299e1, #667eea);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.immediate-help {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.immediate-help h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.email-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

.while-you-wait {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.while-you-wait h2 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.while-you-wait > p {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

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

.tip-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tip-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.tip-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

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

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

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

.cookie-table th {
    font-weight: 700;
    color: #1a202c;
}

.cookie-table td {
    color: #4a5568;
}

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

@media (max-width: 1024px) {
    .problem-card {
        flex: 1 1 100%;
    }

    .benefit-small {
        flex: 1 1 100%;
    }

    .service-info,
    .service-pricing {
        flex: 1 1 100%;
    }

    .step {
        flex: 1 1 100%;
    }

    .tip-card {
        flex: 1 1 100%;
    }
}

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

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .story-section h2,
    .insight-section h2,
    .trust-section h2,
    .benefits-section h2,
    .reveal-section h2,
    .form-section h2 {
        font-size: 2rem;
    }

    .problem-section h2 {
        font-size: 2.2rem;
    }

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

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

    .contact-info,
    .contact-map {
        flex: 1 1 100%;
    }

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

@media (max-width: 480px) {
    .cta-hero,
    .btn-primary,
    .btn-sticky,
    .cta-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    .price-tag {
        font-size: 2.5rem;
    }

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

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}