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

html {
    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;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation - Floating Asymmetric */
.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-0.5deg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 90%;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #34495e;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #2c3e50;
    padding: 80px 30px 30px;
    z-index: 999;
    transition: right 0.4s ease;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 90vh;
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-subtext {
    font-size: clamp(18px, 2vw, 22px);
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-visual-element {
    flex: 0 0 320px;
    transform: translateY(30px) rotate(3deg);
}

.visual-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
    text-align: center;
    color: #fff;
}

.visual-number {
    display: block;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
}

.visual-card p {
    font-size: 16px;
    line-height: 1.4;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cta-primary.large {
    padding: 20px 50px;
    font-size: 18px;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 14px 35px;
    border: 2px solid #3498db;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498db;
    color: #fff;
}

.cta-link {
    color: #3498db;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    border-color: #2980b9;
}

/* Split Sections */
.intro-split {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-left {
    flex: 1;
    min-width: 300px;
}

.split-right {
    flex: 1;
    min-width: 300px;
}

.split-right.offset-down {
    transform: translateY(40px);
}

.section-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.intro-split h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.intro-split p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Problem Amplification */
.problem-amplification {
    padding: 120px 20px;
    background: #f8f9fa;
    position: relative;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
}

.container-narrow.offset-left {
    transform: translateX(-40px);
}

.problem-amplification h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 800;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.problem-card.offset-up {
    transform: translateY(-30px);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.problem-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

/* Insight Reveal */
.insight-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.insight-block {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-content {
    flex: 1.5;
    min-width: 300px;
}

.insight-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 25px;
    font-weight: 700;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.insight-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Services Preview Asymmetric */
.services-preview.asymmetric-layout {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 60px;
}

.services-header.offset-right {
    transform: translateX(40px);
}

.services-header h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 40px 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    transform: scale(1.05) rotate(-1deg);
}

.service-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-price {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background: #3498db;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card.featured .btn-service {
    background: #fff;
    color: #667eea;
}

.btn-service:hover {
    transform: scale(1.05);
}

.services-footer {
    text-align: center;
}

/* Trust Building */
.trust-building {
    padding: 120px 20px;
    background: #f8f9fa;
}

.trust-building h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
}

.testimonial.offset-left {
    align-self: flex-start;
    transform: translateX(-30px);
}

.testimonial.offset-right {
    align-self: flex-end;
    transform: translateX(30px);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

/* Process Explanation */
.process-explanation {
    padding: 120px 20px;
}

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

.process-container h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step.offset-down {
    transform: translateY(40px);
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    color: #e8eef3;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

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

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 15px;
    font-weight: 800;
}

.form-header p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2c3e50;
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.final-cta-content h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.final-cta-content p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px 30px;
}

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

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    background: #27ae60;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39, 174, 96, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.page-hero-content.offset-left {
    transform: translateX(-40px);
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

/* About Page Styles */
.about-story {
    padding: 100px 20px;
}

.story-block {
    margin-bottom: 50px;
}

.story-block.offset-right {
    transform: translateX(40px);
}

.story-block h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-block p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image {
    margin-top: 40px;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.values-container h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card.offset-up {
    transform: translateY(-30px);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 20px;
}

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

.team-container h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
}

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

.team-intro p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-desc {
    display: block;
    font-size: 16px;
    color: #7f8c8d;
}

/* Approach Section */
.approach-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.approach-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1.5;
}

.approach-text.offset-left {
    transform: translateX(-40px);
}

.approach-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-text p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.approach-visual {
    flex: 1;
}

.visual-element {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
    text-align: center;
    color: #fff;
    transform: rotate(-3deg);
}

.visual-highlight {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.visual-value {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

/* CTA About */
.cta-about {
    padding: 100px 20px;
}

.cta-about-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-about h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-about p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Services Full Page */
.services-full {
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.services-intro {
    margin-bottom: 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
}

.services-intro p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-item-full {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 50px 45px;
    border-radius: 16px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.service-item-full.offset-left {
    transform: translateX(-30px);
}

.service-item-full.offset-right {
    transform: translateX(30px);
}

.service-item-full:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateX(0) translateY(-5px);
}

.service-info {
    flex: 2;
}

.service-info h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-top: 25px;
}

.service-includes li {
    font-size: 16px;
    color: #5a6c7d;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 900;
}

.service-price-block {
    flex: 0 0 220px;
    text-align: center;
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.btn-order {
    display: inline-block;
    padding: 14px 30px;
    background: #3498db;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #2980b9;
    transform: scale(1.05);
}

/* Packages Section */
.packages-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.packages-container {
    max-width: 1300px;
    margin: 0 auto;
}

.packages-container h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 800;
}

.packages-intro {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.package-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured-package {
    border-color: #3498db;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.package-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.package-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.package-desc {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-card ul li {
    font-size: 16px;
    color: #5a6c7d;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.package-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 900;
}

.package-price {
    text-align: center;
}

.old-price {
    display: block;
    font-size: 20px;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.new-price {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #3498db;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
}

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

.faq-container h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #3498db;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-detail a {
    color: #3498db;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 15px;
    color: #95a5a6;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 40px;
}

.map-content {
    text-align: center;
}

.map-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-content p {
    font-size: 16px;
    opacity: 0.9;
}

.contact-cta-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.contact-cta-content h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-cta-content p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.faq-contact {
    padding: 100px 20px;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 140px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 18px;
    font-weight: 600;
}

/* Next Steps */
.next-steps {
    padding: 100px 20px;
}

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

.next-steps-container h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-marker {
    flex: 0 0 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Thanks Resources */
.thanks-resources {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.resources-container h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.resources-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.resource-card p {
    font-size: 16px;
    color: #7f8c8d;
}

/* Thanks Testimonial */
.thanks-testimonial {
    padding: 80px 20px;
}

.testimonial-single {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-quote {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author-single {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px 100px;
}

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

.legal-container h1 {
    font-size: clamp(36px, 5vw, 52px);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
}

.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 25px 0 15px;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section a {
    color: #3498db;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        padding: 12px 25px;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-offset-content,
    .intro-split,
    .insight-block,
    .approach-content,
    .contact-container {
        flex-direction: column;
    }

    .split-right.offset-down,
    .step.offset-down,
    .problem-card.offset-up,
    .value-card.offset-up {
        transform: none;
    }

    .container-narrow.offset-left,
    .services-header.offset-right,
    .approach-text.offset-left,
    .story-block.offset-right,
    .service-item-full.offset-left,
    .service-item-full.offset-right {
        transform: none;
    }

    .testimonial.offset-left,
    .testimonial.offset-right {
        transform: none;
    }

    .service-item-full {
        flex-direction: column;
        padding: 35px 25px;
    }

    .service-price-block {
        flex: auto;
        width: 100%;
    }

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

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .testimonial-single {
        padding: 35px 30px;
    }

    .timeline-step {
        flex-direction: column;
        gap: 20px;
    }

    .step-marker {
        flex: 0 0 60px;
        height: 60px;
        font-size: 24px;
    }
}