:root {
  --background: 220 20% 4%;
  --foreground: 210 40% 98%;
  --card: 220 18% 8%;
  --muted: 215 20% 55%;
  --primary: 180 70% 50%;
  --accent: 200 80% 40%;
  --pink: 320 70% 60%;
  --border: 220 18% 18%;
  --radius: 18px;
  --shadow-glow: 0 0 40px hsl(var(--primary) / .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  background-image:
    radial-gradient(ellipse 80% 80% at 50% -20%, hsl(var(--primary) / .08), transparent),
    radial-gradient(ellipse 50% 50% at 100% 50%, hsl(var(--pink) / .05), transparent);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: hsl(var(--background) / .8);
  border-bottom: 1px solid hsl(var(--border) / .55);
  backdrop-filter: blur(24px);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--muted));
  transition: color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width .25s ease;
}

.nav-links a:hover {
  color: hsl(var(--foreground));
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn.danger {
  color: #fecdd3;
  border-color: rgb(244 63 94 / .35);
  background: rgb(127 29 29 / .28);
}

.btn.danger:hover {
  color: white;
  background: #be123c;
  box-shadow: 0 0 24px rgb(244 63 94 / .25);
}

.nav-cta {
  padding: 10px 20px;
  background: hsl(var(--primary));
  color: hsl(var(--background));
  font-size: 14px;
}

.nav-cta:hover,
.btn.primary:hover {
  box-shadow: 0 0 30px hsl(var(--primary) / .4);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: hsl(var(--foreground));
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(130px);
  pointer-events: none;
}

.orb-a {
  width: 380px;
  height: 380px;
  top: 22%;
  left: 18%;
  background: hsl(var(--primary) / .2);
  animation: pulse 4s ease-in-out infinite;
}

.orb-b {
  width: 320px;
  height: 320px;
  bottom: 20%;
  right: 17%;
  background: hsl(var(--accent) / .2);
  animation: pulse 4.5s ease-in-out infinite;
}

.vertical-lines {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(to right, hsl(var(--foreground) / .08) 1px, transparent 1px);
  background-size: 120px 100%;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.dot-grid {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(circle at 1px 1px, hsl(var(--foreground)) 1px, transparent 0);
  background-size: 40px 40px;
}

.eyebrow,
.section-kicker,
.section-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: hsl(var(--primary));
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 16px;
  border: 1px solid hsl(var(--primary) / .3);
  border-radius: 999px;
  background: hsl(var(--primary) / .05);
  color: hsl(var(--muted));
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: hsl(var(--primary));
  animation: pulse 1.8s ease-in-out infinite;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
}

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), #47b4eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.section-heading p,
.about-copy p {
  color: hsl(var(--muted));
  line-height: 1.75;
}

.hero-copy p {
  max-width: 540px;
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  min-height: 52px;
  padding: 0 28px;
}

.btn.primary {
  color: hsl(var(--background));
  background: hsl(var(--primary));
}

.btn.outline {
  border-color: hsl(var(--border) / .7);
  background: transparent;
  color: hsl(var(--foreground));
}

.btn.outline:hover {
  border-color: hsl(var(--primary) / .7);
  background: hsl(var(--primary) / .05);
  box-shadow: 0 0 20px hsl(var(--primary) / .2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  color: hsl(var(--muted));
  font-size: 14px;
}

.hero-badges span {
  color: hsl(var(--muted));
}

.hero-visual {
  position: relative;
}

.ring {
  position: absolute;
  border: 1px solid hsl(var(--primary) / .18);
  border-radius: 999px;
  animation: pulse 3s ease-in-out infinite;
}

.ring-one {
  inset: -16px;
}

.ring-two {
  inset: -32px;
  opacity: .55;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--primary) / .35);
  box-shadow: inset 0 0 0 1px hsl(var(--primary) / .14), var(--shadow-glow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background) / .8), transparent 45%);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card,
.premium-card,
.glass-panel,
.service-card {
  background: linear-gradient(135deg, hsl(var(--card) / .72), hsl(var(--card) / .38));
  border: 1px solid hsl(var(--border) / .75);
  box-shadow: 0 25px 50px -12px hsl(220 20% 2% / .8);
  backdrop-filter: blur(16px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 18px;
  padding: 16px 22px;
  animation: float 5s ease-in-out infinite;
}

.satisfaction {
  left: -18px;
  bottom: -18px;
  display: grid;
  grid-template-columns: 48px auto;
  column-gap: 12px;
  align-items: center;
}

.satisfaction small {
  grid-column: 2;
}

.experience {
  top: -18px;
  right: -18px;
  text-align: center;
  padding-inline: 18px;
}

.floating-card strong {
  font-size: 28px;
  line-height: 1;
}

.floating-card small {
  color: hsl(var(--muted));
  font-size: 12px;
}

.circle-icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / .2);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: hsl(var(--muted));
  font-size: 12px;
}

.scroll-cue i {
  width: 24px;
  height: 40px;
  border: 1px solid hsl(var(--primary) / .35);
  border-radius: 999px;
  position: relative;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: hsl(var(--primary));
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
}

.services,
.contact {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.service-orb-a,
.contact-orb-a {
  width: 50%;
  height: 50%;
  top: 0;
  right: 0;
  background: hsl(var(--primary) / .05);
}

.service-orb-b,
.contact-orb-b {
  width: 34%;
  height: 34%;
  left: 0;
  bottom: 0;
  background: hsl(var(--accent) / .06);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.about-copy h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  margin: 16px 0 24px;
}

.section-heading p {
  max-width: 650px;
  margin-inline: auto;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / .8), transparent);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.service-card:hover {
  transform: scale(1.02);
  border-color: hsl(var(--primary) / .45);
  box-shadow: 0 0 60px hsl(var(--primary) / .2);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card div,
.service-number {
  position: relative;
  z-index: 2;
}

.service-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: hsl(var(--primary) / .22);
  font: 800 54px/1 "Playfair Display", serif;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.service-card p {
  min-height: 72px;
  color: hsl(var(--muted));
  font-size: 14px;
  line-height: 1.6;
}

.service-card em {
  display: inline-block;
  margin-top: 18px;
  color: hsl(var(--primary));
  font-style: normal;
  font-weight: 600;
  transform: translateX(-8px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.service-card:hover em {
  transform: translateX(0);
  opacity: 1;
}

.service-note {
  margin-top: 64px;
  text-align: center;
  color: hsl(var(--muted));
}

.service-note a {
  display: inline-block;
  margin-top: 12px;
  color: hsl(var(--primary));
  font-weight: 600;
}

.about {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--card) / .5), hsl(var(--background)));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.about-visual {
  position: relative;
}

.image-frame.square img {
  aspect-ratio: 1;
}

.corner {
  position: absolute;
  border: 1px solid hsl(var(--primary) / .3);
  border-radius: 18px;
}

.corner-a {
  width: 96px;
  height: 96px;
  top: -16px;
  left: -16px;
}

.corner-b {
  width: 128px;
  height: 128px;
  right: -16px;
  bottom: -16px;
  opacity: .65;
}

.premium-card {
  position: absolute;
  right: -22px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 16px 24px;
}

.premium-card strong,
.premium-card small {
  display: block;
}

.premium-card small {
  color: hsl(var(--muted));
}

.sonar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: hsl(var(--primary));
  position: relative;
}

.sonar::before,
.sonar::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid hsl(var(--primary) / .35);
  border-radius: inherit;
  animation: sonar 2s ease-out infinite;
}

.sonar::after {
  animation-delay: 1s;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.feature-grid div {
  padding: 18px;
  border-radius: 14px;
  background: hsl(var(--card) / .65);
  transition: background .2s ease;
}

.feature-grid div:hover {
  background: hsl(var(--card));
}

.feature-grid b,
.feature-grid span {
  display: block;
}

.feature-grid b {
  margin-bottom: 6px;
  font-size: 14px;
}

.feature-grid span {
  color: hsl(var(--muted));
  font-size: 12px;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.glass-panel {
  border-radius: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-color: hsl(var(--primary) / .25);
  box-shadow: var(--shadow-glow), 0 25px 50px -12px hsl(220 20% 2% / .8);
}

.instagram-block {
  text-align: center;
  margin-bottom: 40px;
}

.instagram-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 42px;
  background: linear-gradient(135deg, #ec4899, #ef4444, #eab308);
}

.instagram-block h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.instagram-block p {
  color: hsl(var(--muted));
  margin-bottom: 18px;
}

.instagram-block a {
  display: inline-flex;
  border: 1px solid #ec489980;
  border-radius: 999px;
  padding: 12px 24px;
}

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

.contact-grid a {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border-radius: 14px;
  background: hsl(var(--card) / .65);
}

.contact-grid b {
  color: hsl(var(--muted));
  font-size: 12px;
}

.contact-grid span {
  font-size: 14px;
  font-weight: 600;
}

.appointment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.appointment-form label {
  display: grid;
  gap: 8px;
  color: hsl(var(--muted));
  font-size: 13px;
}

.appointment-form label:nth-child(3),
.appointment-form .wide {
  grid-column: 1 / -1;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  color: hsl(var(--foreground));
  background: hsl(var(--background) / .72);
  border: 1px solid hsl(var(--border) / .85);
  border-radius: 14px;
  outline: 0;
  padding: 14px 16px;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: hsl(var(--primary) / .75);
  box-shadow: 0 0 0 3px hsl(var(--primary) / .12);
}

.microcopy {
  margin-top: 16px;
  color: hsl(var(--muted));
  text-align: center;
  font-size: 12px;
}

.trust-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: hsl(var(--muted));
}

.footer {
  background: hsl(var(--card) / .5);
  border-top: 1px solid hsl(var(--border) / .55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 18px;
}

.footer p,
.footer a,
.footer span {
  color: hsl(var(--muted));
  font-size: 14px;
  line-height: 1.7;
}

.footer h4 {
  margin: 0 0 16px;
}

.footer a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: hsl(var(--primary));
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 999px;
  background: hsl(var(--card));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border) / .55);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: hsl(var(--foreground));
  font-size: 24px;
  box-shadow: 0 10px 26px rgb(0 0 0 / .3);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #25d36680;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid hsl(var(--border) / .75);
  border-radius: 999px;
  padding: 0 14px;
  color: hsl(var(--foreground));
  background: hsl(var(--card) / .65);
  backdrop-filter: blur(14px);
}

.globe-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid hsl(var(--primary) / .55);
  border-radius: 999px;
  color: hsl(var(--primary));
  font-size: 17px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  width: 220px;
  display: none;
  padding: 8px;
  border: 1px solid hsl(var(--border) / .75);
  border-radius: 16px;
  background: hsl(var(--background) / .96);
  box-shadow: 0 24px 60px rgb(0 0 0 / .38);
  backdrop-filter: blur(22px);
}

.language-menu.is-open {
  display: grid;
}

.lang-option {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 10px;
  color: hsl(var(--muted));
  background: transparent;
  text-align: left;
}

.lang-option span {
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / .1);
  font-size: 12px;
  font-weight: 800;
}

.lang-option b {
  font-size: 14px;
}

.lang-option.active,
.lang-option:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--primary) / .1);
}

.admin-link {
  color: hsl(var(--primary)) !important;
}

.blog-section {
  position: relative;
  padding: 96px 0;
  background: hsl(var(--card) / .28);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card,
.other-card,
.mini-card,
.procedure-card,
.faq-item {
  border: 1px solid hsl(var(--border) / .65);
  background: linear-gradient(135deg, hsl(var(--card) / .76), hsl(var(--card) / .38));
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -18px hsl(220 20% 2% / .8);
}

.blog-card {
  overflow: hidden;
  border-radius: 18px;
}

.cms-public-card,
.testimonial-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.cms-public-card > img,
.cms-public-card .before-after-mini {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.cms-public-card > img {
  object-fit: cover;
}

.cms-public-card > div:not(.before-after-mini),
.testimonial-card {
  padding: 20px;
}

.cms-public-card span,
.testimonial-card span {
  color: rgba(255,255,255,.62);
}

.cms-public-card p,
.testimonial-card p {
  color: rgba(255,255,255,.72);
}

.before-after-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card strong {
  color: #fbbf24;
  letter-spacing: 2px;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card span,
.post-header span {
  color: hsl(var(--muted));
  font-size: 13px;
}

.blog-card h3 {
  margin: 10px 0;
  font-size: 22px;
}

.blog-card p {
  color: hsl(var(--muted));
  line-height: 1.65;
  min-height: 78px;
}

.blog-card a,
.back-link {
  display: inline-flex;
  margin-top: 18px;
  color: hsl(var(--primary));
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.tag-row small {
  border: 1px solid hsl(var(--primary) / .25);
  border-radius: 999px;
  padding: 5px 10px;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / .06);
}

.subpage {
  min-height: 100vh;
  padding-top: 80px;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.detail-hero.compact {
  min-height: 380px;
}

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

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-bg::after,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background)), hsl(var(--background) / .94), hsl(var(--background) / .65));
}

.detail-hero::before {
  background: radial-gradient(circle at 80% 20%, hsl(var(--primary) / .16), transparent 32%);
}

.breadcrumb,
.detail-title {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: hsl(var(--muted));
  margin-bottom: 32px;
}

.breadcrumb a:hover {
  color: hsl(var(--primary));
}

.detail-title {
  max-width: 760px;
}

.detail-title.centered {
  margin-inline: auto;
  text-align: center;
}

.detail-title > span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / .35);
  background: hsl(var(--primary) / .1);
  font-weight: 800;
  margin-bottom: 20px;
}

.detail-title h1,
.post-header h1,
.admin-top h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

.detail-title p,
.post-header p,
.admin-top p {
  color: hsl(var(--muted));
  font-size: 18px;
  line-height: 1.75;
}

.detail-section {
  padding: 72px 0;
}

.detail-section.alt {
  background: hsl(var(--card) / .3);
}

.detail-section h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 44px);
}

.narrow {
  max-width: 860px;
}

.mini-grid,
.procedure-grid,
.other-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card {
  border-radius: 14px;
  padding: 20px;
  color: hsl(var(--foreground));
}

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

.procedure-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  padding: 24px;
}

.procedure-card > span {
  color: hsl(var(--primary) / .55);
  font-size: 34px;
  font-weight: 800;
}

.procedure-card p,
.faq-item p {
  color: hsl(var(--muted));
  line-height: 1.65;
}

.faq-item {
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
}

.faq-item p {
  padding-bottom: 20px;
}

.cta-band {
  text-align: center;
  background: radial-gradient(circle at 50% 0, hsl(var(--primary) / .16), transparent 48%);
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: hsl(var(--muted));
}

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

.other-card {
  overflow: hidden;
  border-radius: 16px;
}

.other-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.other-card strong,
.other-card span {
  display: block;
  padding: 16px 18px 0;
}

.other-card span {
  padding-top: 8px;
  padding-bottom: 18px;
  color: hsl(var(--primary));
}

.post-article {
  padding-top: 80px;
}

.post-header {
  padding: 80px 0 48px;
  background: radial-gradient(circle at 70% 0, hsl(var(--primary) / .12), transparent 42%);
}

.post-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid hsl(var(--border) / .7);
  margin: 0 0 40px;
}

.post-content {
  color: hsl(var(--muted));
  font-size: 18px;
  line-height: 1.85;
  padding-bottom: 96px;
}

.post-content h2 {
  color: hsl(var(--foreground));
  font-size: 30px;
  margin: 40px 0 12px;
}

.post-content p {
  margin: 0 0 18px;
}

.admin-page {
  min-height: 100vh;
  padding: 112px 16px 64px;
  background:
    radial-gradient(circle at 10% 10%, hsl(var(--primary) / .12), transparent 30%),
    hsl(var(--background));
}

.admin-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-top h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.admin-tabs button {
  border: 1px solid hsl(var(--border) / .75);
  border-radius: 999px;
  padding: 11px 18px;
  color: hsl(var(--muted));
  background: hsl(var(--card) / .55);
}

.admin-tabs button.active,
.admin-tabs button:hover {
  color: hsl(var(--background));
  background: hsl(var(--primary));
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

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

.admin-card,
.admin-note,
.admin-grid label {
  border: 1px solid hsl(var(--border) / .65);
  border-radius: 16px;
  background: hsl(var(--card) / .58);
  padding: 18px;
}

.admin-card {
  margin-bottom: 18px;
}

.admin-card h3 {
  margin-bottom: 16px;
}

.admin-card label,
.admin-grid label {
  display: grid;
  gap: 8px;
  color: hsl(var(--muted));
  font-size: 13px;
}

.admin-card label {
  border: 0;
  padding: 0;
  background: transparent;
  margin-bottom: 12px;
}

.admin-grid .wide {
  grid-column: 1 / -1;
}

.admin-page input,
.admin-page textarea,
.admin-page select {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 12px 14px;
  color: hsl(var(--foreground));
  background: hsl(var(--background) / .75);
  outline: 0;
}

.admin-page textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-note {
  color: hsl(var(--muted));
  line-height: 1.7;
  margin-bottom: 18px;
}

.admin-page {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
  padding: 0;
  color: #f8fafc;
  background: #0b0f17;
}

.wp-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 14px;
  border-right: 1px solid rgb(148 163 184 / .14);
  background: linear-gradient(180deg, #121826, #0d111b);
}

.wp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 22px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgb(148 163 184 / .14);
  font-weight: 800;
}

.wp-brand img {
  height: 34px;
}

.wp-sidebar button {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  color: #94a3b8;
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.wp-sidebar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 14px;
  color: #94a3b8;
  font-weight: 700;
}

.wp-sidebar a.active,
.wp-sidebar a:hover {
  color: #061018;
  background: hsl(var(--primary));
}

.row-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.row-actions a,
.row-actions button {
  border: 0;
  padding: 0;
  color: hsl(var(--primary));
  background: transparent;
  font-weight: 700;
}

.row-actions button {
  color: #fb7185;
}

.admin-actions form {
  margin: 0;
}

.wp-sidebar button::before {
  display: inline-block;
  width: 24px;
  margin-right: 8px;
  color: currentColor;
  opacity: .9;
}

.wp-sidebar button[data-tab="dashboard"]::before { content: "⌂"; }
.wp-sidebar button[data-tab="home"]::before { content: "◆"; }
.wp-sidebar button[data-tab="services"]::before { content: "✚"; }
.wp-sidebar button[data-tab="blog"]::before { content: "✎"; }
.wp-sidebar button[data-tab="settings"]::before { content: "⚙"; }
.wp-sidebar button[data-tab="data"]::before { content: "{}"; font-size: 11px; }

.wp-sidebar button.active,
.wp-sidebar button:hover {
  color: #061018;
  background: hsl(var(--primary));
}

.wp-admin {
  min-width: 0;
}

.wp-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  border-bottom: 1px solid rgb(148 163 184 / .14);
  background: rgb(15 23 42 / .88);
  backdrop-filter: blur(18px);
}

.wp-topbar strong,
.wp-topbar span {
  display: block;
}

.wp-topbar span {
  color: #94a3b8;
  font-size: 13px;
  margin-top: 2px;
}

.wp-content {
  padding: 28px;
}

.wp-panel-title {
  margin-bottom: 22px;
}

.wp-panel-title.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wp-panel-title h2,
.welcome-panel h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.wp-panel-title p,
.welcome-panel p {
  color: #94a3b8;
  margin: 0;
}

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

.dashboard-card,
.welcome-panel,
.admin-editor-card,
.publish-box,
.seo-box,
.post-list,
.wp-editor-main {
  border: 1px solid rgb(148 163 184 / .14);
  border-radius: 14px;
  background: #111827;
  box-shadow: 0 20px 40px rgb(0 0 0 / .24);
}

.dashboard-card {
  padding: 22px;
}

.dashboard-card span {
  color: #94a3b8;
}

.dashboard-card strong {
  display: block;
  margin: 8px 0;
  font-size: 44px;
  color: hsl(var(--primary));
}

.dashboard-card p {
  color: #94a3b8;
}

.welcome-panel {
  padding: 28px;
}

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

.admin-field-grid .wide {
  grid-column: 1 / -1;
}

.admin-page label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
}

.admin-page input,
.admin-page textarea,
.admin-page select {
  width: 100%;
  border: 1px solid rgb(148 163 184 / .22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #f8fafc;
  background: #0b1220;
  outline: 0;
}

.admin-page input:focus,
.admin-page textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / .13);
}

.admin-editor-card {
  padding: 20px;
  margin-bottom: 18px;
}

.service-edit-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
}

.service-edit-panel.active {
  display: grid;
}

.editor-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.editor-card-head > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / .1);
  font-weight: 800;
}

.editor-card-head h3,
.editor-card-head p {
  margin: 0;
}

.editor-card-head p {
  color: #94a3b8;
  font-size: 13px;
}

.wp-post-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 20px;
}

.post-list {
  padding: 10px;
  align-self: start;
}

.admin-list-item {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px;
  color: #cbd5e1;
  background: transparent;
  text-align: left;
}

.admin-list-item + .admin-list-item {
  margin-top: 6px;
}

.admin-list-item strong,
.admin-list-item span {
  display: block;
}

.admin-list-item span {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 4px;
}

.admin-list-item.active,
.admin-list-item:hover {
  background: hsl(var(--primary) / .12);
}

.post-edit-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
}

.post-edit-panel.active {
  display: grid;
}

.wp-editor-main,
.publish-box,
.seo-box {
  padding: 18px;
}

.post-title-input {
  min-height: 58px;
  font-size: 28px;
  font-weight: 800;
}

.post-title-input.compact {
  min-height: 50px;
  font-size: 24px;
}

.post-slug-input,
.post-excerpt-input {
  margin-top: 12px;
}

.post-excerpt-input {
  min-height: 92px;
}

.editor-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
  padding: 10px;
  border: 1px solid rgb(148 163 184 / .14);
  border-radius: 10px;
  background: #0b1220;
}

.editor-toolbar button {
  border: 1px solid rgb(148 163 184 / .22);
  border-radius: 8px;
  padding: 8px 12px;
  color: #cbd5e1;
  background: #111827;
}

.editor-toolbar button:hover {
  color: #061018;
  background: hsl(var(--primary));
}

.post-content-editor {
  min-height: 520px;
  line-height: 1.75;
}

.post-content-editor.compact {
  min-height: 260px;
}

.publish-box h3,
.seo-box h3 {
  margin: 0 0 16px;
}

.publish-box label,
.seo-box label {
  margin-bottom: 12px;
}

.seo-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  color: #cbd5e1;
  background: hsl(var(--primary) / .1);
}

.seo-score b {
  color: hsl(var(--primary));
}

.seo-box p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 13px;
}

.admin-json {
  min-height: 560px;
  font-family: Consolas, monospace;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 10%, hsl(var(--primary) / .18), transparent 34%),
    radial-gradient(circle at 80% 80%, hsl(var(--accent) / .14), transparent 32%),
    #0b0f17;
}

.admin-login-card {
  width: min(460px, 100%);
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgb(148 163 184 / .16);
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 30px 90px rgb(0 0 0 / .42);
}

.admin-login-card img {
  height: 42px;
}

.admin-login-card > span {
  color: hsl(var(--primary));
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.admin-login-card h1 {
  margin: 0;
  font-size: 38px;
}

.admin-login-card p,
.admin-login-card small {
  color: #94a3b8;
  line-height: 1.65;
}

.admin-login-card small {
  min-height: 20px;
  color: #fb7185;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .detail-title.centered {
  text-align: center;
}

html[dir="rtl"] .nav-links {
  direction: rtl;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

@keyframes pulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@keyframes sonar {
  to { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 1100px) {
  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid,
  .procedure-grid,
  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .admin-page {
    grid-template-columns: 86px 1fr;
  }

  .wp-brand span,
  .wp-sidebar button {
    font-size: 0;
  }

  .wp-sidebar button::first-letter {
    font-size: 16px;
  }

  .post-edit-panel,
  .wp-post-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    order: 1;
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.is-open {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    top: 80px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border: 1px solid hsl(var(--border));
    border-radius: 18px;
    background: hsl(var(--background) / .96);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open a {
    padding: 14px 12px;
  }

  .hero {
    padding-top: 108px;
  }

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

  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .wp-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1400px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .service-grid,
  .contact-grid,
  .feature-grid,
  .appointment-form,
  .footer-grid,
  .blog-grid,
  .procedure-grid,
  .other-grid,
  .mini-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .appointment-form label:nth-child(3),
  .appointment-form .wide {
    grid-column: auto;
  }

  .floating-card {
    transform: scale(.86);
  }

  .satisfaction {
    left: 8px;
  }

  .experience {
    right: 8px;
  }

  .premium-card {
    right: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .admin-page {
    display: block;
  }

  .wp-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
  }

  .wp-sidebar button,
  .wp-brand span {
    font-size: 13px;
    white-space: nowrap;
  }

  .wp-content {
    padding: 16px;
  }

  .dashboard-grid,
  .admin-field-grid {
    grid-template-columns: 1fr;
  }

  .post-title-input {
    font-size: 22px;
  }
}

/* Laravel polish layer */
.navbar,
.wp-topbar,
.wp-sidebar {
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  min-width: 0;
}

.logo-link {
  flex: 0 0 auto;
}

.nav-links {
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 10px;
}

.language-menu.open,
.language-menu.is-open {
  display: grid;
}

.nav-links.open,
.nav-links.is-open {
  display: flex;
}

.admin-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Outfit", Arial, sans-serif;
  background:
    linear-gradient(180deg, #f6f7f9 0%, #eef1f5 100%);
  color: #1d2327;
}

.wp-sidebar {
  z-index: 30;
  border-right: 1px solid #dcdcde;
  background: #1d2327;
  color: #f0f0f1;
  box-shadow: none;
}

.wp-brand {
  min-height: 64px;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / .1);
}

.wp-brand span {
  line-height: 1.15;
}

.wp-sidebar a {
  position: relative;
  min-width: 0;
  gap: 12px;
  color: #c3c4c7;
  border-radius: 4px;
  white-space: nowrap;
}

.wp-sidebar a::before {
  width: 24px;
  flex: 0 0 24px;
  color: currentColor;
  text-align: center;
}

.wp-sidebar a:nth-of-type(1)::before { content: "⌂"; }
.wp-sidebar a:nth-of-type(2)::before { content: "◆"; }
.wp-sidebar a:nth-of-type(3)::before { content: "+"; }
.wp-sidebar a:nth-of-type(4)::before { content: "✎"; }
.wp-sidebar a:nth-of-type(5)::before { content: "⚙"; }

.wp-sidebar a.active,
.wp-sidebar a:hover {
  color: #fff;
  background: #2271b1;
}

.wp-admin {
  min-width: 0;
  background: #f0f0f1;
}

.wp-topbar {
  min-width: 0;
  color: #1d2327;
  border-bottom: 1px solid #dcdcde;
  background: rgb(255 255 255 / .92);
  box-shadow: 0 1px 2px rgb(0 0 0 / .04);
}

.wp-topbar span,
.wp-panel-title p,
.welcome-panel p,
.dashboard-card p,
.dashboard-card span,
.admin-list-item span,
.editor-card-head p {
  color: #646970;
}

.wp-content {
  width: min(100%, 1280px);
  padding: 32px;
}

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

.dashboard-card,
.welcome-panel,
.admin-editor-card,
.publish-box,
.seo-box,
.post-list,
.wp-editor-main {
  color: #1d2327;
  border: 1px solid #dcdcde;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / .04);
}

.dashboard-card strong {
  color: #2271b1;
}

.wp-panel-title.split,
.admin-actions {
  flex-wrap: wrap;
}

.wp-panel-title h2,
.welcome-panel h1 {
  color: #1d2327;
  font-size: clamp(28px, 3vw, 38px);
}

.post-edit-panel.active,
.service-edit-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  align-items: start;
}

.wp-editor-main,
.wp-editor-side,
.publish-box,
.seo-box {
  min-width: 0;
}

.wp-editor-side {
  display: grid;
  gap: 16px;
}

.publish-box,
.seo-box {
  display: grid;
  gap: 14px;
}

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

.admin-page label {
  min-width: 0;
  color: #1d2327;
}

.admin-page input,
.admin-page textarea,
.admin-page select {
  min-width: 0;
  max-width: 100%;
  color: #1d2327;
  border-color: #c3c4c7;
  border-radius: 4px;
  background: #fff;
}

.admin-page input:focus,
.admin-page textarea:focus,
.admin-page select:focus {
  border-color: #2271b1;
  box-shadow: 0 0 0 2px rgb(34 113 177 / .18);
}

.post-title-input {
  min-height: 62px;
  border: 0 !important;
  border-bottom: 1px solid #dcdcde !important;
  border-radius: 0 !important;
  padding-inline: 0 !important;
  font-size: clamp(26px, 3vw, 38px);
  box-shadow: none !important;
}

.post-slug-input,
.post-excerpt-input,
.post-content-editor {
  margin-top: 14px;
}

.post-content-editor {
  min-height: 360px;
}

.post-content-editor.compact {
  min-height: 220px;
}

.admin-list-item {
  color: #1d2327;
  border-radius: 4px;
}

.admin-list-item:hover,
.admin-list-item.active {
  background: #f0f6fc;
}

.row-actions {
  align-items: center;
  flex-wrap: wrap;
}

.row-actions form {
  margin: 0;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 10%, rgb(34 113 177 / .18), transparent 28%),
    linear-gradient(135deg, #f6f7f9, #dfe5ec);
}

.admin-login-card {
  width: min(100%, 440px);
  display: grid;
  gap: 16px;
  padding: 34px;
  color: #1d2327;
  border: 1px solid #dcdcde;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgb(0 0 0 / .16);
}

.admin-login-card h1,
.admin-login-card p {
  margin: 0;
}

.admin-login-card > span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2271b1;
  background: #f0f6fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-login-card p,
.admin-login-card small {
  color: #646970;
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.admin-login-card input {
  width: 100%;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  padding: 12px 13px;
}

.btn.primary {
  background: #2271b1;
  color: #fff;
}

.btn.outline {
  color: #2271b1;
  border-color: #c3c4c7;
  background: #fff;
}

.btn.wide {
  width: 100%;
}

@media (max-width: 1180px) {
  .nav-inner {
    gap: 14px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 1100px) {
  .admin-page {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .wp-sidebar {
    padding-inline: 10px;
  }

  .wp-brand {
    justify-content: center;
    padding-inline: 0;
  }

  .wp-brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .wp-sidebar a {
    justify-content: center;
    padding-inline: 0;
    font-size: 0;
  }

  .wp-sidebar a::before {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .post-edit-panel.active,
  .service-edit-panel.active,
  .admin-field-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .wp-content {
    padding: 22px;
  }
}

@media (max-width: 820px) {
  .nav-links.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .admin-page {
    display: block;
  }

  .wp-sidebar {
    position: sticky;
    top: 0;
    height: auto;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    padding: 10px;
  }

  .wp-brand {
    min-width: 54px;
    min-height: 44px;
    margin: 0;
    border: 0;
  }

  .wp-sidebar a {
    min-width: 48px;
    min-height: 44px;
    flex: 0 0 auto;
  }

  .wp-topbar {
    position: static;
    padding: 16px;
  }

  .wp-content {
    padding: 16px;
  }

  .admin-login-card {
    padding: 24px;
  }
}
