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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
video {
    max-width: 100%;
    height: auto;
}

.header {
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 50px 50px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    isolation: isolate;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 30px 30px;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header.scrolled::after {
    width: 80%;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}

.header-container {
    position: relative;
    z-index: 1;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 30px 30px;
    padding: 1rem 0;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.mobile-nav-link:hover {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0 auto;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    background: transparent;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: #1a1a1a;
}

.icon-btn:hover {
    opacity: 0.7;
}

.btn-consult {
    background: #7c3aed;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-consult:hover {
    background: #6d28d9;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    transform: translateY(-1px);
}

.main-content {
    padding: 0;
    background: #0a1a2e;
    position: relative;
    overflow: visible;
}

.main-content {
    padding-top: 30px;
}

.main-content .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    z-index: 1000;
    width: 100%;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 2rem;
}

.left-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 47px;
}

.sub-headline {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: #ffffff;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1a2e;
    font-weight: bold;
    flex-shrink: 0;
}

.warranty-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    margin: 1.5rem 0;
}

.warranty-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.warranty-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: #ffffff;
}

.warranty-list .warranty-icon {
    width: 24px;
    height: 24px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
    font-style: normal;
}

.warranty-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.warranty-highlight {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.warranty-highlight::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
    font-size: 1.125rem;
}

.btn-call {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 1.125rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s;
}

.btn-call:hover {
    background: #2563eb;
}

.right-section {
    position: relative;
}

.image-container {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.small-images {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.small-image {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #ffffff;
}

.image-caption span {
    transition: opacity 0.3s ease;
}

.info-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-controls {
    position: absolute;
    right: 20px;
    bottom: -14px;
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-footer-strip {
    padding: 0.75rem 0;
    background: rgba(10, 26, 46, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.hero-footer-content {
    width: 100%;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-footer-track {
    display: flex;
    gap: 3rem;
    animation: scroll-loop 60s linear infinite;
    width: fit-content;
    will-change: transform;
}

.hero-footer-strip:hover .hero-footer-track {
    animation-play-state: paused;
}

.hero-footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    white-space: nowrap;
    color: #ffffff;
    flex-shrink: 0;
}

.hero-footer-item .checkmark {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1a2e;
    font-weight: bold;
    font-size: 0.7rem;
    flex-shrink: 0;
}

@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.options-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.options-container {
    max-width: 1400px;
    margin: 0 auto;
}

.options-header {
    text-align: center;
    margin-bottom: 3rem;
}

.options-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.options-subtitle {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 400;
}

.options-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.option-card {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hair-transplant {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.prescription {
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.non-surgical {
    background: linear-gradient(135deg, #6bcf7f, #4fa863);
}

.scalp-care {
    background: linear-gradient(135deg, #8b7355, #6b5a45);
}

.card-label {
    background: #000000;
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
}

.card-label svg {
    stroke: #ffffff;
    flex-shrink: 0;
}

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

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journey-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 400;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.journey-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.journey-step:hover .step-icon img {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

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

.btn-journey {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 1.125rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-journey:hover {
    background: #2563eb;
}

.results-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.results-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.results-subtitle {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 400;
}

.results-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.result-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 280px;
    padding: 1.25rem;
    background: #ffffff;
    position: relative;
}

.result-images::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #7c3aed, transparent);
    opacity: 0.5;
}

.result-card:hover .result-images::after {
    opacity: 0.8;
    height: 70%;
}

.result-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.result-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.result-image::before {
    content: attr(data-label);
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.result-image.before::before {
    content: "Before";
}

.result-image.after::before {
    content: "After";
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.result-details {
    padding: 1.5rem;
    background: #ffffff;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
}

.details-header svg {
    color: #666666;
    transition: transform 0.3s;
}

.result-card:hover .details-header svg {
    transform: rotate(180deg);
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-tag {
    background: #e8e8e8;
    color: #4a4a4a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-section {
    background: #0a1a2e;
    padding: 5rem 2rem;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6, #7c3aed);
    border-radius: 32px 32px 0 0;
}

.payment-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.payment-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    width: fit-content;
}

.payment-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
}

.payment-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-icon-small {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
    margin-top: 0.125rem;
}

.info-icon-small:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-payment {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 1.125rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

.btn-payment:hover {
    background: #2563eb;
}

.payment-right {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-option {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.payment-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.payment-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    gap: 1rem;
}

.payment-option-header:hover {
    color: #a5b4fc;
}

.payment-option-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.payment-option-preview {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    transition: color 0.3s;
}

.payment-option-header:hover .payment-option-preview {
    color: rgba(255, 255, 255, 0.9);
}

.payment-option-header svg {
    color: #ffffff;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.payment-option.active .payment-option-header svg {
    transform: rotate(180deg);
}

.payment-option-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
    padding: 0;
    opacity: 0;
}

.payment-option.active .payment-option-content {
    max-height: 300px;
    padding-top: 1rem;
    opacity: 1;
}

.payment-option-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.reviews-section {
    background: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 25px;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
}

.reviews-subtitle {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 400;
}

.reviews-carousel-wrapper {
    position: relative;
    padding: 0 4rem;
}

.reviews-carousel-container {
    overflow: hidden;
    position: relative;
}

.reviews-carousel-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(50% - 1.25rem);
    min-width: calc(50% - 1.25rem);
    max-width: calc(50% - 1.25rem);
}

.reviews-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(10, 26, 46, 0.1);
    color: #0a1a2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reviews-carousel-btn:hover {
    background: #0a1a2e;
    color: #ffffff;
    border-color: #0a1a2e;
    box-shadow: 0 6px 20px rgba(10, 26, 46, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.reviews-prev {
    left: 0;
}

.reviews-next {
    right: 0;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 26, 46, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews-dot.active {
    background: #0a1a2e;
    width: 32px;
    border-radius: 6px;
}

.reviews-dot:hover {
    background: rgba(10, 26, 46, 0.4);
}

.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #3b82f6);
    border-radius: 24px 24px 0 0;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating .star {
    color: #fbbf24;
    font-size: 1.25rem;
    line-height: 1;
}

.review-rating .star.empty {
    color: #e5e7eb;
}

.review-badge {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.positive-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.mixed-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.review-content {
    margin-bottom: 2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

.review-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-card .author-avatar {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.author-role {
    font-size: 0.875rem;
    color: #666666;
}

.location-section {
    background: #ffffff;
    padding: 6rem 2rem;
    position: relative;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 25px;
}

.location-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
}

.location-subtitle {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 400;
}

.location-content {
    display: block;
}

.location-map {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.location-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(59, 130, 246, 0.05));
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.location-map iframe {
    position: relative;
    z-index: 2;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
    transition: transform 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.location-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.location-details p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.location-subtext {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 400;
}

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 6rem 2rem;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 25px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.125rem;
    color: #666666;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.05);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.contact-details p {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.contact-subtext {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 400;
}

.contact-form-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(10, 26, 46, 0.12);
    border: 2px solid rgba(10, 26, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0a1a2e, #1a2a3e, #0a1a2e);
    border-radius: 28px 28px 0 0;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10, 26, 46, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a1a2e;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    z-index: 1;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0a1a2e, #1a2a3e);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 2px solid rgba(10, 26, 46, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #0a1a2e;
    position: relative;
    z-index: 1;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a1a2e;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 26, 46, 0.1), 0 4px 12px rgba(10, 26, 46, 0.08);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-contact {
    background: #0a1a2e;
    color: #ffffff;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(10, 26, 46, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    background: #1a2a3e;
    box-shadow: 0 8px 28px rgba(10, 26, 46, 0.35);
    transform: translateY(-2px);
}

.btn-contact:active {
    transform: translateY(0);
}

.footer {
    background: #0a1a2e;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-about {
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 145px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-list li svg {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-list li span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 1441px) {
    .header-container,
    .content-wrapper,
    .options-container,
    .journey-container,
    .results-container,
    .payment-container,
    .contact-container,
    .reviews-container {
        max-width: 1600px;
    }

    .main-headline {
        font-size: 4rem;
    }

    .payment-title {
        font-size: 3.5rem;
    }

    .journey-title {
        font-size: 3.5rem;
    }

    .options-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1920px) {
    .header-container,
    .content-wrapper,
    .options-container,
    .journey-container,
    .results-container,
    .payment-container,
    .contact-container,
    .reviews-container {
        max-width: 1800px;
    }

    .content-wrapper {
        gap: 5rem;
    }

    .main-headline {
        font-size: 4.5rem;
    }

    .payment-title {
        font-size: 4rem;
    }

    .journey-title {
        font-size: 4rem;
    }

    .options-title {
        font-size: 4rem;
    }

    .reviews-title {
        font-size: 3.5rem;
    }

    .contact-title {
        font-size: 3.5rem;
    }

    .results-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 2560px) {
    .header-container,
    .content-wrapper,
    .options-container,
    .journey-container,
    .results-container,
    .payment-container,
    .contact-container,
    .reviews-container {
        max-width: 2000px;
    }

    .content-wrapper {
        gap: 6rem;
    }

    .main-headline {
        font-size: 5rem;
    }

    .payment-title {
        font-size: 4.5rem;
    }

    .journey-title {
        font-size: 4.5rem;
    }

    .options-title {
        font-size: 4.5rem;
    }

    .reviews-title {
        font-size: 4rem;
    }

    .contact-title {
        font-size: 4rem;
    }

    .results-title {
        font-size: 4rem;
    }

    .main-content {
        padding-top: 40px;
    }

    .header {
        padding: 1.25rem 3rem;
    }
}

@media (max-width: 1440px) and (min-width: 1200px) {
    .main-headline {
        font-size: 3.25rem;
    }

    .options-title {
        font-size: 3rem;
    }
}

@media (max-width: 1199px) and (min-width: 1025px) {
    .content-wrapper {
        gap: 3rem;
    }

    .main-headline {
        font-size: 3rem;
    }

    .options-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 1.25rem 1.5rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .main-image {
        height: 400px;
    }

    .small-images {
        left: 15px;
        gap: 0.75rem;
    }

    .small-image {
        width: 130px;
        height: 130px;
    }

    .options-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .options-title {
        font-size: 2.5rem;
    }

    .options-section {
        padding: 4rem 1.5rem;
    }

    .journey-section {
        padding: 4rem 1.5rem;
    }

    .journey-title {
        font-size: 2.75rem;
    }

    .journey-steps {
        gap: 2.5rem;
    }

    .card-image {
        height: 280px;
    }

    .reviews-carousel-wrapper {
        padding: 0 2rem;
    }

    .review-card {
        padding: 2.25rem;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
        top: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
        border-radius: 30px;
        position: sticky;
    }

    .header-container {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1;
    }

    .logo {
        flex: 1;
    }

    .logo-image {
        height: 40px;
    }

    .header-nav {
        display: none;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .header-right {
        order: 2;
        flex-shrink: 0;
    }

    .header-icons {
        gap: 0.75rem;
    }

    .icon-btn {
        padding: 0.4rem;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .btn-consult {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .main-content {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .content-wrapper {
        gap: 2rem;
    }

    .left-section {
        gap: 1.5rem;
    }

    .main-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .sub-headline {
        font-size: 0.875rem;
    }

    .features-list {
        gap: 1rem;
    }

    .features-list li {
        font-size: 1rem;
    }

    .checkmark {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }

    .warranty-section {
        padding: 1.25rem;
        gap: 0.875rem;
        margin: 1.25rem 0;
    }

    .warranty-list {
        gap: 1rem;
    }

    .warranty-list li {
        font-size: 1rem;
    }

    .warranty-list .warranty-icon {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }

    .warranty-highlight {
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }

    .warranty-highlight::before {
        font-size: 1rem;
    }

    .btn-call {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
    }

    .main-image {
        height: 350px;
    }

    .small-images {
        left: 15px;
        gap: 0.75rem;
    }

    .small-image {
        width: 120px;
        height: 120px;
    }

    .image-caption {
        font-size: 0.8rem;
    }

    .carousel-controls {
        right: 15px;
        bottom: 15px;
        gap: 0.4rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .hero-footer-strip {
        margin-top: 2rem;
        padding: 0.6rem 0;
    }

    .hero-footer-content {
        padding: 0 1.5rem;
    }

    .hero-footer-item {
        font-size: 0.7rem;
    }

    .hero-footer-item .checkmark {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }

    .hero-footer-track {
        gap: 2rem;
        animation-duration: 20s;
    }

    .options-section {
        padding: 3rem 1rem;
    }

    .options-header {
        margin-bottom: 2rem;
    }

    .options-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .options-subtitle {
        font-size: 1rem;
    }

    .options-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image {
        height: 250px;
    }

    .card-label {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .journey-section {
        padding: 3rem 1rem;
    }

    .journey-header {
        margin-bottom: 3rem;
    }

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

    .journey-subtitle {
        font-size: 1rem;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .journey-cta {
        margin-top: 2rem;
    }

    .btn-journey {
        width: 100%;
        padding: 1rem 2rem;
    }

    .results-section {
        padding: 3rem 1rem;
    }

    .results-header {
        margin-bottom: 2rem;
    }

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

    .results-subtitle {
        font-size: 1rem;
    }

    .results-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-images {
        height: 220px;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .result-image::before {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .result-details {
        padding: 1.25rem;
    }

    .payment-section {
        padding: 3rem 1rem;
        border-radius: 24px;
        margin: 2rem 1rem;
    }

    .payment-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .payment-description {
        font-size: 0.95rem;
    }

    .payment-option {
        padding: 1.25rem 0;
    }

    .reviews-section {
        padding: 4rem 1rem;
    }

    .reviews-header {
        margin-bottom: 3rem;
    }

    .reviews-title {
        font-size: 2.25rem;
    }

    .reviews-carousel-wrapper {
        padding: 0 3rem;
    }

    .review-card {
        min-width: 100%;
        padding: 2rem;
    }

    .location-section {
        padding: 4rem 1rem;
    }

    .location-header {
        margin-bottom: 3rem;
    }

    .location-title {
        font-size: 2.25rem;
    }

    .location-content {
        display: block;
    }

    .location-map {
        height: 400px;
    }

    .location-info {
        gap: 1.25rem;
    }

    .location-card {
        padding: 1.75rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

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

    .contact-description {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
        border-radius: 24px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .main-image {
        height: 350px;
    }

    .hero-footer-strip {
        margin-top: 1.5rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.875rem 1rem;
    }

    .hamburger-btn {
        width: 24px;
        height: 20px;
    }

    .logo-image {
        height: 35px;
    }

    .header-right {
        gap: 0.75rem;
    }

    .header-icons {
        gap: 0.5rem;
    }

    .icon-btn {
        padding: 0.35rem;
    }

    .icon-btn svg {
        width: 16px;
        height: 16px;
    }

    .btn-consult {
        padding: 0.625rem 0.875rem;
        font-size: 0.7rem;
    }

    .main-content {
        padding: 1.5rem 0.875rem;
    }

    .content-wrapper {
        gap: 1.5rem;
    }

    .left-section {
        gap: 1.25rem;
    }

    .main-headline {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .sub-headline {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .features-list {
        gap: 0.875rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    .checkmark {
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
    }

    .warranty-section {
        padding: 1rem;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .warranty-list {
        gap: 0.875rem;
    }

    .warranty-list li {
        font-size: 0.95rem;
    }

    .warranty-list .warranty-icon {
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
    }

    .warranty-highlight {
        font-size: 0.8rem;
        padding-left: 1rem;
    }

    .warranty-highlight::before {
        font-size: 0.95rem;
    }

    .btn-call {
        width: 100%;
        text-align: center;
        padding: 0.95rem 1.5rem;
        font-size: 0.75rem;
    }

    .main-image {
        height: 300px;
    }

    .small-images {
        left: 10px;
        gap: 0.5rem;
    }

    .small-image {
        width: 100px;
        height: 100px;
    }

    .image-caption {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }

    .info-icon {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }

    .carousel-controls {
        right: 10px;
        bottom: 10px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .hero-footer-strip {
        margin-top: 1.5rem;
        padding: 0.5rem 0;
    }

    .hero-footer-content {
        padding: 0 1rem;
    }

    .hero-footer-item {
        font-size: 0.65rem;
        gap: 0.4rem;
    }

    .hero-footer-item .checkmark {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .hero-footer-track {
        gap: 1.5rem;
        animation-duration: 15s;
    }

    .options-section {
        padding: 2.5rem 0.875rem;
    }

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

    .options-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .options-subtitle {
        font-size: 0.9rem;
    }

    .options-cards {
        gap: 1.25rem;
    }

    .card-image {
        height: 220px;
    }

    .card-label {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .journey-section {
        padding: 2.5rem 0.875rem;
    }

    .journey-header {
        margin-bottom: 2rem;
    }

    .journey-title {
        font-size: 1.75rem;
    }

    .journey-subtitle {
        font-size: 0.9rem;
    }

    .journey-steps {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .step-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .btn-journey {
        padding: 0.95rem 2rem;
        font-size: 0.8rem;
    }

    .results-section {
        padding: 2.5rem 0.875rem;
    }

    .results-title {
        font-size: 1.75rem;
    }

    .results-subtitle {
        font-size: 0.9rem;
    }

    .results-cards {
        gap: 1.25rem;
    }

    .result-images {
        height: 200px;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .result-image::before {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .result-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

    .payment-section {
        padding: 2.5rem 0.875rem;
        border-radius: 20px;
        margin: 1.5rem 0.875rem;
    }

    .payment-right {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .payment-option {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .payment-title {
        font-size: 1.75rem;
    }

    .payment-description {
        font-size: 0.9rem;
    }

    .payment-option-header {
        font-size: 0.95rem;
    }

    .payment-option-preview {
        font-size: 0.8rem;
    }

    .payment-option-content p {
        font-size: 0.85rem;
    }

    .btn-payment {
        width: 100%;
        padding: 1rem 2rem;
    }

    .reviews-section {
        padding: 3rem 0.875rem;
    }

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

    .reviews-subtitle {
        font-size: 1rem;
    }

    .review-card {
        padding: 1.75rem;
        border-radius: 20px;
        min-width: 100%;
    }

    .reviews-carousel-wrapper {
        padding: 0 0.5rem;
    }

    .reviews-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .reviews-carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .location-section {
        padding: 3rem 0.875rem;
    }

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

    .location-subtitle {
        font-size: 1rem;
    }

    .location-map {
        height: 350px;
    }

    .location-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .location-icon {
        width: 50px;
        height: 50px;
    }

    .location-details h3 {
        font-size: 1.125rem;
    }

    .location-details p {
        font-size: 0.95rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .contact-section {
        padding: 2.5rem 0.875rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-description {
        font-size: 0.9rem;
    }

    .contact-item {
        gap: 1.25rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-details h3 {
        font-size: 1.125rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    .contact-form-section {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .form-group input,
    .form-group textarea {
        border-radius: 10px;
    }

    .btn-contact {
        border-radius: 10px;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .card-label svg {
        width: 18px;
        height: 18px;
    }

    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-logo-image {
        height: 50px;
    }

    .social-media {
        gap: 0.75rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 375px) {
    .header {
        padding: 0.75rem;
    }

    .main-content {
        padding: 1.25rem 0.75rem;
    }

    .main-headline {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 0.75rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .main-image {
        height: 300px;
    }

    .before-after-item {
        width: 90px;
        height: 90px;
    }

    .options-section {
        padding: 2rem 0.75rem;
    }

    .options-title {
        font-size: 1.5rem;
    }

    .options-subtitle {
        font-size: 0.85rem;
    }

    .card-image {
        height: 200px;
    }

    .journey-section {
        padding: 2rem 0.75rem;
    }

    .journey-title {
        font-size: 1.5rem;
    }

    .journey-subtitle {
        font-size: 0.85rem;
    }

    .journey-steps {
        gap: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .journey-section {
        padding: 2rem 0.75rem;
    }

    .journey-title {
        font-size: 1.5rem;
    }

    .journey-subtitle {
        font-size: 0.85rem;
    }

    .journey-steps {
        gap: 1.5rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .result-images {
        height: 180px;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .result-image::before {
        top: 0.4rem;
        left: 0.4rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    .card-label {
        padding: 0.875rem;
        font-size: 0.85rem;
    }

    .hero-footer-item {
        font-size: 0.65rem;
    }
}

@media (max-width: 320px) {
    .main-headline {
        font-size: 1.375rem;
    }

    .options-title {
        font-size: 1.375rem;
    }

    .btn-consult {
        padding: 0.5rem 0.75rem;
        font-size: 0.65rem;
    }

    .btn-call {
        padding: 0.875rem 1.25rem;
        font-size: 0.7rem;
    }

    .main-image {
        height: 250px;
    }

    .small-images {
        left: 10px;
        gap: 0.5rem;
    }

    .small-image {
        width: 90px;
        height: 90px;
    }

    .card-image {
        height: 180px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .options-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .options-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-image {
        height: 240px;
    }

    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .journey-title {
        font-size: 2.25rem;
    }

    .results-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .results-title {
        font-size: 2.25rem;
    }
}

@media (pointer: coarse) {
    .menu-btn,
    .icon-btn,
    .btn-consult,
    .btn-call,
    .carousel-btn,
    
    .option-card {
        min-height: 44px;
        min-width: 44px;
    }

    .header-icons {
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .header,
    .hero-footer-strip,
    .carousel-controls {
        display: none;
    }

    .main-content,
    .options-section {
        padding: 1rem;
    }
}

