/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #5FC7C6;
  --teal-dark:   #3AADAC;
  --teal-light:  #E8F8F8;
  --teal-mid:    #B8ECEB;
  --pink:        #FF2E8A;
  --pink-light:  #FFE8F3;
  --pink-mid:    #FFAED6;
  --white:       #FFFFFF;
  --aqua:        #F6FAFA;
  --charcoal:    #222222;
  --grey:        #6B7280;
  --grey-light:  #E5E7EB;
  --ff-d: 'Playfair Display', Georgia, serif;
  --ff-b: 'Outfit', sans-serif;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(95,199,198,.12);
  --shadow-lg: 0 12px 48px rgba(95,199,198,.18);
  --shadow-pk: 0 8px 32px rgba(255,46,138,.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
}

img { max-width: 300%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--ff-b); cursor: pointer; }
ul { list-style: none; }
textarea { resize: vertical; }

/* ─── TYPOGRAPHY ─── */
.s-label {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; display: block; margin-bottom: .75rem;
}
.s-title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; line-height: 1.15; color: var(--charcoal);
}
.s-title em { font-style: italic; color: var(--teal); }
.s-title .pink { color: var(--pink); }
.s-body { font-size: .95rem; color: var(--grey); line-height: 1.9; margin-top: .9rem; }
.text-center { text-align: center; }
.text-center .s-body { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── SECTION SPACING ─── */
.section-pad     { padding: 90px 6%; }
.section-pad-sm  { padding: 60px 6%; }

/* ─── BUTTONS ─── */
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; padding: .75rem 2rem; border-radius: 30px;
  font-size: .85rem; letter-spacing: .06em; border: none;
  font-weight: 500; display: inline-block; transition: .25s;
  box-shadow: var(--shadow);
}
.btn-teal:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--teal-dark), #2A9B9A);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink), #D4006E);
  color: #fff; padding: .75rem 2rem; border-radius: 30px;
  font-size: .85rem; letter-spacing: .06em; border: none;
  font-weight: 500; display: inline-block; transition: .25s;
  box-shadow: var(--shadow-pk);
}
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,46,138,.35); }
.btn-outline-teal {
  background: transparent; color: var(--teal); padding: .7rem 1.8rem;
  border-radius: 30px; font-size: .85rem; letter-spacing: .06em;
  border: 2px solid var(--teal); font-weight: 500;
  display: inline-block; transition: .25s;
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--teal); padding: .65rem 1.5rem;
  border-radius: 30px; font-size: .8rem; font-weight: 600;
  border: none; transition: .2s; white-space: nowrap;
}
.btn-white:hover { background: var(--teal-light); transform: scale(1.03); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal.rl  { transform: translateX(-32px); }
.reveal.rr  { transform: translateX(32px); }
.reveal.rl.vis, .reveal.rr.vis { transform: translateX(0); opacity: 1; }

/* ─── NAV ─── */
.ld-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 5%;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(95,199,198,.15);
  transition: box-shadow .3s;
}
.ld-nav.scrolled { box-shadow: 0 2px 30px rgba(95,199,198,.1); }
.nav-logo {
  font-family: var(--ff-d); font-size: 1.55rem; font-weight: 500;
  color: var(--charcoal); display: flex; align-items: center; gap: .3rem; cursor: pointer;
}
.nav-logo span { color: var(--teal); }
.nav-logo em {
  width: 8px; height: 8px; background: var(--pink);
  border-radius: 50%; display: inline-block; flex-shrink: 0;
  font-style: normal;
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: .83rem; font-weight: 400; color: var(--grey);
  letter-spacing: .04em; position: relative; transition: color .2s; cursor: pointer;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  transition: width .3s; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; padding: .55rem 1.4rem; border-radius: 30px;
  font-size: .82rem; letter-spacing: .06em; font-weight: 500;
  border: none; box-shadow: 0 4px 16px rgba(95,199,198,.35);
  transition: .25s;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--pink), #D4006E);
  box-shadow: var(--shadow-pk); transform: translateY(-2px);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: .3s; display: block;
}
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: #fff; z-index: 999; flex-direction: column;
  padding: 1.5rem 5%; gap: 1rem;
  border-bottom: 1px solid var(--teal-mid);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--grey); padding: .6rem 0;
  border-bottom: 1px solid var(--grey-light); font-size: .95rem; cursor: pointer;
}
.mobile-nav a:hover { color: var(--teal); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 5rem 6% 4rem; position: relative;
  overflow: hidden; margin-top: 70px; background: var(--aqua);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero-breadcrumb {
  font-size: .75rem; color: var(--grey); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .4rem;
}
.page-hero-breadcrumb .bc-home { cursor: pointer; transition: color .2s; }
.page-hero-breadcrumb .bc-home:hover { color: var(--teal); }
.page-hero-breadcrumb .bc-sep { color: var(--grey-light); }
.page-hero h1 {
  font-family: var(--ff-d); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500; color: var(--charcoal); line-height: 1.15; margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero p { font-size: .95rem; color: var(--grey); line-height: 1.9; }

/* ─── HERO SLIDER ─── */
.ld-hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; margin-top: 70px;
}
.ld-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease; display: flex; align-items: center;
}
.ld-slide.active { opacity: 1; z-index: 1; }
.slide-bg { position: absolute; inset: 0; }
.s1-bg { background: linear-gradient(135deg, #E8F8F8 0%, #F6FAFA 50%, #FFF5FA 100%); }
.s2-bg { background: linear-gradient(135deg, #FFF0F7 0%, #F6FAFA 50%, #E8F8F8 100%); }
.slide-inner {
  position: relative; z-index: 2; width: 100%; padding: 0 6%;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem;
  align-items: center;
}
.slide-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-light); color: var(--teal-dark);
  padding: .4rem 1rem; border-radius: 30px;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.5rem;
  border: 1px solid var(--teal-mid);
}
.slide-badge.pink { background: var(--pink-light); color: var(--pink); border-color: var(--pink-mid); }
.slide-h {
  font-family: var(--ff-d); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500; color: var(--charcoal); line-height: 1.1; margin-bottom: 1.2rem;
}
.slide-h em { font-style: italic; color: var(--teal); }
.slide-h em.pink { color: var(--pink); }
.slide-p { font-size: .95rem; color: var(--grey); line-height: 1.9; max-width: 440px; margin-bottom: 2rem; }
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.slide-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.chip {
  font-size: .72rem; background: var(--white);
  border: 1px solid var(--teal-mid); color: var(--teal-dark);
  padding: .3rem .8rem; border-radius: 20px; font-weight: 500;
}
.chip.pink { border-color: var(--pink-mid); color: var(--pink); background: var(--pink-light); }
.slide-image-wrap { display: flex; justify-content: left; align-items: left; width: 200%; }
.hero-device-img { max-height: 55vh; object-fit: contain; width: auto; filter: drop-shadow(0 20px 40px rgba(95,199,198,0.2)); }

.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .75rem; z-index: 10;
}
.h-dot {
  width: 28px; height: 3px; background: var(--teal-mid);
  border: none; border-radius: 2px; cursor: pointer; transition: .3s;
}
.h-dot.active { background: var(--teal); width: 46px; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 6%;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--grey); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}

/* ─── TICKER ─── */
.ld-ticker {
  background: linear-gradient(90deg, var(--teal), var(--teal-dark) 50%, var(--teal));
  padding: .7rem 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── VISION / MISSION ─── */
.vm-section { background: var(--aqua); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.vm-card {
  background: var(--white); border-radius: 20px; padding: 3rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow); transition: .3s;
}
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vm-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--teal), var(--pink));
}
.vm-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--teal-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem;
}
.vm-card:nth-child(2) .vm-icon { background: var(--pink-light); }
.vm-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: .5rem; }
.vm-card:nth-child(2) .vm-label { color: var(--pink); }
.vm-title { font-family: var(--ff-d); font-size: 1.6rem; font-weight: 500; color: var(--charcoal); margin-bottom: .75rem; line-height: 1.3; }
.vm-text   { font-size: .88rem; color: var(--grey); line-height: 1.9; }
.vm-tags   { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.vm-tag   { font-size: .7rem; background: var(--teal-light); color: var(--teal-dark); padding: .3rem .8rem; border-radius: 20px; font-weight: 500; }
.vm-card:nth-child(2) .vm-tag { background: var(--pink-light); color: var(--pink); }

/* ─── DEVICES PREVIEW ─── */
.device-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 4rem; }
.d-card {
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); transition: .35s; cursor: pointer;
}
.d-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.d-card-top { padding: 3rem; position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; }
.d-card:nth-child(1) .d-card-top { background: linear-gradient(135deg, var(--teal-light), #D4F5F5); }
.d-card:nth-child(2) .d-card-top { background: linear-gradient(135deg, var(--pink-light), #FFD6EE); }
.d-card-visual { height: 220px; display: flex; align-items: center; justify-content: center; }
.d-card-visual img { max-height: 100%; width: auto; object-fit: contain; }
.d-card-body { background: var(--white); padding: 2rem; }
.d-card-name { font-family: var(--ff-d); font-size: 1.4rem; font-weight: 500; color: var(--charcoal); margin-bottom: .5rem; }
.d-card-desc { font-size: .85rem; color: var(--grey); line-height: 1.8; margin-bottom: 1.25rem; }
.d-card-price { font-family: var(--ff-d); font-size: 1.8rem; color: var(--teal); font-weight: 500; }
.d-card:nth-child(2) .d-card-price { color: var(--pink); }
.d-card-link {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--teal); margin-top: 1rem;
  transition: gap .2s;
}
.d-card:nth-child(2) .d-card-link { color: var(--pink); }
.d-card:hover .d-card-link { gap: .7rem; }
.d-card-link::after { content: '→'; }

/* ─── SERVICE TABS ─── */
.svc-tabs { display: flex; gap: .5rem; margin: 2rem 0; flex-wrap: wrap; }
.svc-tab {
  padding: .6rem 1.4rem; border-radius: 30px; font-size: .8rem; font-weight: 500;
  border: 1.5px solid var(--grey-light); color: var(--grey); background: var(--white);
  cursor: pointer; transition: .2s;
}
.svc-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: var(--shadow); }
.svc-tab:hover:not(.active) { border-color: var(--teal); color: var(--teal); }
.svc-panel { display: none; }
.svc-panel.active { display: block; }

/* ─── TABLE RESPONSIVENESS (Horizontal Scroll) ─── */
.price-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Smooth mobile momentum scroll */
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: 1rem;
}
.price-table { width: 100%; border-collapse: collapse; min-width: 650px; }
.price-table th {
  padding: .85rem 1.25rem; font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--grey); font-weight: 600;
  background: var(--aqua); text-align: left; border-bottom: 1px solid var(--grey-light);
}
.price-table td {
  padding: .8rem 1.25rem; font-size: .9rem; color: var(--grey);
  border-bottom: 1px solid rgba(95,199,198,.08);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--teal-light); }
.p-price  { color: var(--teal); font-weight: 600; font-family: var(--ff-d); font-size: 1rem; }
.p-save   { color: var(--pink); font-size: .82rem; font-weight: 500; }

.promo-bar {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 14px; padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.5rem; gap: 1rem; flex-wrap: wrap;
}
.promo-bar strong { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 500; color: #fff; display: block; }
.promo-bar p { font-size: .85rem; color: rgba(255,255,255,.8); margin-top: .2rem; }

/* ─── BEFORE / AFTER ─── */
.ba-section { background: var(--charcoal); position: relative; overflow: hidden; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3rem; }
.ba-card { background: #1A1A1A; overflow: hidden; border-radius: 16px; transition: .3s; }
.ba-card:hover { transform: scale(1.02); z-index: 1; }
.ba-visual { height: 260px; display: flex; position: relative; overflow: hidden; }
.ba-half { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.ba-half img { width: 100%; height: 100%; object-fit: cover; }
.ba-split {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--pink)); z-index: 3;
}
.ba-split-dot {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 4; box-shadow: 0 2px 12px rgba(0,0,0,.3);
  font-size: .65rem; color: var(--teal);
}
.ba-lbl {
  position: absolute; bottom: 8px; font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.5); padding: 2px 6px; border-radius: 4px; z-index: 5;
}
.ba-lbl-b { left: 8px; }
.ba-lbl-a { right: 8px; }
.ba-info { padding: 1.25rem 1.5rem; }
.ba-tag {
  display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); background: rgba(95,199,198,.1); padding: .25rem .7rem;
  border-radius: 20px; margin-bottom: .5rem; font-weight: 500;
}
.ba-info h4 { font-size: .9rem; color: #fff; font-weight: 400; margin-bottom: .25rem; }
.ba-info p  { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ─── WHY CHOOSE ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.why-card {
  background: var(--aqua); border-radius: 20px; padding: 2.5rem;
  position: relative; overflow: hidden; transition: .3s;
  border: 1.5px solid transparent;
}
.why-card:hover { border-color: var(--teal-mid); box-shadow: var(--shadow); transform: translateY(-4px); background: var(--white); }
.why-card::before {
  content: attr(data-num); position: absolute; top: .5rem; right: 1.5rem;
  font-family: var(--ff-d); font-size: 4.5rem; font-weight: 500;
  color: rgba(95,199,198,.1); line-height: 1;
}
.why-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.why-title { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: .5rem; }
.why-text  { font-size: .85rem; color: var(--grey); line-height: 1.8; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.stat-box {
  background: var(--aqua); border-radius: 16px; padding: 1.75rem;
  text-align: center; border: 1.5px solid var(--teal-mid); transition: .3s;
}
.stat-box:hover { background: var(--teal); border-color: var(--teal); }
.stat-box:hover .stat-num, .stat-box:hover .stat-lbl { color: #fff; }
.stat-num { font-family: var(--ff-d); font-size: 2.2rem; font-weight: 500; color: var(--teal); }
.stat-lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-top: .4rem; }

/* ─── TESTIMONIALS ─── */
.testi-slider { overflow: hidden; margin-top: 3.5rem; }
.testi-track   { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.testi-slide   { min-width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; flex-shrink: 0; }
.testi-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  position: relative; box-shadow: var(--shadow); transition: .3s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testi-card::before {
  content: '\201C'; position: absolute; top: 0; left: 1.5rem;
  font-family: var(--ff-d); font-size: 5rem; color: var(--teal-mid); line-height: 1;
}
.testi-stars     { color: var(--pink); font-size: .85rem; margin-bottom: .75rem; }
.testi-treatment { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: .5rem; }
.testi-text      { font-family: var(--ff-d); font-size: .95rem; font-style: italic; color: var(--charcoal); line-height: 1.8; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.testi-author    { display: flex; align-items: center; gap: .75rem; }
.testi-avatar    { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--ff-d); font-size: 1rem; color: #fff; font-weight: 500; flex-shrink: 0; }
.testi-name { font-size: .88rem; font-weight: 600; color: var(--charcoal); }
.testi-loc  { font-size: .78rem; color: var(--grey); }
.testi-controls { display: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--teal-mid); background: var(--white);
  color: var(--teal); font-size: 1.1rem; cursor: pointer; transition: .2s;
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ─── DEMO / BOOKING SECTION ─── */
.demo-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 45%, #2A8B8A 100%);
  position: relative; overflow: hidden;
}
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.demo-info .s-label { color: rgba(255,255,255,.7); }
.demo-info .s-title { color: #fff; }
.demo-info .s-body  { color: rgba(255,255,255,.65); }
.demo-perks { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.demo-perk  { display: flex; gap: 1rem; background: rgba(255,255,255,.1); border-radius: 14px; padding: 1.25rem; backdrop-filter: blur(10px); }
.perk-icon  { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.perk-title { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: .2rem; }
.perk-desc  { font-size: .82rem; color: rgba(255,255,255,.7); }
.form-card  { background: var(--white); border-radius: 24px; padding: 2.5rem; box-shadow: 0 24px 64px rgba(0,0,0,.12); }
.form-title { font-family: var(--ff-d); font-size: 1.6rem; font-weight: 500; color: var(--charcoal); margin-bottom: .3rem; }
.form-sub   { font-size: .85rem; color: var(--grey); margin-bottom: 1.75rem; }
.form-row   { margin-bottom: 1.1rem; }
.form-2col  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-lbl   { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); font-weight: 600; margin-bottom: .4rem; }
.form-ctrl  {
  width: 100%; border: 1.5px solid var(--grey-light); border-radius: 10px;
  padding: .7rem 1rem; font-family: var(--ff-b); font-size: .9rem;
  color: var(--charcoal); outline: none; transition: .2s; background: var(--white);
}
.form-ctrl::placeholder { color: #C4C9D4; }
.form-ctrl:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(95,199,198,.12); }
select.form-ctrl {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center; background-size: 16px;
}
.form-submit {
  width: 100%; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; border: none; padding: 1rem; border-radius: 30px;
  font-family: var(--ff-b); font-size: .9rem; font-weight: 600;
  letter-spacing: .06em; cursor: pointer; transition: .25s; margin-top: .75rem;
  box-shadow: var(--shadow);
}
.form-submit:hover { background: linear-gradient(135deg, var(--pink), #D4006E); box-shadow: var(--shadow-pk); transform: translateY(-2px); }

/* ─── FORM STATUS BANNERS ─── */
.form-alert { border-radius: 10px; padding: .85rem 1.1rem; font-size: .85rem; margin-bottom: 1.25rem; line-height: 1.5; }
.form-alert.success { background: var(--teal-light); color: var(--teal-dark); border: 1px solid var(--teal-mid); }
.form-alert.error   { background: var(--pink-light); color: var(--pink); border: 1px solid var(--pink-mid); }

/* ─── ADVANTAGES ─── */
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.adv-list { display: flex; flex-direction: column; gap: 1.25rem; }
.adv-item {
  display: flex; gap: 1.25rem; padding: 1.5rem; align-items: flex-start;
  background: var(--aqua); border-radius: 16px;
  border-left: 3px solid var(--teal-mid); transition: .3s;
}
.adv-item:hover { border-left-color: var(--teal); background: var(--teal-light); transform: translateX(4px); }
.adv-num {
  width: 36px; height: 36px; border-radius: 10px; background: var(--teal-light);
  color: var(--teal); font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.adv-item:hover .adv-num { background: var(--teal); color: #fff; }
.adv-title { font-size: .95rem; font-weight: 600; color: var(--charcoal); margin-bottom: .3rem; }
.adv-text  { font-size: .85rem; color: var(--grey); line-height: 1.8; }
.adv-right { display: flex; flex-direction: column; gap: 1.5rem; }
.cert-card { background: var(--aqua); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow); }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.cert-item {
  background: var(--white); border-radius: 14px; padding: 1.25rem;
  text-align: center; border: 1.5px solid var(--grey-light); transition: .3s;
}
.cert-item:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.cert-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.cert-name { font-size: .75rem; font-weight: 600; color: var(--charcoal); }
.discount-card {
  background: linear-gradient(135deg, var(--pink), #D4006E);
  border-radius: 20px; padding: 2rem; text-align: center; box-shadow: var(--shadow-pk);
}
.discount-big   { font-family: var(--ff-d); font-size: 3rem; font-weight: 500; color: #fff; }
.discount-label { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.8); margin: .3rem 0; }
.discount-sub   { font-size: .8rem; color: rgba(255,255,255,.65); }

/* ─── FAQs ─── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-light); border-radius: 16px; overflow: hidden; }
.faq-item { background: var(--white); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.5rem; cursor: pointer; transition: .2s; }
.faq-q:hover { background: var(--teal-light); }
.faq-q-text { font-size: .9rem; font-weight: 500; color: var(--charcoal); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--grey-light);
  color: var(--teal); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: .3s; font-size: 1.1rem; font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: .5rem 1.5rem 1.25rem; font-size: .88rem; color: var(--grey); line-height: 1.9; border-top: 1px solid var(--grey-light); }
.faq-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-contact-card, .hours-card { background: var(--white); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); }
.contact-items { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.25rem; }
.contact-item  { display: flex; align-items: center; gap: .85rem; font-size: .9rem; color: var(--grey); transition: color .2s; }
.contact-item:hover { color: var(--teal); }
.c-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hours-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--grey-light); font-size: .88rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day  { color: var(--charcoal); font-weight: 500; }
.hours-time { color: var(--grey); }
.hours-row.active .hours-day, .hours-row.active .hours-time { color: var(--teal); font-weight: 600; }

/* ─── FOOTER ─── */
.ld-footer { background: var(--charcoal); padding: 5rem 6% 2rem; color: #fff; width: 100%; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { font-family: var(--ff-d); font-size: 1.8rem; font-weight: 500; color: #fff; display: flex; align-items: center; gap: .35rem; cursor: pointer; margin-bottom: 1rem; }
.footer-logo span { color: var(--teal); }
.footer-logo em { width: 8px; height: 8px; background: var(--pink); border-radius: 50%; flex-shrink: 0; font-style: normal; display: inline-block; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.9; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.45); transition: .2s; }
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-col h4 { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color .2s; cursor: pointer; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy     { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal   { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: var(--teal); }

/* ─── PRODUCTS PAGE ─── */
.product-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 7rem; }
.product-block:last-child { margin-bottom: 0; }
.product-block.flip { direction: rtl; }
.product-block.flip > * { direction: ltr; }
.product-visual {
  background: var(--aqua); border-radius: 28px; padding: 3rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 400px; position: relative; overflow: hidden;
}
.product-visual img { max-height: 350px; width: auto; object-fit: contain; position: relative; z-index: 2; }
.product-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--teal-light); color: var(--teal-dark); padding: .4rem 1rem; border-radius: 30px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.product-block.flip .product-badge { background: var(--pink-light); color: var(--pink); }
.product-name { font-family: var(--ff-d); font-size: 2.2rem; font-weight: 500; color: var(--charcoal); line-height: 1.15; margin-bottom: 1rem; }
.product-desc { font-size: .93rem; color: var(--grey); line-height: 1.9; margin-bottom: 2rem; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: flex-start; gap: .65rem; background: var(--aqua); border-radius: 12px; padding: .85rem; }
.f-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: .35rem; }
.product-block.flip .f-dot { background: var(--pink); }
.f-text { font-size: .82rem; color: var(--charcoal); font-weight: 500; line-height: 1.4; }
.tech-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.tech-tag { font-size: .72rem; background: var(--teal-light); color: var(--teal-dark); padding: .3rem .85rem; border-radius: 20px; font-weight: 500; border: 1px solid var(--teal-mid); }
.product-block.flip .tech-tag { background: var(--pink-light); color: var(--pink); border-color: var(--pink-mid); }
.product-price-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.pp-label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); font-weight: 600; }
.pp-price { font-family: var(--ff-d); font-size: 2rem; color: var(--teal); font-weight: 500; }
.product-block.flip .pp-price { color: var(--pink); }

/* Compare Table Responsive Setup */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; background: var(--white); border-radius: 20px; box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 650px; }
.compare-table th { padding: 1.1rem 1.5rem; text-align: left; background: var(--charcoal); color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; }
.compare-table td { padding: .9rem 1.5rem; border-bottom: 1px solid var(--grey-light); font-size: .88rem; color: var(--grey); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--teal-light); }
.compare-table .feat-col { color: var(--charcoal); font-weight: 500; }
.check { color: var(--teal); font-size: 1.1rem; }
.cross { color: var(--grey-light); }

/* ─── SERVICES PAGE ─── */
.svc-hero-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 0 6% 5rem; }
.svc-hero-card { border-radius: 20px; padding: 2.5rem; text-align: center; transition: .3s; cursor: pointer; }
.svc-hero-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-hero-card:nth-child(1) { background: var(--teal-light); border: 2px solid var(--teal-mid); }
.svc-hero-card:nth-child(2) { background: var(--pink-light); border: 2px solid var(--pink-mid); }
.svc-hero-card:nth-child(3) { background: linear-gradient(135deg, var(--teal-light), var(--pink-light)); border: 2px solid var(--teal-mid); }
.shc-icon  { font-size: 3rem; margin-bottom: 1rem; }
.shc-title { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 500; color: var(--charcoal); margin-bottom: .5rem; }
.shc-desc  { font-size: .82rem; color: var(--grey); line-height: 1.7; }

.tabs-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; border-bottom: 2px solid var(--grey-light); padding-bottom: .5rem; }
.t2 {
  padding: .65rem 1.5rem; font-size: .82rem; font-weight: 500;
  color: var(--grey); border: none; background: none; cursor: pointer;
  transition: .2s; border-radius: 8px 8px 0 0; position: relative;
}
.t2.active { color: var(--teal); font-weight: 600; }
.t2.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--pink)); }
.t2:hover:not(.active) { color: var(--teal); background: var(--teal-light); }
.panel2 { display: none; }
.panel2.active { display: block; }

.price-table-2-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; background: var(--white); box-shadow: var(--shadow); border-radius: 12px; }
.price-table-2 { width: 100%; border-collapse: collapse; min-width: 650px; }
.price-table-2 thead tr { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.price-table-2 th { padding: 1rem 1.25rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; font-weight: 500; text-align: left; }
.price-table-2 td { padding: .9rem 1.25rem; font-size: .88rem; color: var(--grey); border-bottom: 1px solid var(--grey-light); }
.price-table-2 tr:last-child td { border-bottom: none; }
.price-table-2 tr:hover td { background: var(--teal-light); }

.pkg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pkg-card { background: var(--white); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); }
.pkg-card.featured { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); position: relative; box-shadow: var(--shadow-lg); }
.pkg-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--pink); color: #fff; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 20px; white-space: nowrap; font-weight: 600; }
.pkg-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: .5rem; color: var(--teal); }
.pkg-card.featured .pkg-label { color: rgba(255,255,255,.7); }
.pkg-price { font-family: var(--ff-d); font-size: 2.2rem; font-weight: 500; color: var(--charcoal); }
.pkg-card.featured .pkg-price { color: #fff; }
.pkg-price span { font-size: 1rem; color: var(--grey); }
.pkg-card.featured .pkg-price span { color: rgba(255,255,255,.7); }
.pkg-desc { font-size: .85rem; color: var(--grey); margin: 1rem 0; line-height: 1.8; }
.pkg-card.featured .pkg-desc { color: rgba(255,255,255,.75); }
.pkg-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.pkg-li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--grey); }
.pkg-li span { color: var(--teal); }
.pkg-card.featured .pkg-li { color: rgba(255,255,255,.85); }
.pkg-card.featured .pkg-li span { color: rgba(255,255,255,.9); }

/* ─── ABOUT PAGE ─── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { background: var(--aqua); border-radius: 28px; min-height: 400px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-big { font-size: 8rem; position: relative; z-index: 1; filter: drop-shadow(0 10px 30px rgba(95,199,198,.3)); }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.as-item { background: var(--aqua); border-radius: 14px; padding: 1.25rem; text-align: center; }
.as-num { font-family: var(--ff-d); font-size: 1.8rem; color: var(--teal); font-weight: 500; }
.as-lbl { font-size: .75rem; color: var(--grey); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.team-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); transition: .3s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar { height: 200px; display: flex; align-items: center; justify-content: center; }
.team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, var(--teal-light), var(--teal-mid)); }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--pink-light), var(--pink-mid)); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, var(--teal-light), var(--pink-light)); }
.team-emoji { font-size: 5rem; }
.team-body  { padding: 1.75rem; }
.team-name  { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 500; color: var(--charcoal); margin-bottom: .25rem; }
.team-role  { font-size: .78rem; color: var(--teal); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; }
.team-bio   { font-size: .85rem; color: var(--grey); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--aqua); border-radius: 20px; padding: 2rem; text-align: center; transition: .3s; }
.value-card:hover { background: var(--teal-light); transform: translateY(-4px); }
.val-icon   { font-size: 2.2rem; margin-bottom: 1rem; }
.val-title { font-family: var(--ff-d); font-size: 1.1rem; font-weight: 500; color: var(--charcoal); margin-bottom: .5rem; }
.val-text   { font-size: .82rem; color: var(--grey); line-height: 1.8; }

/* ─── CONTACT PAGE ─── */
.contact-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.c-info-card { background: var(--aqua); border-radius: 20px; padding: 2rem; text-align: center; transition: .3s; border: 1.5px solid transparent; }
.c-info-card:hover { border-color: var(--teal); box-shadow: var(--shadow); background: var(--white); }
.c-info-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; }
.c-info-icon.pink { background: var(--pink-light); }
.c-info-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: .4rem; }
.c-info-label.pink { color: var(--pink); }
.c-info-val { font-size: .9rem; color: var(--charcoal); font-weight: 500; line-height: 1.5; }
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.map-card { background: linear-gradient(135deg, var(--teal-light), var(--pink-light)); border-radius: 24px; height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; border: 2px dashed var(--teal-mid); }
.map-icon   { font-size: 4rem; }
.map-title { font-family: var(--ff-d); font-size: 1.3rem; color: var(--charcoal); }
.map-addr   { font-size: .9rem; color: var(--grey); line-height: 1.6; }

/* ─── BOOK PAGE ─── */
.book-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.book-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.book-step { display: flex; gap: 1rem; padding: 1.5rem; background: var(--aqua); border-radius: 16px; transition: .3s; }
.book-step:hover { background: var(--teal-light); transform: translateX(4px); }
.step-num { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; font-size: .85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow); }
.step-title { font-size: .9rem; font-weight: 600; color: var(--charcoal); margin-bottom: .25rem; }
.step-desc  { font-size: .82rem; color: var(--grey); line-height: 1.7; }
.why-book-card { background: linear-gradient(135deg, var(--pink-light), var(--teal-light)); border-radius: 20px; padding: 2rem; margin-top: 2rem; border: 1.5px solid var(--pink-mid); }
.wb-title { font-family: var(--ff-d); font-size: 1.2rem; font-weight: 500; color: var(--charcoal); margin-bottom: 1rem; }
.wb-list { display: flex; flex-direction: column; gap: .65rem; }
.wb-item { display: flex; align-items: center; gap: .65rem; font-size: .85rem; color: var(--grey); }
.wb-item::before { content: '✦'; color: var(--pink); font-size: .6rem; flex-shrink: 0; }
.book-form-wrap { background: var(--aqua); border-radius: 24px; padding: 2.5rem; }

/* ─── MACHINE PRICING ─── */
.machine-pricing-section { padding: 60px 20px; background-color: #ffffff; font-family: var(--ff-b); }
.machine-container { display: flex; gap: 30px; max-width: 1200px; margin: 0 auto; justify-content: space-between; }
.machine-card { flex: 1; background: #ffffff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.05); display: flex; flex-direction: column; }
.machine-image-wrapper { background-color: #e8f7f5; padding: 40px; display: flex; justify-content: center; align-items: center; height: 300px; }
.machine-image-wrapper.pink-bg { background-color: #fde8f1; }
.machine-img { max-height: 100%; object-fit: contain; transition: transform .3s ease; }
.machine-card:hover .machine-img { transform: scale(1.05); }
.machine-info { padding: 25px; text-align: left; }
.machine-title { font-size: 22px; color: #1a1a1a; margin-bottom: 10px; font-weight: 600; }
.machine-description { font-size: 14px; color: #666666; line-height: 1.5; margin-bottom: 20px; }
.machine-price { font-size: 20px; color: #00a896; font-weight: 700; margin-bottom: 15px; }
.machine-btn { display: inline-block; padding: 10px 20px; background-color: #00a896; color: #ffffff; text-decoration: none; border-radius: 25px; font-weight: 500; font-size: 14px; transition: background-color .3s ease; text-align: center; }
.machine-btn:hover { background-color: #008575; }
@media (max-width: 768px) {
  .machine-container { flex-direction: column; gap: 20px; }
  .machine-image-wrapper { height: 250px; }
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 15px; right: 15px; z-index: 99999999; display: flex; align-items: center; }
.wa-float svg { height: 50px; width: 50px; display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  body, html { width: 100%; overflow-x: hidden; }

  .slide-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
    height: auto;
  }
  .ld-hero { height: auto; min-height: unset; padding-bottom: 60px; }
  .ld-slide { position: relative; opacity: 1; display: none; padding-top: 40px; }
  .ld-slide.active { display: block; }
  .slide-p { margin-left: auto; margin-right: auto; }
  .slide-actions, .slide-chips { justify-content: center; }
  .hero-device-img { max-height: 35vh; margin-top: 1.5rem; }

  .vm-grid, .device-cards, .demo-grid, .adv-grid, .faq-grid,
  .product-block, .about-story, .contact-layout, .book-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-block.flip { direction: ltr; }

  .ba-grid { grid-template-columns: 1fr; gap: 25px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testi-slide { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .team-grid, .values-grid, .contact-top, .svc-hero-cards, .pkg-cards { grid-template-columns: 1fr 1fr; }
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .why-grid, .stats-row, .team-grid, .values-grid, .contact-top, .svc-hero-cards, .pkg-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-2col, .about-stats { grid-template-columns: 1fr; }
  .section-pad { padding: 60px 5%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
}
