/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    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;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 52, 54, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #74b9ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #0984e3;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0770c4;
}

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0984e3;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #2d3436;
    font-weight: 500;
    position: relative;
}

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

.nav-menu 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: 3px;
    background: #2d3436;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Asymmetric */
.hero-asymmetric {
    padding: 140px 5% 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text-block {
    flex: 1;
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2d3436;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #636e72;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

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

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: #0984e3;
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(9, 132, 227, 0.4);
    transform: rotate(-5deg);
}

.badge-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-arrow,
.cta-final {
    display: inline-block;
    padding: 16px 36px;
    background: #0984e3;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(9, 132, 227, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-arrow:hover,
.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(9, 132, 227, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #0984e3;
    border: 2px solid #0984e3;
    box-shadow: none;
}

.cta-secondary:hover {
    background: #0984e3;
    color: #ffffff;
}

.link-underline {
    color: #0984e3;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-underline:hover {
    color: #0770c4;
}

/* Intro Offset */
.intro-offset {
    padding: 100px 5%;
    background: #ffffff;
}

.intro-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.intro-box {
    flex: 1;
    padding: 40px;
    border-radius: 15px;
}

.intro-box-1 {
    background: #f8f9fa;
    transform: translateY(-30px);
}

.intro-box-2 {
    background: #e9ecef;
    transform: translateY(30px);
}

.intro-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.intro-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 20px;
}

/* Visual Break */
.visual-break {
    padding: 80px 5%;
    background: #0984e3;
    position: relative;
    overflow: hidden;
}

.image-stack {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.stack-img-1 {
    width: 70%;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.text-overlay {
    position: absolute;
    bottom: -50px;
    right: 0;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
}

.text-overlay blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3436;
    margin-bottom: 10px;
    line-height: 1.5;
}

.text-overlay cite {
    display: block;
    font-size: 0.95rem;
    color: #0984e3;
    font-style: normal;
    font-weight: 600;
}

/* Services Interactive */
.services-interactive {
    padding: 120px 5%;
    background: #f8f9fa;
}

.services-header-offset {
    max-width: 800px;
    margin: 0 0 60px 0;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #636e72;
}

.services-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(odd) {
    transform: translateY(-15px);
}

.service-card:nth-child(even) {
    transform: translateY(15px);
}

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

.card-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-visual img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #636e72;
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0984e3;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

/* Trust Builder */
.trust-builder {
    padding: 100px 5%;
    background: #ffffff;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2d3436;
    font-weight: 700;
}

.trust-list {
    list-style: none;
    margin-bottom: 35px;
}

.trust-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0984e3;
    font-weight: 800;
    font-size: 1.4rem;
}

.trust-image-overlap {
    flex: 1;
    position: relative;
}

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

/* Testimonials Stagger */
.testimonials-stagger {
    padding: 100px 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.testimonials-heading {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3436;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-offset-1 {
    transform: translateY(-20px);
}

.testimonial-offset-2 {
    transform: translateY(0);
}

.testimonial-offset-3 {
    transform: translateY(20px);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2d3436;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    font-size: 0.95rem;
    color: #0984e3;
    font-weight: 600;
    font-style: normal;
}

/* CTA Visual Block */
.cta-visual-block {
    padding: 100px 5%;
    background: #2d3436;
    color: #ffffff;
    text-align: center;
}

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

.cta-overlap-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-overlap-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-arrow {
    background: #ffffff;
    color: #2d3436;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-arrow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* Form Section */
.form-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

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

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #2d3436;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #636e72;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3436;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    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: #0984e3;
    box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 36px;
    background: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0770c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.3);
}

/* Final Push */
.final-push {
    padding: 100px 5%;
    background: #ffffff;
}

.final-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.final-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 35px;
}

/* Footer */
.footer-asymmetric {
    background: #2d3436;
    color: #ffffff;
    padding: 60px 5% 30px;
}

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

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul a:hover {
    opacity: 1;
}

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

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

.sticky-btn {
    display: inline-block;
    padding: 18px 32px;
    background: #0984e3;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(9, 132, 227, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(9, 132, 227, 0.5);
}

/* Page Hero Simple */
.page-hero-simple {
    padding: 140px 5% 80px;
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* About Page */
.about-story {
    padding: 100px 5%;
    background: #ffffff;
}

.story-offset-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2d3436;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(3deg);
}

.values-section {
    padding: 100px 5%;
    background: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2d3436;
    font-weight: 700;
}

.values-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2d3436;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #636e72;
}

.team-section {
    padding: 100px 5%;
    background: #ffffff;
}

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

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #636e72;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0984e3;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #636e72;
    font-weight: 500;
}

.approach-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
    font-weight: 700;
    text-align: center;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.approach-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #0984e3;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.approach-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d3436;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #636e72;
}

.cta-about {
    padding: 100px 5%;
    background: #0984e3;
    text-align: center;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.95;
}

.cta-about .cta-primary {
    background: #ffffff;
    color: #0984e3;
}

/* Services Page */
.services-detailed {
    padding: 80px 5%;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #636e72;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 600;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    font-size: 1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0984e3;
    font-weight: 800;
    font-size: 1.2rem;
}

.service-pricing {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #0984e3;
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #636e72;
}

.btn-service-order {
    display: inline-block;
    padding: 14px 32px;
    background: #0984e3;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-service-order:hover {
    background: #0770c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.3);
}

.services-guarantee {
    padding: 80px 5%;
    background: #f8f9fa;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 40px;
}

.guarantee-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    font-size: 1.5rem;
    color: #0984e3;
    font-weight: 800;
}

.cta-services {
    padding: 80px 5%;
    background: #2d3436;
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-services .cta-primary {
    background: #ffffff;
    color: #2d3436;
}

/* Contact Page */
.contact-main {
    padding: 80px 5%;
    background: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3436;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0984e3;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #636e72;
}

.contact-item a {
    color: #0984e3;
    text-decoration: underline;
}

.contact-map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-placeholder-content {
    text-align: center;
    padding: 40px;
}

.map-placeholder-content p {
    font-size: 1.2rem;
    color: #636e72;
}

.contact-cta {
    padding: 80px 5%;
    background: #0984e3;
}

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

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.95;
}

.contact-cta .cta-primary {
    background: #ffffff;
    color: #0984e3;
}

.faq-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
    font-weight: 700;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2d3436;
    font-weight: 600;
}

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

/* Thanks Page */
.thanks-section {
    padding: 140px 5% 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #0984e3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 50px rgba(9, 132, 227, 0.3);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.selected-service-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 0 auto 40px;
    max-width: 500px;
}

.selected-service-box p {
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 8px;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2d3436;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background: #0984e3;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #636e72;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0984e3;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #0984e3;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 140px 5% 80px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2d3436;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 12px;
    list-style: disc;
}

.legal-container a {
    color: #0984e3;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    font-style: italic;
    color: #636e72;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.cookies-table thead {
    background: #0984e3;
    color: #ffffff;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px 5%;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        padding: 120px 5% 60px;
        min-height: auto;
    }

    .hero-offset-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

    .hero-image-overlap {
        margin-top: 0;
    }

    .floating-badge {
        position: static;
        transform: none;
        margin-top: 20px;
        display: inline-block;
    }

    .intro-grid-asymmetric {
        flex-direction: column;
        gap: 30px;
    }

    .intro-box-1,
    .intro-box-2 {
        transform: none;
    }

    .intro-box h2 {
        font-size: 1.8rem;
    }

    .services-header-offset h2 {
        font-size: 2rem;
    }

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

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: none;
    }

    .trust-content-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        transform: none;
    }

    .cta-overlap-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px;
    }

    .story-offset-grid {
        flex-direction: column;
        gap: 40px;
    }

    .story-image img {
        transform: none;
    }

    .values-cards {
        flex-direction: column;
    }

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

    .team-stats {
        flex-direction: column;
    }

    .approach-item {
        flex-direction: column;
        gap: 20px;
    }

    .service-detail-card,
    .service-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .step-item {
        max-width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .services-header-offset h2,
    .testimonials-heading {
        font-size: 1.8rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }
}
