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

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    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.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: #34495e;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* ============================================
   CONTAINERS & LAYOUT
   ============================================ */

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

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

section {
    padding: 5rem 0;
}

/* ============================================
   NAVIGATION - FLOATING
   ============================================ */

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

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

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

.nav-menu a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO - VISUAL FIRST
   ============================================ */

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -100px;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    padding: 2rem;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-title {
    font-size: 4.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
}

.page-hero.small {
    height: 300px;
}

.page-hero .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.page-hero .hero-overlay {
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTIONS - VARIED LAYOUTS
   ============================================ */

.curiosity-hook {
    background: #f8f9fa;
    padding: 6rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-section {
    padding: 0;
}

.split-layout {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-content {
    flex: 1;
}

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

.split-content {
    padding: 4rem;
}

.inline-cta {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.inline-cta:hover {
    color: #2980b9;
    transform: translateX(5px);
}

/* Problem Section */
.problem-amplify {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
}

.center-heading {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h4 {
    margin-bottom: 0.5rem;
}

/* Insight Section */
.insight-reveal {
    background: #2c3e50;
    color: white;
    padding: 6rem 0;
}

.revelation-heading {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-box {
    text-align: center;
    margin-top: 3rem;
}

/* Visual Showcase */
.visual-showcase {
    padding: 0;
    background: #000;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
}

.showcase-item {
    position: relative;
    flex: 1;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
}

.showcase-item.large {
    flex: 2;
    min-width: 400px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: white;
}

/* Trust Building */
.trust-building {
    background: #ecf0f1;
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 6rem 0;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-author {
    color: #7f8c8d;
}

/* Benefits */
.benefits-detailed {
    background: #f8f9fa;
    padding: 6rem 0;
}

.big-heading {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-block {
    flex: 1;
    min-width: 300px;
}

.benefit-block img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.services-pricing {
    background: white;
    padding: 6rem 0;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

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

.price-card.featured {
    border-color: #3498db;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-header h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.price-features {
    margin: 2rem 0;
}

.price-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Urgency Section */
.urgency-section {
    background: #fff3cd;
    padding: 3rem 0;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.urgency-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.urgency-note {
    font-weight: 600;
    color: #856404;
}

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

.form-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.form-description {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.order-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.form-agreement {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.checkbox-label input {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}

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

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #229954;
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: white;
    color: #2c3e50;
}

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

.about-intro {
    padding: 5rem 0;
}

.mission-section {
    padding: 0;
}

.values-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.team-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.journey-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

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

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 100px;
}

.timeline-content {
    flex: 1;
}

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

.commitment-list {
    margin: 2rem 0;
}

.commitment-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

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

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

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.additional-services {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.addon-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

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

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

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

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

.comparison-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.warranty-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.contact-main {
    padding: 5rem 0;
}

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

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

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

.contact-block h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-block .note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

.visit-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.visit-reasons {
    margin-top: 2rem;
}

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

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

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

.direction-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.faq-contact {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-cta {
    padding: 4rem 0;
}

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

.thanks-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-align: center;
}

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

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

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.thanks-info {
    padding: 5rem 0;
}

.info-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.next-steps {
    margin-top: 2rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.order-details {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-cta {
    text-align: center;
    margin: 3rem 0;
}

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

.contact-reminder {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-reminder a {
    color: #3498db;
    text-decoration: underline;
}

.social-proof {
    background: #f8f9fa;
    padding: 5rem 0;
}

.testimonial-mini-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-mini {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-mini p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

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

.legal-page {
    padding: 8rem 2rem 5rem;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

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

.legal-page li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.legal-table th {
    background: #f8f9fa;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    /* Navigation */
    .floating-nav {
        width: 95%;
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
        border-radius: 15px;
        margin: 0 1rem;
    }

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

    .hamburger {
        display: flex;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 2rem;
    }

    /* Pricing */
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }

    /* Form */
    .order-form {
        padding: 2rem;
    }

    /* Services */
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    /* Contact */
    .contact-grid {
        flex-direction: column;
    }

    /* Timeline */
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        min-width: auto;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    /* Sticky CTA */
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

    .page-hero {
        height: 300px;
    }

    /* Showcase */
    .showcase-item,
    .showcase-item.large {
        min-width: 100%;
        height: 300px;
    }
}

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

    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .big-heading {
        font-size: 2rem;
    }

    .pricing-heading {
        font-size: 2rem;
    }
}
