/* ========================================
   NEW BODY PIASECZNO - Dark Theme
   Style: enroute.health inspired
   ======================================== */

:root {
    --pink: #E94F8A;
    --pink-dark: #C93C73;
    --pink-light: #F8B1C8;
    --turquoise: #3FA7C4;
    --turquoise-dark: #2E7F99;
    --aqua-light: #BFE6F0;
    --lime: #c8f562;
    --bg-dark: #0a0a0a;
    --bg-dark-2: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --border-dark: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.1);
    --text-white: #ffffff;
    --text-gray: #999999;
    --text-muted: #666666;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1200px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 100px;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition: all 0.3s ease; }
ul,ol { list-style:none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-dark);
    padding: 12px 0;
}

.navbar .container { display:flex; align-items:center; justify-content:space-between; }

.navbar-logo img { height: 44px; transition: height 0.3s ease; }
.navbar.scrolled .navbar-logo img { height: 34px; }

.navbar-links { display:flex; align-items:center; gap:36px; }

.navbar-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.3px;
}
.navbar-links a:hover { color: var(--text-white); }

.navbar-cta {
    padding: 10px 28px !important;
    background: var(--text-white) !important;
    color: var(--bg-dark) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.3px;
}
.navbar-cta:hover { background: var(--pink) !important; color: #fff !important; }

.navbar-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; z-index:1001; }
.navbar-toggle span { width:22px; height:2px; background:#fff; transition:all 0.3s ease; border-radius:2px; }

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    filter: grayscale(30%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--pink) 0%, var(--turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-gray);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.75;
    font-weight: 300;
}

.hero-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--text-white);
    color: var(--bg-dark);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(233,79,138,0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.hero-info-bar {
    position: absolute;
    bottom: 48px;
    left: 50%; transform: translateX(-50%);
    z-index: 3;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 32px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.hero-info-bar strong { color: var(--text-gray); }
.hero-info-bar span { color: rgba(255,255,255,0.15); }

/* ========================================
   SECTIONS - COMMON
   ======================================== */
section { padding: 120px 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    color: var(--pink);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
}

/* ========================================
   WHY US
   ======================================== */
.why-us { background: var(--bg-dark); }

.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.feature-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.feature-icon.pink { background: rgba(233,79,138,0.1); color: var(--pink); }
.feature-icon.turquoise { background: rgba(63,167,196,0.1); color: var(--turquoise); }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; }

/* ========================================
   TREATMENTS
   ======================================== */
.treatments { background: var(--bg-dark-2); }

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.treatment-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: all 0.4s ease;
}
.treatment-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.treatment-card-image { width:100%; height:220px; overflow:hidden; }
.treatment-card-image img {
    width:100%; height:100%;
    object-fit:cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    filter: grayscale(20%);
}
.treatment-card:hover .treatment-card-image img { transform:scale(1.06); filter:grayscale(0); }

.treatment-card-header { padding: 24px 24px 0; }

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.treatment-duration {
    font-size: 0.75rem;
    color: var(--pink);
    font-weight: 600;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(233,79,138,0.08);
    border: 1px solid rgba(233,79,138,0.15);
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.treatment-card-body { padding: 0 24px 24px; }
.treatment-card p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; }

.treatment-cta {
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
}
.treatment-cta p { font-size: 1rem; color: var(--text-gray); margin-bottom: 24px; }

/* ========================================
   PROCESS
   ======================================== */
.process { background: var(--bg-dark); }

.steps-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    position: relative;
}

.step {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    transition: all 0.4s ease;
}
.step:hover { border-color: var(--border-light); }

.step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    border: 1px solid var(--border-light);
    color: var(--text-white);
}
.step:nth-child(1) .step-number { background: rgba(233,79,138,0.1); border-color: rgba(233,79,138,0.2); color: var(--pink); }
.step:nth-child(2) .step-number { background: rgba(63,167,196,0.1); border-color: rgba(63,167,196,0.2); color: var(--turquoise); }
.step:nth-child(3) .step-number { background: rgba(200,245,98,0.08); border-color: rgba(200,245,98,0.15); color: var(--lime); }

.step h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.step p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; max-width: 300px; margin: 0 auto; }

/* ========================================
   EFFECTS / STATS
   ======================================== */
.effects {
    background: var(--bg-dark-2);
    position: relative;
    overflow: hidden;
}

.effects-bg-img {
    position: absolute;
    inset: 0;
    width:100%; height:100%;
    object-fit:cover;
    opacity: 0.1;
    filter: grayscale(60%);
}

.effects::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-dark-2) 0%, rgba(17,17,17,0.6) 50%, var(--bg-dark-2) 100%);
    z-index: 1;
}

.effects .container { position: relative; z-index: 2; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}
.stat-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label { font-size: 0.88rem; color: var(--text-muted); }

/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--bg-dark); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-tag { margin-bottom: 20px; }

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.about-text p { font-size: 1rem; color: var(--text-gray); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-of-type { color: var(--text-white); font-weight: 500; font-style: italic; }

.about-image { position: relative; }

.about-image-placeholder {
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.about-photo { width:100%; height:100%; object-fit:cover; position:relative; z-index:1; }

.about-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.6) 100%);
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    padding: 16px 24px;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    z-index: 3;
}
.about-badge strong { display:block; font-family:var(--font-heading); font-size:1.2rem; color:var(--pink); }
.about-badge span { font-size:0.82rem; color:var(--text-gray); }

/* ========================================
   REVIEWS
   ======================================== */
.reviews { background: var(--bg-dark-2); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.review-card {
    padding: 36px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    transition: all 0.4s ease;
}
.review-card:hover { border-color: var(--border-light); }

.review-stars { color: #f4b942; font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }

.review-card blockquote {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author { font-weight: 600; font-size: 0.88rem; color: var(--pink); }

.reviews-link { text-align: center; }
.reviews-link a { color: var(--text-gray); font-weight: 500; font-size: 0.9rem; border-bottom: 1px solid var(--border-light); padding-bottom: 2px; }
.reviews-link a:hover { color: var(--pink); border-color: var(--pink); }

/* ========================================
   PRICING - Card Style
   ======================================== */
.pricing { background: var(--bg-dark); }

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    background: var(--bg-card);
}

.pricing-table { width:100%; border-collapse:collapse; font-size:0.88rem; }

.pricing-table thead { background: rgba(255,255,255,0.04); }

.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-dark);
}

.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-gray);
}
.pricing-table tbody tr:last-child td { border-bottom:none; }
.pricing-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.pricing-table .treatment-name { font-weight: 600; color: var(--text-white); }

.pricing-cards-info {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-dark);
    margin-bottom: 24px;
}
.pricing-cards-info p { color: var(--text-gray); font-size: 0.92rem; }
.pricing-cards-info strong { color: var(--pink); }

.pricing-note { text-align: center; font-size: 0.82rem; color: var(--text-muted); }

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--bg-dark-2); }

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active { border-color: rgba(233,79,138,0.3); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.faq-question h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; flex:1; }

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-gray);
}
.faq-item.active .faq-icon { background: var(--pink); color:#fff; border-color: var(--pink); transform:rotate(45deg); }

.faq-answer { max-height:0; overflow:hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-answer-inner { padding:0 24px 20px; font-size:0.9rem; color:var(--text-gray); line-height:1.75; }

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--bg-dark); }

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; }

.contact-info-cards { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-dark);
}

.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(63,167,196,0.08);
    color: var(--turquoise);
    border: 1px solid rgba(63,167,196,0.12);
}

.contact-info-card h4 { font-size:0.78rem; color:var(--text-muted); font-weight:500; margin-bottom:2px; text-transform:uppercase; letter-spacing:0.5px; }
.contact-info-card p { font-weight:600; font-size:0.92rem; }
.contact-info-card a { color: var(--turquoise); }
.contact-info-card a:hover { color: var(--pink); }

.contact-hours h3 { font-family:var(--font-heading); font-size:1rem; margin-bottom:12px; text-transform:uppercase; letter-spacing:0.5px; }

.hours-list { display:flex; flex-direction:column; gap:0; }
.hours-list li {
    display:flex; justify-content:space-between;
    font-size:0.88rem;
    padding:10px 0;
    border-bottom:1px solid var(--border-dark);
}
.hours-list li span:first-child { color:var(--text-muted); }
.hours-list li span:last-child { font-weight:600; color: var(--text-gray); }
.hours-list li.closed span:last-child { color:var(--pink); }

/* Contact form */
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-dark);
}

.contact-form-wrapper h3 { font-family:var(--font-heading); font-size:1.2rem; margin-bottom:24px; text-transform:uppercase; letter-spacing:0.5px; }

.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:0.78rem; font-weight:500; color:var(--text-muted); margin-bottom:6px; text-transform:uppercase; letter-spacing:0.5px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-white);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.3s ease;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { color: var(--text-gray); }
.form-group select option { background: var(--bg-dark); color: var(--text-white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }

.form-group textarea { resize:vertical; min-height:100px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-submit { width:100%; margin-top:8px; justify-content:center; }
.form-note { text-align:center; margin-top:12px; font-size:0.78rem; color:var(--text-muted); }

/* Map */
.contact-map {
    margin-top:48px;
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--border-dark);
    height:300px;
}
.contact-map iframe { width:100%; height:100%; border:none; filter: invert(90%) hue-rotate(180deg) grayscale(20%); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    color: var(--text-muted);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img { height:44px; margin-bottom:16px; }
.footer-brand p { font-size:0.85rem; line-height:1.6; max-width:280px; }

.footer-cards { display:flex; gap:6px; margin-top:16px; flex-wrap:wrap; }
.footer-cards span {
    padding:4px 10px;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--border-dark);
    border-radius:var(--radius-pill);
    font-size:0.7rem;
    font-weight:500;
    color: var(--text-muted);
}

.footer-col h4 {
    color:var(--text-gray);
    font-family:var(--font-heading);
    font-size:0.78rem;
    font-weight:600;
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { font-size:0.82rem; color:var(--text-muted); }
.footer-col ul li a:hover { color:var(--pink); }

.footer-social { display:flex; gap:8px; margin-top:12px; }
.footer-social a {
    width:36px; height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--border-dark);
    display:flex; align-items:center; justify-content:center;
    font-size:1rem;
    transition:all 0.3s ease;
    color: var(--text-muted);
}
.footer-social a:hover { background:var(--pink); color:#fff; border-color:var(--pink); }

.footer-bottom {
    padding-top:32px;
    border-top:1px solid var(--border-dark);
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:16px;
}
.footer-bottom p { font-size:0.78rem; }

.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:0.78rem; color:var(--text-muted); }
.footer-legal a:hover { color:var(--pink); }

/* ========================================
   FLOATING CTA (mobile)
   ======================================== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    padding: 14px 24px;
    background: var(--pink);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 8px 32px rgba(233,79,138,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-cta:hover { background:var(--pink-dark); transform:translateY(-2px); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .treatments-grid { grid-template-columns:repeat(2,1fr); }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
    .about-content { gap:48px; }
    .footer-content { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding:80px 0; }

    .navbar-links {
        display:none;
        position:fixed; top:0; left:0; right:0; bottom:0;
        background:rgba(10,10,10,0.98);
        backdrop-filter:blur(24px);
        flex-direction:column; justify-content:center; align-items:center;
        gap:24px; z-index:1000;
    }
    .navbar-links.active { display:flex; }
    .navbar-links a { font-size:1.2rem; color:var(--text-gray) !important; }
    .navbar-toggle { display:flex; }
    .navbar-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
    .navbar-toggle.active span:nth-child(2) { opacity:0; }
    .navbar-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

    .hero h1 { font-size:clamp(2.8rem,12vw,4.5rem); letter-spacing:-1.5px; }

    .features-grid { grid-template-columns:1fr; }
    .treatments-grid { grid-template-columns:1fr; }
    .steps-container { grid-template-columns:1fr; gap:12px; }
    .stats-grid { grid-template-columns:1fr 1fr; }
    .about-content { grid-template-columns:1fr; gap:32px; }
    .about-image { order:-1; }
    .reviews-grid { grid-template-columns:1fr; }
    .contact-grid { grid-template-columns:1fr; }
    .contact-form-wrapper { padding:24px; }
    .form-row { grid-template-columns:1fr; }
    .footer-content { grid-template-columns:1fr; gap:32px; }
    .footer-bottom { flex-direction:column; text-align:center; }
    .floating-cta { display:flex; align-items:center; gap:8px; }

    .hero-info-bar { font-size:0.7rem; padding:10px 20px; bottom:20px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction:column; align-items:center; }
    .btn-primary, .btn-secondary { width:100%; justify-content:center; }
    .stats-grid { grid-template-columns:1fr; }
    .pricing-table { font-size:0.78rem; }
    .pricing-table th, .pricing-table td { padding:10px 12px; }
}
