/* =========================================================================
   DepilConcept Ireland — Light Theme CSS
   Brand: cyan/turquoise #43a9c8 + slate ink, clean & airy
   Fonts: Poppins (headings) + Inter (body)
   All brand colours are CSS variables; the <head> overrides --primary etc.
   from admin settings, so the whole site re-skins from one place.
   ========================================================================= */

/* ---- CSS Variables (defaults; may be overridden inline from settings) ---- */
:root {
    --primary: #43a9c8;          /* DepilConcept cyan */
    --primary-dark: #2f8aa8;
    --primary-darker: #246b84;
    --primary-light: #7cc6dd;
    --primary-50: #eef8fb;
    --primary-100: #ddf0f6;
    --secondary: #37424c;        /* logo slate / headings */
    --accent: #ff6aa2;           /* soft pink pop, used sparingly */

    --ink: #37424c;
    --text-primary: #2c3640;
    --text-secondary: #54616b;
    --text-muted: #8a98a3;

    --bg-primary: #ffffff;
    --bg-secondary: #f5fafc;     /* very light cyan */
    --bg-cream: #f7f9fb;         /* light grey */
    --bg-card: #ffffff;
    --border: #e6edf1;
    --glass: rgba(67,169,200,0.06);

    --radius: 12px;
    --radius-lg: 20px;
    --container: 1200px;
    --shadow-sm: 0 2px 10px rgba(55,66,76,0.05);
    --shadow-md: 0 12px 30px rgba(55,66,76,0.08);
    --shadow-lg: 0 24px 60px rgba(55,66,76,0.12);
    --shadow-primary: 0 12px 30px rgba(67,169,200,0.22);
    --star: #ffb400;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

::selection { background: var(--primary); color: #fff; }
::-moz-selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: rgba(67,169,200,0.4); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
html { scrollbar-color: rgba(67,169,200,0.4) var(--bg-secondary); scrollbar-width: thin; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }
.lede { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.75; }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 110px 0; }
.section-alt { background: var(--bg-secondary); }
.section-cream { background: var(--bg-cream); }
.section-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}
.section-primary h1, .section-primary h2, .section-primary h3, .section-primary h4 { color: #fff; }
.section-primary p { color: rgba(255,255,255,0.9); }

.section-header { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-header .eyebrow,
.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    margin-bottom: 14px;
}
.eyebrow.with-line::before,
.eyebrow.with-line::after {
    content: '';
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.6;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-secondary); }

/* ---- Utility classes ---- */
.text-center { text-align: center; }
.text-primary-color { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-ink { color: var(--ink); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.uppercase { text-transform: uppercase; letter-spacing: 0.08em; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.small { font-size: 0.875rem; }

.gradient-text {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hide-mobile { display: none; }
.show-mobile { display: block; }
@media (min-width: 768px) {
    .hide-mobile { display: block; }
    .show-mobile { display: none; }
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 24px rgba(55,66,76,0.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { max-height: 50px; width: auto; }
.site-footer .footer-logo img { max-height: 56px; width: auto; }

.nav-links { display: none; gap: 26px; align-items: center; }
.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color .2s ease;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px;
    background: var(--primary); border-radius: 1px;
}

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    padding: 11px 22px; border-radius: 999px;
    font-weight: 600; font-size: 0.9rem;
    transition: transform .15s ease, box-shadow .2s ease;
    box-shadow: var(--shadow-primary);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(67,169,200,0.34); color: #fff !important; }

.nav-toggle { display: inline-flex; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; padding: 8px; }
.nav-mobile { display: none; padding: 12px 24px 24px; border-top: 1px solid var(--border); background: #fff; }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 14px 0; color: var(--text-secondary); font-weight: 500; border-bottom: 1px solid var(--border); }
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile .nav-cta { width: 100%; justify-content: center; margin-top: 16px; display: flex; }

@media (min-width: 992px) {
    .nav-links { display: flex; }
    .nav-toggle { display: none; }
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: 999px;
    font-weight: 600; cursor: pointer; border: 0;
    font-family: inherit; font-size: 1rem;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    text-decoration: none; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(67,169,200,0.36); color: #fff !important; }
.btn-secondary {
    background: #fff;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary-50); color: var(--primary-dark) !important; }
.btn-ghost {
    background: transparent; color: var(--ink) !important; border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary) !important; }
.btn-white { background: #fff; color: var(--primary) !important; box-shadow: var(--shadow-md); }
.btn-white:hover { color: var(--primary-dark) !important; box-shadow: var(--shadow-lg); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #ff4d8d); color: #fff !important; box-shadow: 0 10px 26px rgba(255,106,162,0.3); }
.btn-accent:hover { color: #fff !important; box-shadow: 0 16px 34px rgba(255,106,162,0.42); }
.btn-lg { padding: 17px 38px; font-size: 1.08rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ===========================================================
   CARDS
   =========================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }

/* ---- Service cards ---- */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 576px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex; flex-direction: column; gap: 14px;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.service-card .icon-wrap {
    width: 64px; height: 64px; border-radius: 18px;
    background: var(--primary-50);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
.service-card:hover .icon-wrap { background: var(--primary); color: #fff; transform: translateY(-2px) rotate(-4deg); }
.service-card h3 { font-size: 1.2rem; color: var(--ink); }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }
.service-card .price { color: var(--primary); font-weight: 700; }
.service-card .more {
    margin-top: auto; color: var(--primary); font-weight: 600; font-size: 0.92rem;
    display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; padding-top: 6px;
}
.service-card:hover .more { gap: 12px; }

/* ---- Step cards ---- */
.step-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 576px) { .step-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .step-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 24px; position: relative; box-shadow: var(--shadow-sm);
    transition: transform .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--primary-light); }
.step-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem;
    margin-bottom: 18px; box-shadow: var(--shadow-primary);
}
.step-card h3 { margin-bottom: 8px; font-size: 1.12rem; }
.step-card p { color: var(--text-secondary); margin: 0; font-size: 0.94rem; }

/* ---- Feature list (checkmark rows) ---- */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-secondary); }
.feature-list li i,
.feature-list li .tick {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: var(--primary-50); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; margin-top: 2px;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 576px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--star); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote, .testimonial p.quote-text {
    color: var(--text-secondary); margin-bottom: 18px; line-height: 1.75; font-size: 0.98rem;
}
.testimonial-meta { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; color: var(--ink); }
.testimonial-loc { font-size: 0.82rem; color: var(--text-muted); }

/* On dark photo band (client experiences) */
.testimonial.on-dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); backdrop-filter: blur(6px); }
.testimonial.on-dark .quote-text { color: rgba(255,255,255,0.92); }
.testimonial.on-dark .testimonial-name { color: #fff; }
.testimonial.on-dark .testimonial-loc { color: rgba(255,255,255,0.7); }

/* ===========================================================
   BLOG CARDS
   =========================================================== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 576px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 210px; overflow: hidden; background: var(--bg-secondary); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 26px; }
.blog-card .meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 12px; flex-wrap: wrap; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); }
.blog-card p { font-size: 0.92rem; color: var(--text-secondary); }

/* ===========================================================
   FAQ ACCORDION
   =========================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.open { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.faq-q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--ink);
    font-size: 1.04rem; padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-q i { transition: transform .25s ease; color: var(--primary); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 22px; color: var(--text-secondary); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ===========================================================
   FORMS
   =========================================================== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.86rem; color: var(--ink); margin-bottom: 7px; }
.form-control {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-family: inherit; font-size: 1rem;
    background: #fff; color: var(--text-primary);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(67,169,200,0.15); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2343a9c8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 575px) { .form-row { grid-template-columns: 1fr; } }
.form-error { color: #e0395a; font-size: 0.82rem; margin-top: 4px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.92rem; display: none; }
.form-msg.success { background: #e8f8ee; color: #1f8f4d; border: 1px solid #b9e7c9; display: block; }
.form-msg.error { background: #fdecef; color: #d33a57; border: 1px solid #f6c5cf; display: block; }

.form-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-md);
}

/* ===========================================================
   BREADCRUMBS
   =========================================================== */
.breadcrumbs { padding: 14px 0 0; font-size: 0.86rem; color: var(--text-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li::after { content: '/'; margin-left: 6px; color: var(--border); }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }

/* ===========================================================
   BADGES / PILLS
   =========================================================== */
.badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 999px;
    font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-primary { background: var(--primary-50); color: var(--primary-dark); }
.badge-accent { background: #ffe9f1; color: #e0457c; }
.badge-soft { background: var(--bg-secondary); color: var(--text-secondary); }
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-50); color: var(--primary-dark);
    border: 1px solid var(--primary-100); border-radius: 999px;
    padding: 8px 18px; font-weight: 600; font-size: 0.82rem;
}
.pill i { color: var(--primary); }

/* Status badges (admin) */
.status-badge { padding: 5px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }
.status-badge.pending, .status-badge.new { background: #eef4ff; color: #3f6ad8; }
.status-badge.reviewing, .status-badge.processing { background: var(--primary-50); color: var(--primary-dark); }
.status-badge.confirmed, .status-badge.completed { background: #e8f8ee; color: #1f8f4d; }
.status-badge.cancelled { background: #fdecef; color: #d33a57; }

/* ===========================================================
   TRUST / FEATURE GRID
   =========================================================== */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.trust-item {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm);
    transition: transform .2s ease, border-color .2s ease;
}
.trust-item:hover { transform: translateY(-4px); border-color: var(--primary-light); }
.trust-item .icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--primary-50); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px;
}
.trust-item h4 { margin-bottom: 6px; font-size: 1.05rem; color: var(--ink); }
.trust-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===========================================================
   PRICING CARDS
   =========================================================== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: stretch; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative;
    display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-md); }
.price-card .plan-name { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--ink); font-size: 1.2rem; margin-bottom: 6px; }
.price-card .plan-price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); font-size: 2.2rem; line-height: 1; margin: 10px 0; }
.price-card .plan-price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.price-card .plan-features { margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.price-card .plan-features li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-secondary); font-size: 0.92rem; }
.price-card .plan-features li i { color: var(--primary); margin-top: 3px; }
.price-card .btn { margin-top: auto; }
.price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
    padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-primary); white-space: nowrap;
}

/* ===========================================================
   TRUST BAR (above footer)
   =========================================================== */
.trust-bar { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.trust-bar-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .trust-bar-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.trust-bar-item { display: flex; align-items: flex-start; gap: 16px; padding: 4px 0; }
@media (min-width: 768px) { .trust-bar-item { padding: 4px 28px; } .trust-bar-item.has-divider { border-left: 1px solid var(--border); } }
.tb-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--primary-50); display: flex; align-items: center; justify-content: center; }
.tb-icon i { color: var(--primary); font-size: 1.3rem; }
.tb-text { display: flex; flex-direction: column; gap: 5px; }
.tb-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.96rem; color: var(--ink); line-height: 1.2; }
.tb-desc { font-size: 0.82rem; line-height: 1.5; color: var(--text-muted); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { position: relative; background: linear-gradient(180deg, #3c474f 0%, #2e373d 100%); color: rgba(255,255,255,0.7); padding: 72px 0 26px; font-size: 0.94rem; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary)); }
.site-footer h4 { position: relative; color: #fff; margin-bottom: 22px; padding-bottom: 12px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; }
.site-footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; }
.site-footer a { color: rgba(255,255,255,0.7); transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; } }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10); padding-top: 26px;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
    font-size: 0.83rem; color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: transparent; border: 1.5px solid rgba(255,255,255,0.28);
    display: inline-flex; align-items: center; justify-content: center; color: var(--primary-light);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff !important; transform: translateY(-3px); }
.footer-list { display: flex; flex-direction: column; gap: 13px; }
.footer-list a { display: inline-flex; align-items: center; gap: 9px; width: fit-content; transition: color .2s ease, transform .2s ease; }
.footer-list a::before { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.6rem; color: var(--primary-light); }
.footer-list a:hover { color: var(--primary-light); transform: translateX(4px); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: rgba(255,255,255,0.78); }
.footer-contact li i { color: var(--primary-light); margin-top: 4px; width: 16px; text-align: center; }

/* ===========================================================
   CTA STRIP
   =========================================================== */
.cta-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff; padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% -20%, rgba(255,255,255,0.18), transparent 50%);
    pointer-events: none;
}
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 26px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; padding: calc(76px + 60px) 0 80px; overflow: hidden; background: var(--bg-secondary); }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 85% 0%, rgba(67,169,200,0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(67,169,200,0.08) 0%, transparent 55%);
    pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 992px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--primary); }
.hero .lede { margin-bottom: 30px; max-width: 540px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero-rating {
    display: inline-flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid var(--border); border-radius: 999px;
    padding: 10px 20px; box-shadow: var(--shadow-sm);
}

/* image float badge */
.float-badge {
    position: absolute; background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.float-badge .fb-icon {
    width: 42px; height: 42px; border-radius: 12px; background: var(--primary-50); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.float-badge .fb-num { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--ink); font-size: 1.05rem; line-height: 1; }
.float-badge .fb-label { font-size: 0.74rem; color: var(--text-muted); }

/* ===========================================================
   BEFORE / AFTER SLIDER
   =========================================================== */
.ba-slider { position: relative; max-width: 760px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); user-select: none; }
.ba-slider img { display: block; width: 100%; height: auto; pointer-events: none; }
.ba-after { position: absolute; inset: 0; overflow: hidden; width: 50%; border-right: 3px solid #fff; }
.ba-after img { position: absolute; inset: 0; width: auto; max-width: none; height: 100%; }
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
    display: flex; align-items: center; justify-content: center; cursor: ew-resize;
}
.ba-handle::after { content: ''; position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; }
.ba-handle .knob {
    width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--primary);
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 2; font-size: 0.9rem;
}
.ba-label { position: absolute; bottom: 14px; padding: 5px 14px; border-radius: 999px; font-size: 0.74rem; font-weight: 600; color: #fff; background: rgba(55,66,76,0.7); }
.ba-label.before { left: 14px; } .ba-label.after { right: 14px; background: var(--primary); }

/* ===========================================================
   PROSE / CONTENT
   =========================================================== */
.prose { color: var(--text-secondary); }
.prose h2 { margin: 1.6em 0 0.6em; color: var(--ink); }
.prose h3 { margin: 1.2em 0 0.5em; color: var(--ink); }
.prose p { margin-bottom: 1em; line-height: 1.8; }
.prose ul, .prose ol { margin: 0 0 1em 1.4em; }
.prose ul { list-style: disc; } .prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }
.prose blockquote { border-left: 4px solid var(--primary); background: var(--primary-50); padding: 16px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.4em 0; color: var(--text-primary); }

/* ===========================================================
   PAGE HEADER (inner pages)
   =========================================================== */
.page-header { background: var(--bg-secondary); padding: calc(76px + 48px) 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% -30%, rgba(67,169,200,0.14), transparent 60%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--text-secondary); max-width: 640px; margin: 0 auto; }

/* ===========================================================
   SPINNER / LOADING
   =========================================================== */
.spinner { display: inline-block; width: 38px; height: 38px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================================================
   BACK TO TOP
   =========================================================== */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none;
    font-size: 1.1rem; display: none; align-items: center; justify-content: center; cursor: pointer;
    z-index: 900; box-shadow: var(--shadow-primary); transition: transform .2s ease;
}
.back-to-top.visible { display: inline-flex; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===========================================================
   COOKIE BANNER
   =========================================================== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -8px 30px rgba(55,66,76,0.08); padding: 18px 24px; z-index: 9999; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }

/* ===========================================================
   ANIMATIONS
   =========================================================== */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.floaty { animation: float 6s ease-in-out infinite; }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   RESPONSIVE TWEAKS
   =========================================================== */
@media (min-width: 768px) { .section { padding: 96px 0; } .section-lg { padding: 130px 0; } }
@media (max-width: 575px) {
    .hero { padding-top: calc(76px + 28px); padding-bottom: 52px; }
    .hero-cta-row .btn { width: 100%; }
    .section { padding: 56px 0; }
    .float-badge { display: none; }
}
/* ===========================================================
   HERO SLIDER (full-width, image-driven)
   =========================================================== */
.hero-slider {
    position: relative;
    min-height: min(86vh, 680px);
    display: flex;
    overflow: hidden;
    background: var(--bg-secondary);
    isolation: isolate;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .9s ease, transform 6s ease;
    pointer-events: none;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.hero-slide-inner { position: relative; z-index: 2; color: #fff; padding-top: 20px; padding-bottom: 20px; }
.hero-slide-inner h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5.2vw, 3.9rem);
    max-width: 760px;
    margin-bottom: 18px;
    text-shadow: 0 2px 30px rgba(0,0,0,.28);
}
.hero-slide-inner .lede { color: rgba(255,255,255,.94); max-width: 560px; margin-bottom: 28px; text-shadow: 0 1px 16px rgba(0,0,0,.25); }
.hero-slide-inner .hero-pill {
    background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.32);
    backdrop-filter: blur(6px); margin-bottom: 22px;
}
.hero-slide-inner .hero-pill i { color: #fff; }
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 50px; height: 50px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.92); color: var(--primary); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); transition: background .2s ease, transform .2s ease;
}
.hero-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.55); cursor: pointer; transition: all .25s ease; padding: 0; }
.hero-dot.is-active { background: #fff; width: 30px; border-radius: 6px; }
@media (max-width: 768px) {
    .hero-arrow { display: none; }
    .hero-slider { min-height: 80vh; }
}

/* ===========================================================
   HOMEPAGE v2 (mockup-matched components)
   =========================================================== */
/* Hero v2: split content + booking form over crossfading photo */
.hero-v2 { position: relative; background: var(--bg-secondary); overflow: hidden; }
.hero-v2-bg { position: absolute; inset: 0; z-index: 0; }
.hero-v2-bg .layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-v2-bg .layer.is-active { opacity: 1; }
.hero-v2::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-secondary) 36%, rgba(245,250,252,.55) 50%, rgba(245,250,252,0) 70%);
}
@media (max-width: 991px) { .hero-v2::after { background: linear-gradient(180deg, rgba(245,250,252,.94), rgba(245,250,252,.7)); } }
.hero-v2-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; padding: 50px 0 58px; }
@media (min-width: 992px) { .hero-v2-grid { grid-template-columns: 1.05fr 0.95fr; gap: 44px; min-height: 560px; } }
.hero-v2 h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); margin-bottom: 6px; }
.hero-v2 .sub-accent { color: var(--primary); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .92rem; margin: 8px 0 18px; }
.hero-v2-left > p { max-width: 460px; }
.hero-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.hero-feature { display: flex; gap: 14px; align-items: center; }
.hero-feature .hf-ic { width: 48px; height: 48px; border-radius: 14px; background: #fff; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.hero-feature span { font-weight: 600; color: var(--ink); }
.hero-form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 28px; }
.hero-form-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.hero-form-card .form-control { margin-bottom: 12px; padding: 12px 14px; }
.hero-form-card .hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form-card .consent { display: flex; gap: 10px; font-size: .8rem; color: var(--text-muted); margin: 4px 0 14px; line-height: 1.5; }
.hero-form-card .consent input { margin-top: 3px; }

/* Trust strip */
.trust-strip { background: linear-gradient(180deg, #ffffff, #f5fbfd); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 28px; padding-bottom: 28px; }
@media (min-width: 768px) { .trust-strip .container { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.ts-item {
    display: flex; align-items: center; gap: 14px; min-width: 0;
    background: linear-gradient(165deg, #ffffff, #fbfeff);
    border: 1px solid var(--border); border-radius: 16px;
    padding: 16px 18px; box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ts-item:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(67,169,200,0.16); border-color: var(--primary-light); }
.ts-ic { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; box-shadow: var(--shadow-primary); }
.ts-label { font-weight: 600; font-size: 0.9rem; color: var(--ink); line-height: 1.3; min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 380px) { .trust-strip .container { grid-template-columns: 1fr; } }

/* Treatments intro + 4 cards */
.tx-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 992px) { .tx-grid { grid-template-columns: 0.8fr 1.25fr; } }
.tx-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (min-width: 768px) { .tx-cards { grid-template-columns: repeat(4, 1fr); } }
.tx-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; display: block; }
.tx-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tx-card .tx-img { height: 172px; background-size: contain; background-repeat: no-repeat; background-position: center; background-color: #f3fbfd; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 2rem; }
.tx-card .tx-body { padding: 16px 16px 18px; }
.tx-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--ink); }
.tx-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* Technology section */
.tech-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .tech-grid { grid-template-columns: 1fr 1fr; } }
.tech-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--primary-50); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 3rem; }

/* Why choose (6 icons) */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; text-align: center; }
@media (min-width: 576px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .why-grid { grid-template-columns: repeat(6, 1fr); } }
.why-item .why-ic { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--primary-100); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 14px; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.why-item:hover .why-ic { background: var(--primary); color: #fff; border-color: var(--primary); }
.why-item h4 { font-size: .9rem; color: var(--ink); line-height: 1.35; margin: 0; }

/* Results / before-after */
.results-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 992px) { .results-grid { grid-template-columns: 1.2fr 0.8fr; } }
.ba-after .ba-img { position: absolute; top: 0; left: 0; height: 100%; background-size: cover; background-position: center left; }

/* Horizontal cyan CTA banner — modern, glassy */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(125deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 130%); color: #fff; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% -30%, rgba(255,255,255,.22), transparent 55%), radial-gradient(circle at 0% 130%, rgba(255,255,255,.14), transparent 50%); pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle at 80% 20%, #000, transparent 70%); -webkit-mask-image: radial-gradient(circle at 80% 20%, #000, transparent 70%); pointer-events: none; }
.cta-banner .cb-glow { position: absolute; width: 360px; height: 360px; right: -90px; top: -140px; background: radial-gradient(circle, rgba(255,255,255,.35), transparent 65%); filter: blur(20px); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-top: 44px; padding-bottom: 44px; }
.cta-banner .cb-left { display: flex; align-items: center; gap: 22px; flex: 1 1 420px; min-width: 0; }
.cta-banner .cb-ic { width: 62px; height: 62px; border-radius: 18px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 10px 30px rgba(0,0,0,.12); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.cta-banner .cb-copy { max-width: 560px; min-width: 0; }
.cta-banner .cb-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.26); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.cta-banner h3 { color: #fff; margin: 0; font-size: 1.5rem; line-height: 1.2; letter-spacing: -.01em; }
.cta-banner p { color: rgba(255,255,255,.92); margin: 8px 0 0; font-size: .98rem; line-height: 1.55; }
.cta-banner .cb-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.cta-banner .cb-actions .btn-white { box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.cta-banner .cb-call { display: inline-flex; align-items: center; justify-content: center; gap: 9px; color: #fff; font-weight: 600; font-size: .95rem; opacity: .95; transition: opacity .2s ease; }
.cta-banner .cb-call:hover { opacity: 1; text-decoration: underline; }
@media (max-width: 640px) { .cta-banner .cb-actions { width: 100%; } .cta-banner .cb-actions .btn-white { width: 100%; } }


/* ===========================================================
   NAV MEGA DROPDOWN (Apple-style)
   =========================================================== */
.nav-mega { position: relative; }
.nav-mega-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; }
.nav-mega-trigger:hover, .nav-mega-trigger.active { color: var(--primary); }
.nav-mega-trigger i { font-size: 0.66rem; transition: transform .25s ease; }
.mega-panel {
    position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
    width: min(780px, 92vw);
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid var(--border); border-radius: 20px;
    box-shadow: 0 30px 70px rgba(55,66,76,0.18);
    padding: 26px; z-index: 1100;
    display: grid; grid-template-columns: 1.25fr 1fr 0.95fr; gap: 22px;
}
.mega-panel::before {
    content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--border); border-top: 1px solid var(--border); border-radius: 3px;
}
.mega-col h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 10px; }
.mega-group { margin-bottom: 10px; }
.mega-group > .mega-grouptitle { display: block; font-weight: 600; color: var(--ink); font-size: 0.9rem; padding: 6px 10px 2px; }
.mega-link { display: block; padding: 7px 10px; border-radius: 10px; color: var(--ink); font-weight: 500; font-size: 0.9rem; transition: background .15s ease, color .15s ease; }
.mega-link:hover { background: var(--primary-50); color: var(--primary-dark); }
.mega-sub .mega-link { padding-left: 22px; font-weight: 500; color: var(--text-secondary); font-size: 0.86rem; }
.mega-badge { display: inline-block; background: var(--primary); color: #fff; font-size: 0.58rem; font-weight: 700; letter-spacing: .04em; padding: 1px 6px; border-radius: 6px; margin-left: 6px; vertical-align: middle; }
.mega-feature { background: linear-gradient(150deg, var(--primary-50), #fff); border: 1px solid var(--primary-100); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.mega-feature .mf-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.mega-feature h4 { font-size: 1rem; color: var(--ink); margin: 0; }
.mega-feature p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Mobile nav submenu accordion */
.nav-mobile .m-sub { display: none; padding-left: 12px; }
.nav-mobile .m-sub.open { display: block; }
.nav-mobile .m-sublink { display: block; padding: 10px 0; color: var(--text-muted); font-size: 0.92rem; border-bottom: 1px dashed var(--border); }
.nav-mobile .m-toggle { display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 991px) { .mega-panel { display: none !important; } }

/* ===========================================================
   HERO SPLIT (diagonal photo + cyan form panel)
   =========================================================== */
.hero-split { position: relative; background: linear-gradient(120deg, #eef7fb, #f7fbfd); overflow: hidden; }
.hero-split-img { position: absolute; top: 0; left: 0; bottom: 0; width: 56%; background-color: var(--primary-50); }
.hero-split-img .layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-split-img .layer.is-active { opacity: 1; }
.hero-split-img .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 3.4rem; }
.hero-split-panel {
    position: relative; margin-left: 48%; width: 52%; min-height: 620px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 60px 52px 64px 15%;
}
.hero-split-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 78% 12%, rgba(255,255,255,0.22), transparent 42%); pointer-events: none; }
.hero-split-inner { position: relative; z-index: 1; width: 100%; max-width: 470px; }
.hero-split-inner h1 { color: #fff; text-align: center; text-transform: uppercase; font-size: clamp(1.6rem, 2.8vw, 2.3rem); letter-spacing: .03em; line-height: 1.18; margin-bottom: 6px; }
.hero-split-tagline { color: #fff; text-align: center; letter-spacing: .14em; font-weight: 600; margin-bottom: 22px; font-size: .92rem; }
.hero-split-form {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 18px; box-shadow: 0 24px 56px rgba(20,40,48,0.24); padding: 26px;
}
.hero-split-form .form-control { margin-bottom: 12px; padding: 13px 15px; background: rgba(255,255,255,0.94); border: 1px solid rgba(255,255,255,0.55); color: var(--ink); }
.hero-split-form .form-control::placeholder { color: #8aa3ad; }
.hero-split-form .hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-split-form .consent { display: flex; gap: 9px; font-size: .78rem; color: rgba(255,255,255,0.92); margin: 2px 0 10px; line-height: 1.5; }
.hero-split-form .consent a { color: #fff; text-decoration: underline; }
.hero-split-form .consent input { margin-top: 3px; }
.hero-split-form .privacy-note { font-size: .74rem; color: rgba(255,255,255,0.82); line-height: 1.5; margin: 0 0 14px; }
.hero-split-form .privacy-note strong { color: #fff; display: block; margin-bottom: 2px; }
.hero-split-form .captcha-field { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.32); }
.hero-split-form .captcha-field label { color: #fff; }
.hero-split-form .captcha-field label i { color: #fff; }
.btn-navy { background: #15455e; color: #fff !important; }
.btn-navy:hover { background: #0e3245; color: #fff !important; }
.g-recaptcha { margin-bottom: 14px; }

@media (max-width: 991px) {
    .hero-split-img { position: relative; width: 100%; height: 240px; }
    .hero-split-panel { margin-left: 0; width: 100%; min-height: 0; clip-path: none; padding: 36px 20px 44px; }
}

/* ===========================================================
   WHY-CHOOSE CARDS + PREPARE TIMELINE (modern)
   =========================================================== */
.eyebrow-lead { display: inline-flex; align-items: center; gap: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; margin-bottom: 34px; }
.eyebrow-lead::before { content: ''; width: 30px; height: 2px; background: var(--primary); border-radius: 2px; }

.wc-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 576px) { .wc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .wc-grid { grid-template-columns: repeat(4, 1fr); } }
.wc-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 32px 26px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.wc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.wc-card .wc-ic { width: 54px; height: 54px; border-radius: 16px; background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 22px; transition: transform .3s ease; }
.wc-card:hover .wc-ic { transform: translateY(-3px) rotate(-5deg); }
.wc-card .wc-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.78rem; color: var(--primary); letter-spacing: 0.12em; margin-bottom: 8px; opacity: 0.75; }
.wc-card h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: 12px; line-height: 1.28; }
.wc-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.7; }
.wc-card .wc-ghost { position: absolute; right: 16px; bottom: -16px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 5rem; line-height: 1; color: var(--primary); opacity: 0.06; pointer-events: none; }
.wc-card.featured { background: linear-gradient(155deg, var(--primary), var(--primary-dark)); border-color: transparent; box-shadow: var(--shadow-primary); }
.wc-card.featured .wc-ic { background: rgba(255,255,255,0.2); color: #fff; }
.wc-card.featured .wc-num { color: rgba(255,255,255,0.75); }
.wc-card.featured h3 { color: #fff; }
.wc-card.featured p { color: rgba(255,255,255,0.92); }
.wc-card.featured .wc-ghost { color: #fff; opacity: 0.14; }

.pt-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .pt-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; } }
.pt-step {
    position: relative;
    background: linear-gradient(165deg, rgba(255,255,255,0.95), rgba(238,247,251,0.75));
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 20px;
    padding: 26px 22px; box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pt-step:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(67,169,200,0.20); border-color: var(--primary-light); }
.pt-num { width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: var(--shadow-primary); }
.pt-when { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-dark); background: var(--primary-50); border: 1px solid var(--primary-100); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.pt-step p { font-size: 0.84rem; color: var(--text-secondary); margin: 0; line-height: 1.65; }
@media (min-width: 768px) {
    .pt-step:not(:last-child)::after { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -13px; top: 42px; color: var(--primary-light); font-size: 0.85rem; z-index: 2; }
}

/* ===========================================================
   GLASS & HIGH-TECH POLISH
   =========================================================== */
.navbar { background: rgba(255,255,255,0.72); backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px); }
.service-card, .card, .tx-card, .wc-card, .price-card, .blog-card, .trust-item, .testimonial, .step-card { background: linear-gradient(170deg, #ffffff, #fbfeff); }
.service-card:hover, .tx-card:hover, .wc-card:hover, .price-card:hover, .blog-card:hover, .trust-item:hover, .step-card:hover { box-shadow: 0 22px 48px rgba(67,169,200,0.18) !important; }
.section-alt { position: relative; }
.section-alt::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 10% 16%, rgba(67,169,200,0.07), transparent 40%), radial-gradient(circle at 90% 84%, rgba(67,169,200,0.05), transparent 42%); }
.section-alt > .container { position: relative; z-index: 1; }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-20deg); transition: left .6s ease; pointer-events: none; }
.btn-primary:hover::after { left: 130%; }

/* Math captcha field */
.captcha-field { background: var(--primary-50); border: 1px solid var(--primary-100); border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; }
.captcha-field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.captcha-field label i { color: var(--primary); margin-right: 4px; }
.captcha-field .form-control { background: #fff; margin-bottom: 0; }

/* ===========================================================
   RICH PAGE COMPONENTS (technology / service / prices)
   =========================================================== */
.page-hero { position: relative; overflow: hidden; padding: calc(76px + 56px) 0 72px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; }
.page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 6%, rgba(255,255,255,0.20), transparent 46%), radial-gradient(circle at 6% 96%, rgba(255,255,255,0.10), transparent 40%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: rgba(255,255,255,0.9); }
.page-hero .eyebrow.with-line::before, .page-hero .eyebrow.with-line::after { background: rgba(255,255,255,0.7); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p.lede { color: rgba(255,255,255,0.92); max-width: 600px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 992px) { .page-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }

.media-frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.45); background: var(--primary-50); }
.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-frame.ratio { aspect-ratio: 4 / 3; }
.media-frame .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 3.2rem; }
.media-frame .fb { position: absolute; bottom: 16px; left: 16px; right: 16px; display: flex; gap: 10px; }
.media-float { position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.media-float .mf-i { width: 38px; height: 38px; border-radius: 11px; background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.media-float b { font-family: 'Poppins', sans-serif; color: var(--ink); font-size: 0.95rem; display: block; line-height: 1; }
.media-float small { color: var(--text-muted); font-size: 0.72rem; }

.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.reverse .split-media { order: 2; } }

.spec-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 576px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
.spec-card {
    position: relative; padding: 30px 28px; border-radius: 20px;
    background: linear-gradient(165deg, rgba(255,255,255,0.92), rgba(238,247,251,0.62));
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(67,169,200,0.18); border-color: var(--primary-light); }
.spec-ic { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; box-shadow: var(--shadow-primary); }
.spec-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; }
.spec-card p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; line-height: 1.7; }
.spec-card .spec-badge { position: absolute; top: 20px; right: 20px; font-size: 0.6rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 3px 9px; border-radius: 999px; }

.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.stat-tile { text-align: center; padding: 22px 16px; border-radius: 18px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.stat-tile .n { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.7rem; color: #fff; line-height: 1; }
.stat-tile .l { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-top: 6px; }

.compare-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
@media (max-width: 560px) { .compare-card { overflow-x: auto; -webkit-overflow-scrolling: touch; } .compare-card table { min-width: 460px; } }
.compare-card table { width: 100%; border-collapse: collapse; }
.compare-card th, .compare-card td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.compare-card tr:last-child td { border-bottom: 0; }
.compare-card th { background: var(--primary-50); color: var(--primary-dark); font-family: 'Poppins', sans-serif; font-weight: 600; }
.compare-card td:first-child { font-weight: 600; color: var(--ink); }
.compare-card td i.yes { color: #1f8f4d; } .compare-card td i.no { color: #c9ccd1; }

/* Glass callout band */
.glass-callout {
    position: relative; border-radius: 24px; padding: 40px;
    background: linear-gradient(135deg, rgba(67,169,200,0.10), rgba(67,169,200,0.03));
    border: 1px solid var(--primary-100); box-shadow: var(--shadow-sm);
    display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: space-between;
}
.glass-callout .gc-ic { width: 62px; height: 62px; border-radius: 18px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; box-shadow: var(--shadow-primary); }

/* ===========================================================
   PRODUCTS (Concept+ catalogue)
   =========================================================== */
/* Small single-column mega panel (Products dropdown) */
.mega-panel.mega-panel-sm { width: min(340px, 92vw); display: block; padding: 18px; }
.mega-link-rich { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; }
.mega-link-rich .mll-title { font-weight: 600; color: var(--ink); font-size: 0.94rem; }
.mega-link-rich .mll-desc { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }
.mega-link-rich:hover .mll-title { color: var(--primary-dark); }

/* Hub: two big line cards */
.product-line-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .product-line-grid { grid-template-columns: 1fr 1fr; } }
.product-line-card {
    position: relative; display: flex; flex-direction: column; gap: 10px;
    background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 36px 32px;
    box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden;
}
.product-line-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, var(--primary-50), transparent 60%); opacity: 0; transition: opacity .25s ease; }
.product-line-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-primary); border-color: var(--primary-light); }
.product-line-card:hover::before { opacity: 1; }
.product-line-card > * { position: relative; z-index: 1; }
.product-line-card .plc-ic { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: var(--shadow-primary); margin-bottom: 6px; }
.product-line-card .plc-eyebrow { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); }
.product-line-card h2 { margin: 0; font-size: 1.6rem; }
.product-line-card p { margin: 0; color: var(--text-secondary); }
.product-line-card .plc-meta { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.product-line-card .more { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-dark); font-weight: 600; margin-top: 4px; }
.product-line-card:hover .more i { transform: translateX(4px); }
.product-line-card .more i { transition: transform .2s ease; }

/* Line view: tabs */
.product-line-tabs { display: inline-flex; gap: 6px; margin-top: 26px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); padding: 5px; border-radius: 999px; backdrop-filter: blur(6px); }
.product-line-tabs a { padding: 8px 22px; border-radius: 999px; color: #fff; font-weight: 600; font-size: 0.9rem; transition: background .2s ease, color .2s ease; }
.product-line-tabs a.active { background: #fff; color: var(--primary-dark); }
.product-line-tabs a:not(.active):hover { background: rgba(255,255,255,0.18); }

/* Range tabs (modernized) */
.product-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.product-tabs .ptab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px; border-radius: 999px; cursor: pointer;
    background: #fff; border: 1.5px solid var(--border); color: var(--text-secondary);
    font-family: inherit; font-weight: 600; font-size: 0.86rem;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.product-tabs .ptab:hover { border-color: var(--primary-light); color: var(--primary-dark); transform: translateY(-1px); }
.product-tabs .ptab.active { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-color: transparent; color: #fff; box-shadow: var(--shadow-primary); }
.product-tabs .ptab-count { font-size: 0.72rem; font-weight: 700; padding: 1px 8px; border-radius: 999px; background: var(--primary-50); color: var(--primary-dark); }
.product-tabs .ptab.active .ptab-count { background: rgba(255,255,255,0.25); color: #fff; }
@media (max-width: 640px) {
    .product-tabs {
        flex-wrap: nowrap; justify-content: flex-start;
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity; scrollbar-width: none;
        margin-left: -24px; margin-right: -24px; padding: 4px 24px 12px;
    }
    .product-tabs::-webkit-scrollbar { display: none; }
    .product-tabs .ptab { flex: 0 0 auto; scroll-snap-align: start; }
}

/* Product grid + cards */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-primary); border-color: var(--primary-light); }
.product-card .pc-media { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(160deg, #f3fafc, var(--primary-50)); display: flex; align-items: center; justify-content: center; padding: 22px; }
.product-card .pc-media img { max-width: 100%; max-height: 100%; width: auto; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(55,66,76,0.16)); }
.product-card .pc-ph { font-size: 2.4rem; color: var(--primary); opacity: 0.5; }
.product-card .pc-badge { position: absolute; top: 12px; left: 12px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.85); color: var(--primary-dark); backdrop-filter: blur(4px); box-shadow: 0 2px 8px rgba(55,66,76,0.1); }
.product-card .pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.product-card .pc-range { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }
.product-card .pc-body h3 { margin: 0; font-size: 1.08rem; line-height: 1.3; }
.product-card .pc-tag { margin: 0; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.product-card .pc-desc { margin: 0; font-size: 0.85rem; line-height: 1.6; color: var(--text-secondary); }

[x-cloak] { display: none !important; }
