/* Modern CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #fff;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Transition */
.page-transition {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(20px, 4vw, 60px);
    height: 100px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 80px;
}

.logo img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation */
nav {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}

nav a {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f06292, #e91e63);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #e91e63;
    transform: translateY(-2px);
}

nav a[href^="tel"] {
    font-weight: 600;
    color: #e91e63;
    font-size: 17px;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(233, 30, 99, 0.08);
}

nav a[href^="tel"]:hover {
    background: rgba(233, 30, 99, 0.15);
    transform: translateY(-2px);
}

nav a[href^="tel"]::after {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(40px, 8vw, 100px) 20px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #ff4081 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-text p {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f06292, #e91e63);
    margin: 32px auto 0;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.massage-info,
.massage-benefits,
.massage-types,
.why-us {
    background: #fff;
    padding: clamp(60px, 10vw, 100px) 20px;
    position: relative;
}

/* Reduce section padding on tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .massage-info,
    .massage-benefits,
    .massage-types,
    .why-us {
        padding: clamp(40px, 6vw, 70px) 20px;
    }
}

/* Contact Block */
.contact-block {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: clamp(60px, 10vw, 80px) 20px;
    position: relative;
}

.contact-block-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 50px);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-block-container:hover {
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.12);
}

.contact-invitation {
    font-size: clamp(18px, 2.5vw, 22px);
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-block-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.contact-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #f06292, #e91e63);
    color: white;
    border-radius: 30px;
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.25);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    white-space: nowrap;
}

.contact-call-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
    background: linear-gradient(135deg, #e91e63, #d81b60);
}

.contact-call-btn:active {
    transform: translateY(-1px);
}

.contact-email-link {
    font-size: clamp(16px, 2vw, 18px);
    color: #e91e63;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-email-link:hover {
    color: #d81b60;
    text-decoration: underline;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-social-icon svg {
    width: 22px;
    height: 22px;
    stroke: #666;
    fill: none;
    transition: all 0.3s ease;
}

.contact-social-icon[aria-label="Telegram"] svg,
.contact-social-icon[aria-label="WhatsApp"] svg {
    stroke: none;
    fill: #666;
}

.contact-social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

/* Telegram specific hover */
.contact-social-icon[aria-label="Telegram"]:hover {
    background: #0088cc;
}

.contact-social-icon[aria-label="Telegram"]:hover svg {
    fill: white;
}

/* WhatsApp specific hover */
.contact-social-icon[aria-label="WhatsApp"]:hover {
    background: #25D366;
}

.contact-social-icon[aria-label="WhatsApp"]:hover svg {
    fill: white;
}

/* Instagram specific hover */
.contact-social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #f06292, #e91e63);
}

.contact-social-icon[aria-label="Instagram"]:hover svg {
    stroke: white;
}

@media (max-width: 768px) {
    .massage-info,
    .massage-benefits,
    .massage-types,
    .why-us {
        padding: 40px 20px;
    }

    .contact-block {
        padding: 50px 20px;
    }

    .contact-block-container {
        padding: 40px 30px;
    }

    .contact-invitation {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .contact-block-actions {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 28px;
    }

    .contact-call-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .contact-social-icons {
        gap: 16px;
    }

    .contact-social-icon {
        width: 42px;
        height: 42px;
    }

    .contact-social-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .massage-info,
    .massage-benefits,
    .massage-types,
    .why-us {
        padding: 30px 15px;
    }

    .contact-block {
        padding: 40px 15px;
    }

    .contact-block-container {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .contact-invitation {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .contact-block-actions {
        gap: 16px;
        margin-bottom: 24px;
    }

    .contact-call-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .contact-email-link {
        font-size: 15px;
    }

    .contact-social-icons {
        gap: 14px;
    }

    .contact-social-icon {
        width: 40px;
        height: 40px;
    }

    .contact-social-icon svg {
        width: 20px;
        height: 20px;
    }
}

.massage-container,
.types-grid,
.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.benefit-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

/* Reduce gap on tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .benefit-row {
        gap: clamp(25px, 3vw, 40px);
    }
}

.massage-text,
.benefit-text {
    flex: 1 1 500px;
    font-size: clamp(16px, 2vw, 18px);
    color: #2d2d2d;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.massage-text h2,
.benefit-text h2,
.benefits-title,
.types-title,
.why-title {
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 24px;
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .benefits-title,
    .types-title,
    .why-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-title,
    .types-title,
    .why-title {
        margin-bottom: 16px;
    }
}

.massage-text p,
.benefit-text p {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.massage-text p strong,
.benefit-text li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.massage-text p span {
    color: #e91e63;
    font-weight: 600;
}

/* Images */
.massage-image,
.benefit-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.massage-image img,
.benefit-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInScale 1s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.massage-image img:hover,
.benefit-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Benefits Section */
.benefit-row {
    margin-bottom: 40px;
}

/* iPad mini and tablets - reduce spacing */
@media (min-width: 768px) and (max-width: 1024px) {
    .benefit-row {
        margin-bottom: 30px;
        gap: clamp(20px, 3vw, 35px);
    }

    .massage-benefits {
        padding: clamp(40px, 6vw, 60px) 20px;
    }
}

@media (max-width: 767px) {
    .benefit-row {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .benefit-row {
        margin-bottom: 20px;
    }
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-text li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.7;
    color: #444;
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
}

@media (max-width: 768px) {
    .benefit-text li {
        padding: 10px 0;
        padding-left: 28px;
    }

    .benefit-text li:last-child {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .benefit-text li {
        padding: 8px 0;
        padding-left: 24px;
    }

    .benefit-text li:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.benefit-text li:nth-child(1) { animation-delay: 0.1s; }
.benefit-text li:nth-child(2) { animation-delay: 0.2s; }
.benefit-text li:nth-child(3) { animation-delay: 0.3s; }

.benefit-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: 700;
    font-size: 20px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-text li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.type-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.type-card:hover::before {
    opacity: 1;
}

.type-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.15);
}

.type-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.type-card:hover img {
    transform: scale(1.1);
}

.type-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.type-content h3 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.type-content p {
    font-size: clamp(15px, 2vw, 16px);
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Why Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f06292, #e91e63);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.12);
}

.why-card h3 {
    font-size: 22px;
    color: #e91e63;
    margin-bottom: 16px;
    font-weight: 600;
}

.why-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: #fafafa;
    padding: 50px 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 12px;
}

.footer-note {
    font-size: 13px;
    color: #999;
}

.footer-privacy {
    margin-top: 12px;
    font-size: 13px;
}

.footer-privacy a {
    color: #e91e63;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-privacy a:hover {
    color: #d81b60;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-socials a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
    background: linear-gradient(135deg, #f06292, #e91e63);
}

.footer-socials a svg {
    width: 22px;
    height: 22px;
    stroke: #666;
    fill: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover svg {
    stroke: #fff;
}

/* To Top Button */
#toTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #f06292, #e91e63);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

#toTop.visible {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

#toTop:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
}

#toTop svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.burger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    color: #2d2d2d;
    transition: transform 0.3s ease;
}

.burger:hover {
    transform: scale(1.1);
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 8px;
    right: 8px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    z-index: 999;
}

.mobile-menu.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px;
}

.mobile-menu a {
    display: block;
    padding: 14px 16px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(233, 30, 99, 0.08);
    color: #e91e63;
    transform: translateX(4px);
}

.mobile-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(233, 30, 99, 0.08);
    transition: all 0.3s ease;
}

.mobile-phone:hover {
    background: rgba(233, 30, 99, 0.15);
    transform: translateY(-2px);
}

.mobile-phone svg {
    width: 18px;
    height: 18px;
    color: #e91e63;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 0 30px;
        height: 90px;
    }

    header.scrolled {
        height: 70px;
    }

    .logo img {
        height: 75px;
    }

    .massage-container,
    .benefit-row {
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
        height: 80px;
    }

    header.scrolled {
        height: 70px;
    }

    .logo img {
        height: 65px;
    }

    nav {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .benefit-text ul {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .benefit-text li:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .benefit-image {
        margin-top: 0;
        margin-bottom: 0;
    }

    .massage-container {
        flex-direction: column;
        gap: 20px;
    }

    .massage-image {
        order: -1;
        margin-bottom: 0;
        margin-top: 0;
    }

    .benefit-row.reverse .benefit-image {
        order: -1;
        margin-bottom: 0;
        margin-top: 0;
    }

    .benefit-row:not(.reverse) .benefit-image {
        order: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .massage-text,
    .benefit-text {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .types-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .type-card img {
        height: 220px;
    }

    .type-content {
        padding: 28px 24px;
    }

    .type-content h3 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 16px;
        font-weight: 600;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: -0.01em;
        color: #1a1a1a;
    }

    .type-content p {
        font-size: 17px;
        line-height: 1.7;
        color: #444;
        font-weight: 400;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 30px 24px;
    }

    #toTop {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 600px) {
    .massage-benefits {
        padding: 30px 15px;
    }

    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
        gap: 0 !important;
        margin-bottom: 24px;
        align-items: stretch;
    }

    .benefit-text {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left;
        line-height: 1.5 !important;
        flex: none !important;
    }

    .benefit-text ul {
        margin: 0 !important;
        padding: 0 !important;
    }

    .benefit-text li {
        padding: 6px 0 6px 24px !important;
        margin: 0 !important;
        line-height: 1.5 !important;
    }

    .benefit-text li:last-child {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .benefit-image {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        flex: none !important;
        order: 0;
    }

    .benefit-row.reverse .benefit-image {
        order: -1;
        margin-bottom: 0 !important;
    }

    .benefit-row:not(.reverse) .benefit-image {
        order: 0;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .benefit-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        margin: 0 !important;
        display: block;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 15px;
        height: auto;
        min-height: 70px;
    }

    .logo img {
        height: 55px;
    }

    .mobile-phone {
        display: inline-flex;
        margin-right: 8px;
        font-size: 14px;
        padding: 6px 12px;
    }

    .hero {
        padding: 40px 15px;
    }

    .massage-info,
    .massage-benefits,
    .massage-types,
    .why-us {
        padding: 30px 15px;
    }

    .benefit-row,
    .benefit-row.reverse {
        gap: 4px;
        margin-bottom: 20px;
    }

    .benefit-text ul {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .benefit-text li:last-child {
        padding-bottom: 4px;
        margin-bottom: 0;
    }

    .benefit-text {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .benefit-image {
        margin-top: 4px;
        margin-bottom: 0;
    }

    .massage-container {
        gap: 16px;
    }

    .types-grid {
        gap: 20px;
    }

    .type-card img {
        height: 200px;
    }

    .type-content {
        padding: 24px 20px;
    }

    .type-content h3 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 14px;
        font-weight: 600;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: -0.01em;
        color: #1a1a1a;
    }

    .type-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        font-weight: 400;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .footer {
        padding: 40px 15px;
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
    }
}

/* iPhone 14 Pro Max and similar large mobile devices */
@media only screen 
    and (device-width: 430px) 
    and (device-height: 932px) 
    and (-webkit-device-pixel-ratio: 3) {
    
    .type-content h3 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 16px;
        font-weight: 600;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: -0.01em;
        color: #1a1a1a;
    }

    .type-content p {
        font-size: 17px;
        line-height: 1.7;
        color: #444;
        font-weight: 400;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .type-content {
        padding: 28px 24px;
    }

    .type-card img {
        height: 220px;
    }
}

/* Large mobile devices (tablets in portrait) */
@media (min-width: 481px) and (max-width: 768px) {
    .type-content h3 {
        font-size: 21px;
        line-height: 1.4;
        margin-bottom: 15px;
        font-weight: 600;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: -0.01em;
        color: #1a1a1a;
    }

    .type-content p {
        font-size: 17px;
        line-height: 1.7;
        color: #444;
        font-weight: 400;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .type-content {
        padding: 26px 22px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(233, 30, 99, 0.2);
    color: #1a1a1a;
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid #e91e63;
    outline-offset: 4px;
    border-radius: 4px;
}