@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f8f9fa;
  --surface-alt: #f3f4f6;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #f97316;
  --accent-soft: #fff1e8;
  --success: #22c55e;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 14px 34px rgba(17, 24, 39, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.28);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(249, 115, 22, 0.18);
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section--soft {
  background: var(--surface);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section__eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section__title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section__description {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-header--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.08);
  border-bottom-color: transparent;
}

.topbar {
  background: #111827;
  color: #fff;
  font-size: 0.88rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__mark {
  display: none;
}

.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text span:first-child {
  font-size: 1rem;
}

.brand__text span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.nav__link[aria-current='page'],
.nav__link.is-active {
  color: var(--accent);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:active {
  transform: scale(0.98);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  position: relative;
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s ease, background 0.18s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

body.nav-open .nav-toggle {
  position: relative;
  z-index: 1002;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  padding: 22px 0 18px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #c2410c;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__title {
  margin: 18px 0 18px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero__subtitle {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ===================================================
   UNIVERSAL PREMIUM BUTTON STYLE
=================================================== */

.button,
.button--primary,
.button--secondary,
.button--ghost,
.back-button,
.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:0 24px;
    background:linear-gradient(135deg,#f97316 0%,#fb923c 50%,#f59e0b 100%);
    color:#fff;
    border:none;
    border-radius:999px;
    font-weight:700;
    font-size:.95rem;
    text-decoration:none;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(249,115,22,.28);
    transition:.3s ease;
}

.button:hover,
.button--primary:hover,
.button--secondary:hover,
.button--ghost:hover,
.back-button:hover,
.badge:hover{
    transform:translateY(-3px);
    filter:brightness(1.05);
    box-shadow:0 18px 40px rgba(249,115,22,.38);
}

.button:active,
.button--primary:active,
.button--secondary:active,
.button--ghost:active,
.back-button:active,
.badge:active{
    transform:scale(.97);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero__stat {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
}

.hero__stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.hero__stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.45)),
    linear-gradient(145deg, #fefefe 0%, #f8f9fa 50%, #fff4ec 100%);
  box-shadow: var(--shadow);
}

.hero__panel::before,
.hero__panel::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.hero__panel::before {
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.12);
  top: -36px;
  right: -34px;
}

.hero__panel::after {
  width: 260px;
  height: 260px;
  background: rgba(34, 197, 94, 0.08);
  bottom: -40px;
  left: -50px;
}

.hero__image {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero__floating {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero__floating--top {
  top: 34px;
  left: 34px;
}

.hero__floating--bottom {
  right: 34px;
  bottom: 34px;
}

.hero__floating strong {
  font-size: 1.02rem;
}

.hero__floating span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trustbar {
  margin-top: 28px;
}

.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.trustbar__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
}

.trustbar__item strong {
  display: block;
  font-size: 0.98rem;
}

.trustbar__item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

@media(max-width:768px){

.card:hover{
transform:none;
}

}

.back-button__icon {
  font-size: 1.05rem;
  line-height: 1;
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.card__title {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.card__text {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.media-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stat-band {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #fff7f1);
  box-shadow: var(--shadow-soft);
}

.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.stat-band__item {
  padding: 12px 10px;
}

.stat-band__item strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.stat-band__item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.pricing-card__price {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  font-weight: 700;
}

.pricing-card__price span {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  cursor: zoom-in;
  min-height: 240px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.review-slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #fff, #fff8f2);
  box-shadow: var(--shadow-soft);
}

.review-slider__track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-slide {
  min-width: 100%;
  padding: 32px;
}

.review-slide__rating {
  color: #f59e0b;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.review-slide__text {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.review-slide__author {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 600;
}

.review-slider__controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
}

.contact-layout{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:50px;
    align-items:start;
}

.contact-panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-list__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}

.form {
  display: grid;
  gap: 14px;
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.map{
    margin-top:50px;

    height:430px;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.map iframe{
    width:100%;
    height:100%;
    border:0;
}

.site-footer {
  background: linear-gradient(180deg, #fff, #fff7f2);
  border-top: 1px solid #ececec;
  padding: 70px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #111827;
  position: relative;
}

.footer__title::after{
    content:"";
    width:40px;
    height:3px;
    background:var(--accent);
    display:block;
    margin:10px auto 0;
    border-radius:999px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 14px;
}

.footer__links a,
.footer__links span {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer__links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer__brand {
  max-width: 360px;
}

.footer__brand p {
  margin-top: 20px;
  line-height: 1.8;
  color: #6b7280;
}

.footer__bottom {
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 0.95rem;
}

.badge-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.badge:last-child{
    grid-column:1 / -1;
}



.page-hero {
  padding: 26px 0 18px;
}

.page-hero__panel {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #fff, #fff8f2);
  box-shadow: var(--shadow-soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--text);
  font-weight: 600;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: 3px;
  background: rgba(249, 115, 22, 0.14);
}

.scroll-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fb923c);
}

/* UPDATED: Floating action buttons */
.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1100;
  display: grid;
  gap: 10px;
  /* Prevents overlap with iPhone bottom home bar */
  padding-bottom: env(safe-area-inset-bottom);
}

.floating-actions a{
    width:58px;
    height:58px;
    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    transition:.3s;
}

.floating-actions a:hover{
    transform:translateY(-4px);
}

.floating-actions__whatsapp{
    background:#25D366;
}

.floating-actions__call{
    background:#111827;
}

.floating-actions svg{
    width:26px;
    height:26px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.84);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__content {
  position: relative;
  max-width: min(100%, 1100px);
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 22px;
}

.lightbox__nav--next {
  right: 22px;
}

.lightbox__content img {
  width: 100%;
  height: auto;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {

  .hero__grid,
  .split,
  .contact-layout,
  .footer__grid,
  .grid--5,
  .stat-band__grid,
  .trustbar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--4,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__panel {
    min-height: 560px;
  }
}




/* ============================================================
   MOBILE RESPONSIVE OVERRIDES (320px - 860px)
   ============================================================ */

@media (max-width: 1100px) {

  .hero__grid,
  .split,
  .contact-layout,
  .footer__grid {
    gap: 24px;
  }
}

/* Tablet & Mobile Navigation (max-width: 860px) */
@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  /* ----- Mobile Slide-in Navigation ----- */
  body.nav-open {
    overflow: hidden !important;
  }

  body.nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 24px 32px;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .nav__links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
  }

  .nav__link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 14px;
    background: var(--surface);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
  }

  .nav__link:active {
    transform: scale(0.97);
  }

  .nav__link.is-active,
  .nav__link[aria-current="page"] {
    background: var(--accent-soft);
    color: var(--accent);
  }

  .nav__link::after {
    display: none;
  }

  .nav__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav__actions .button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  /* ----- Perfect Hamburger Menu Button Styles ----- */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .nav-toggle:active {
    transform: scale(0.95);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    position: relative;
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s ease, background 0.18s ease;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s ease;
  }

  .nav-toggle span::before {
    top: -6px;
  }

  .nav-toggle span::after {
    top: 6px;
  }

  body.nav-open .nav-toggle span {
    background: transparent;
  }

  body.nav-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* ----- Hero & General Mobile Layout ----- */
  .hero {
    padding-top: 28px;
  }

  .hero__actions,
  .badge-row,
  .hero__meta {
    width: 100%;
  }

  .hero__floating{
width:42%;
max-width:170px;
}

  .hero__floating--top {
    top: 18px;
    left: 18px;
  }

  .hero__floating--bottom {
    right: 18px;
    bottom: 18px;
  }

  .trustbar__item,
  .card,
  .pricing-card,
  .contact-panel,
  .page-hero__panel {
    border-radius: 22px;
  }
}

/* Main Mobile Layout (max-width: 768px) */
@media (max-width: 768px) {

  /* ----- Container & Typography ----- */
  body {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .section__title {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 12px 0 12px;
  }

  .section__description,
  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
    margin-top: 0;
  }

  .section__eyebrow,
  .hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }

  /* ----- Layout & Spacing ----- */
  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 16px 0 12px;
  }

  .page-hero {
    padding: 16px 0 12px;
  }

  /* ----- Grids ----- */
  .hero__grid,
  .split,
  .contact-layout,
  .footer__grid,
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5,
  .gallery-grid,
  .stat-band__grid,
  .trustbar__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ----- Hero ----- */
  .hero__panel {
    min-height: 360px;
    border-radius: 24px;
  }

  .hero__image {
    padding: 20px;
  }

  .hero__image img {
    border-radius: 20px;
  }

  .hero__floating {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.85rem;
    max-width: 180px;
  }

  .hero__floating strong {
    font-size: 0.95rem;
  }

  .hero__floating--top {
    top: 16px;
    left: 16px;
  }

  .hero__floating--bottom {
    right: 16px;
    bottom: 16px;
  }

  /* ----- Premium Hero Action Buttons (2-row layout) ----- */
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero__actions .button--primary {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero__actions .button--secondary,
  .hero__actions .button--ghost {
    width: 100%;
    min-height: 46px;
  }

  

  /* ----- Hero Stats (Clean Modern Cards) ----- */
  .hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .hero__stat {
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  }

  .hero__stat strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text);
  }

  .hero__stat span {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* ----- Buttons & Badges ----- */
 .button,
.button--primary,
.button--secondary,
.button--ghost,
.back-button,
.badge{
    width:100%;
    min-height:48px;
    padding:0 16px;
    font-size:.9rem;
    justify-content:center;
}

 .badge{
    width:100%;
    min-width:0;
    max-width:none;
    min-height:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    font-size:14px;
    font-weight:700;
}

  .badge-row {
    gap: 8px;
  }

  .back-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.85rem;
  }

  /* ----- FIX: Prevent breadcrumb/back-button overlap on inner pages ----- */
  .page-hero__panel .back-button,
  .page-hero__panel .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 8px;
  }

  .page-hero__panel .breadcrumb {
    margin-bottom: 16px;
  }

  .page-hero__panel .section__eyebrow {
    margin-top: 16px;
  }

  /* ----- FIX: Fully visible Floating Action Buttons ----- */
  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-actions a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
  }

  /* ----- Cards ----- */
  .card {
    padding: 20px;
    border-radius: 20px;
    border: 10px solid var(--border);
  }

  .card__title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .card__text {
    font-size: 0.9rem;
    color: var(--muted);
  }

  /* ----- Forms ----- */
  .form__grid {
    gap: 12px;
  }

  .field {
    gap: 6px;
  }

  .field label {
    font-size: 0.9rem;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 14px;
    width: 100%;
  }

  .field textarea {
    min-height: 120px;
  }

  .contact-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-list {
    gap: 14px;
  }

  .contact-list__item {
    gap: 12px;
  }

  .contact-list__icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  /* ----- Gallery ----- */
  .gallery-item {
    min-height: 220px;
    border-radius: 20px;
  }

  .gallery-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .gallery-item__overlay {
    padding: 10px 14px;
    border-radius: 14px;
    inset: auto 12px 12px 12px;
  }

  .gallery-item__overlay strong {
    font-size: 0.9rem;
  }

  /* ----- Mobile Footer ----- */

 /* ----- Mobile Footer ----- */

.site-footer{
    padding:28px 0 20px;
}

.footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    justify-items: center;
}

.footer__brand {
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

.footer__brand .brand{
    justify-content:center;
}

.footer__title{
    font-size:1rem;
    margin-bottom:12px;
}

.footer__links {
    list-style:none;
    padding:0;
    margin:0;
    text-align:center;
}

.footer__links li{
    margin-bottom:10px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer__links a,
.footer__links span{
    font-size:.92rem;
}

.footer__bottom{
    margin-top:20px;
    padding-top:16px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:8px;
}

  /* ----- Stat Band ----- */
  .stat-band {
    padding: 16px;
    border-radius: 24px;
  }

  .stat-band__item {
    padding: 8px 0;
    text-align: center;
  }

  .stat-band__item strong {
    font-size: 1.4rem;
  }

  .stat-band__item span {
    font-size: 0.85rem;
  }

  /* ----- Trustbar ----- */
  .trustbar {
    margin-top: 16px;
  }

  .trustbar__item {
    padding: 12px 14px;
    gap: 12px;
  }

  .trustbar__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .trustbar__item strong {
    font-size: 0.9rem;
  }

  .trustbar__item span {
    font-size: 0.8rem;
  }

  /* ----- Map ----- */
  .map {
    border-radius: 24px;
  }

  .map iframe {
    aspect-ratio: 16/9;
    min-height: 200px;
  }

 .quick-links{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:28px;
}

.quick-link{
    min-width:auto;
    padding:18px 12px;
    border-radius:18px;
}

.quick-link span{
    font-size:1.3rem;
}
}

/* Small Devices (max-width: 540px) */
@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .hero__eyebrow,
  .section__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero__subtitle,
  .section__description,
  .card__text,
  .card p,
  .footer__links a,
  .footer__links span,
  .contact-list__item p {
    font-size: 0.9rem;
  }

  .hero__panel {
    min-height: 320px;
  }

  .hero__floating {
    max-width: 160px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .hero__floating strong {
    font-size: 0.85rem;
  }

  .hero__floating span {
    font-size: 0.75rem;
  }

  .gallery-item {
    min-height: 180px;
  }

  .review-slide__text {
    font-size: 1rem;
  }

  .lightbox__nav {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .lightbox__nav--prev {
    left: 16px;
  }

  .lightbox__nav--next {
    right: 16px;
  }

  .lightbox__close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 4 / 5;
  }

  .page-hero__panel,
  .card,
  .contact-panel,
  .review-slide {
    padding: 18px;
    border-radius: 20px;
  }
}

/* Extra Small Devices (max-width: 430px) */
@media (max-width: 430px) {
  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .section__title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .page-hero__panel,
  .card,
  .contact-panel,
  .review-slide {
    padding: 16px;
  }

  .hero__panel {
    min-height: 280px;
  }

  .hero__floating {
    max-width: 140px;
    padding: 8px 12px;
  }

  .button,
  .badge,
  .back-button,
  .nav__link,
  .nav__actions .button {
    min-height: 44px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .hero__actions {
    gap: 8px;
  }

  .gallery-grid{
grid-template-columns:repeat(2,1fr);
gap:12px;
}

.gallery-item{
aspect-ratio:1/1;
}

  .gallery-item {
    aspect-ratio: 16 / 10;
  }
}

/* Very Small Devices (max-width: 360px) */
@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .section {
    padding: 28px 0;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .section__title {
    font-size: 1.3rem;
  }

  .hero__subtitle,
  .section__description,
  .card__text,
  .card p,
  .contact-list__item p,
  .footer__links a,
  .footer__links span {
    font-size: 0.85rem;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
  }

  .floating-actions a {
    width: 48px;
    height: 48px;
  }

  .page-hero__panel,
  .card,
  .contact-panel,
  .review-slide {
    padding: 14px;
  }
}

/* =========================
   MOBILE WIDTH FIX
   ========================= */



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

main,
section,
footer {
  width: 100%;
  max-width: 100%;
}

/* Prevent horizontal scrolling */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

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

.container,
.hero,
.section,
.page-hero,
.hero__grid,
.hero__visual,
.hero__panel {
    max-width: 100%;
}

/* QUICK LINKS */

.quick-links{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.quick-link{
    flex:1;
    min-width:110px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:5px 5px;

    background:linear-gradient(135deg,#ff6a00 0%,#ff8a00 55%,#ffb000 100%);
    color:#fff;

    border:none;
    border-radius:100px;

    transition:.3s ease;
    box-shadow:0 12px 28px rgba(255,120,20,.30);

    text-align:center;
}

.quick-link span{
    color:#fff;
    font-size:1.6rem;
    margin-bottom:5px;
}

.quick-link strong{
    color:#fff;
    font-size:.95rem;
    font-weight:500;
}

.quick-link:hover{
    transform:translateY(-5px);
    filter:brightness(1.08);
    box-shadow:0 18px 40px rgba(255,120,20,.45);
}

.trial-note{
    margin:10px 0;
    padding:5px;

    background:#fff7ec;

    border-left:5px solid #ff8a00;

    border-radius:14px;

    color:#7c4a00;

    line-height:1.6;
}

.trial-note strong{
    display:block;
    margin-bottom:4px;
    font-size:12px;
}