/* ===================================
   Tattoo Removal — Stylesheet
   =================================== */

/* --- Reset & Variables --- */
:root {
  --navy: #1A1A2E;
  --dark: #0F0F1A;
  --darker: #0A0A14;
  --gold: #C5A167;
  --gold-light: #D4B87A;
  --nude: #E8D5B7;
  --off-white: #F5F0EB;
  --text: #C8C2BA;
  --text-muted: #8A8580;
  --green: #7CB69D;
  --card-bg: #16162A;
  --border: rgba(197, 161, 103, 0.15);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container: 1160px;
  --gap: 2rem;
  --radius: 12px;
  --radius-sm: 8px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

.gold { color: var(--gold); }
.light { font-weight: 400; opacity: 0.7; }

.section {
  padding: 6rem 0;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 0.5rem;
}

.btn--gold {
  background: var(--gold);
  color: var(--darker);
  border-color: var(--gold);
  font-weight: 700;
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 161, 103, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(245, 240, 235, 0.25);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

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

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.02em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.navbar__links a:hover {
  color: var(--off-white);
}

.navbar__links .btn.btn--gold {
  color: #000 !important;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(197, 161, 103, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 26, 46, 0.6) 0%, transparent 50%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero__scroll span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.trust-bar__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--off-white);
}

.trust-bar__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- About --- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text p {
  margin-bottom: 1rem;
}

.about__stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

.about__image img,
.tech__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.about__image img {
  max-height: 500px;
  object-fit: cover;
}

.tech__image img {
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --- Before / After Slider --- */
.ba-slider {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider__img--after img {
  max-height: 400px;
}

.ba-slider__img {
  width: 100%;
}

.ba-slider__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__img--after {
  position: relative;
}

.ba-slider__img--before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.ba-slider__img--before img {
  width: 0;
  min-width: 0;
  max-width: none;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.ba-slider__line {
  flex: 1;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(197, 161, 103, 0.4);
}

.ba-slider__knob {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-slider:hover .ba-slider__knob,
.ba-slider.active .ba-slider__knob {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(197, 161, 103, 0.5);
}

.ba-slider__knob svg {
  width: 20px;
  height: 20px;
  color: var(--dark);
}

/* Before / After labels */
.ba-slider::before,
.ba-slider::after {
  position: absolute;
  top: 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ba-slider:hover::before,
.ba-slider:hover::after {
  opacity: 1;
}

.ba-slider::before {
  content: attr(data-before);
  left: 1rem;
  background: rgba(15, 15, 26, 0.8);
  color: var(--off-white);
  backdrop-filter: blur(8px);
}

.ba-slider::after {
  content: attr(data-after);
  right: 1rem;
  background: rgba(197, 161, 103, 0.9);
  color: var(--dark);
}

/* --- Process --- */
.process {
  background: var(--darker);
}

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process__header .section__sub {
  margin: 0 auto;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process__step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
}

.process__step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.process__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process__step h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}

.process__step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- Technology --- */
.tech__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.tech__features svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* --- Gallery --- */
.gallery {
  background: var(--darker);
}

.gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery__header .section__sub {
  margin: 0 auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* --- Pricing --- */
.pricing__header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing__header .section__sub {
  margin: 0 auto;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
}

.pricing__card:hover {
  border-color: rgba(197, 161, 103, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing__card--featured {
  border-color: var(--gold);
  background: linear-gradient(170deg, rgba(197, 161, 103, 0.08) 0%, var(--card-bg) 40%);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing__card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.25rem;
}

.pricing__size {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing__price {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.pricing__currency {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing__includes {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing__includes li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}

.pricing__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.pricing__note {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --- FAQ --- */
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- Contact --- */
.contact {
  background: var(--darker);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__info p {
  margin-bottom: 2rem;
  max-width: 380px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__detail svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--off-white);
}

.contact__detail span,
.contact__detail a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact__detail a:hover {
  color: var(--gold);
}

/* --- Form --- */
.contact__form {
  padding: 2.5rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.form__group input[type="text"],
.form__group input[type="email"],
.form__group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form__file-upload {
  position: relative;
}

.form__file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.form__file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--dark);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: border-color var(--transition);
  cursor: pointer;
}

.form__file-upload:hover .form__file-label {
  border-color: var(--gold);
}

.form__file-label svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.form__file-label span {
  font-size: 0.9rem;
  color: var(--text);
}

.form__file-label small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form__consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form__consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.form__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.contact__form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact__form .btn {
  font-size: 1.1rem;
  padding: 1rem;
  text-align: center;
  display: block;
}

.contact__checklist {
  margin-top: 2rem;
}

.contact__checklist p {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact__checklist ul {
  list-style: none;
  padding: 0;
}

.contact__checklist li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.contact__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__links h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links a,
.footer__links span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Animations (scroll reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Form success state --- */
.contact__form--sent {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.form__success {
  text-align: center;
}

.form__success svg {
  width: 48px;
  height: 48px;
  color: var(--green);
  margin-bottom: 1rem;
}

.form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.form__success p {
  color: var(--text-muted);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .about__inner,
  .tech__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tech__inner {
    direction: ltr;
  }

  .tech__image {
    order: -1;
  }
}

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

  .navbar__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 998;
  }

  .navbar__links.active {
    display: flex;
  }

  .navbar__links a {
    font-size: 1.3rem;
  }

  .navbar__burger {
    display: flex;
    z-index: 999;
  }

  .trust-bar__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-bar__item {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__scroll {
    display: none;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .about__stats {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .about__stat-num {
    font-size: 2rem;
  }
}
