:root {
  --primary: #10243e;
  --gold: #c1a061;
  --cream: #f7f2ea;
  --text: #2f3338;
  --muted: #6f7780;
  --white: #ffffff;
  --line: rgba(16, 36, 62, 0.12);
  --shadow: 0 24px 70px rgba(16, 36, 62, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf7 0%, var(--cream) 54%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(193, 160, 97, 0.2);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 16px 40px rgba(16, 36, 62, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-image {
  display: block;
  width: clamp(150px, 15vw, 190px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.footer-logo-img {
  width: 188px;
  filter: brightness(0) invert(1);
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.logo strong {
  display: block;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin-top: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  color: var(--primary);
  transition: color 0.2s ease;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(16, 36, 62, 0.18);
}

.main-nav a.nav-cta,
.main-nav a.nav-cta:hover,
.main-nav a.nav-cta.active {
  color: #fff;
}

.btn-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(193, 160, 97, 0.35);
}

.btn-light {
  color: var(--primary);
  background: #fff;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 36, 62, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(16, 36, 62, 0.14);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px) 80px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 22%;
  bottom: 36px;
  width: 54vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: rotate(-8deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 94px);
}

.hero p {
  max-width: 610px;
  color: #3f4650;
  font-size: clamp(17px, 1.8vw, 20px);
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 8% -7% -4% 10%;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(193, 160, 97, 0.28), rgba(255, 255, 255, 0.74));
  border-radius: 46% 54% 38% 62%;
}

.hero-media img {
  width: 100%;
  min-height: 460px;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 8px 42%;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  bottom: 24px;
  left: -22px;
  min-width: 168px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(193, 160, 97, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  display: block;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.hero-card span {
  color: var(--muted);
  font-size: 13px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: -36px auto 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.feature-card {
  padding: 10px 22px;
  text-align: center;
  border-right: 1px solid rgba(16, 36, 62, 0.1);
}

.feature-card:last-child {
  border-right: 0;
}

.line-icon,
.service-card span,
.service-list span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(193, 160, 97, 0.72);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.feature-card h3,
.service-card h3,
.process-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-top: 16px;
  text-transform: uppercase;
}

.feature-card p,
.service-card p,
.process-card p,
.blog-card p,
.testimonial-grid p,
.service-list p,
.treatment-grid p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.section {
  padding: clamp(70px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

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

.section-heading h2,
.page-hero h1,
.cta-band h2 {
  font-size: clamp(34px, 4.8vw, 58px);
}

.section-heading p {
  color: var(--muted);
  margin-top: 16px;
}

.section-heading.compact {
  margin: 0 0 24px;
  text-align: left;
}

.section-heading.compact h2 {
  font-size: clamp(28px, 3vw, 38px);
}

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

.process-card {
  position: relative;
  padding: 0 0 22px;
  overflow: visible;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 36, 62, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-card:hover,
.service-card:hover,
.blog-card:hover,
.treatment-grid article:hover,
.service-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(16, 36, 62, 0.14);
}

.process-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.step {
  position: absolute;
  top: -16px;
  left: -14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: #fff;
  background: linear-gradient(180deg, #cdb06f, #b7954e);
  border-radius: 50%;
  border: 4px solid #f9f8f5;
  box-shadow: 0 10px 22px rgba(116, 88, 37, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.process-card p {
  padding: 0 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(70px, 8vw, 116px);
}

.panel {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 52px rgba(16, 36, 62, 0.08);
}

.comparison {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #ddd;
  border-radius: var(--radius);
  --comparison-position: 50%;
}

.comparison img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.before-img {
  filter: saturate(0.75) sepia(0.18) brightness(0.88);
}

.after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--comparison-position));
}

.after-img img {
  width: 100%;
  height: 100%;
  filter: saturate(1.08) brightness(1.08);
}

.comparison input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  z-index: 3;
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}

.handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--primary);
  content: "↔";
  background: #fff;
  border: 3px solid rgba(193, 160, 97, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.label {
  position: absolute;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.label.before {
  left: 18px;
}

.label.after {
  right: 18px;
}

.benefits-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: end;
}

.benefits-panel img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 8px 8px 28% 8px;
}

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

.check-list li {
  position: relative;
  padding-left: 36px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: var(--gold);
  border-radius: 50%;
  font-size: 13px;
}

.soft-band {
  background: rgba(255, 255, 255, 0.52);
}

.card-grid,
.testimonial-grid,
.blog-grid,
.team-grid,
.treatment-grid {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.testimonial-grid article,
.blog-card,
.team-grid article,
.treatment-grid article,
.service-list article,
.faq-list details {
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 36, 62, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.gallery-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 36, 62, 0.12);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(16, 36, 62, 0.7));
}

.gallery-grid figure:hover img {
  opacity: 0.82;
  transform: scale(1.05);
}

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

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--primary);
  margin-top: 22px;
}

.testimonial-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

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

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

.blog-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  margin-top: 14px;
}

.blog-card a,
.service-list a {
  display: inline-flex;
  color: var(--primary);
  font-weight: 800;
  margin-top: 18px;
}

.blog-hero {
  background: linear-gradient(135deg, rgba(247, 242, 234, 0.98), rgba(255, 255, 255, 0.88)), url("../blog/img/blog-klinik-planlama.jpg") center/cover;
}

.blog-list-section {
  background: linear-gradient(180deg, #fff, #f8f6f2);
}

.premium-blog-grid {
  max-width: 1180px;
  margin: 0 auto;
}

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

.blog-card-image {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 760px;
  overflow: hidden;
  padding: 0;
}

.blog-card.blog-card-image {
  padding: 0;
}

.blog-card-image > a {
  display: block;
  margin: 0;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  aspect-ratio: 16 / 18;
  min-height: 520px;
  filter: saturate(1.03) contrast(1.02);
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.blog-card-image:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.blog-card-image > div {
  padding: 26px;
}

.popular-blog-grid .blog-card-image {
  min-height: 560px;
}

.popular-blog-grid .blog-card-image img {
  aspect-ratio: 16 / 13;
  min-height: 310px;
}

.blog-detail {
  background: linear-gradient(180deg, #fbfaf7, #fff);
}

.blog-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.blog-detail-hero .eyebrow,
.blog-detail-hero h1,
.blog-detail-hero p {
  grid-column: 1;
}

.blog-detail-hero img {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.blog-detail-hero h1 {
  font-size: clamp(40px, 5.4vw, 76px);
}

.blog-detail-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  margin-top: 22px;
}

.blog-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px) clamp(70px, 8vw, 116px);
}

.blog-content p {
  color: var(--text);
  font-size: 18px;
  margin-top: 18px;
}

.blog-content ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 18px;
}

.blog-content li::marker {
  color: var(--gold);
}

.blog-content .blog-note {
  padding: 24px;
  margin-top: 30px;
  color: var(--primary);
  background: rgba(247, 242, 234, 0.78);
  border: 1px solid rgba(193, 160, 97, 0.28);
  border-radius: 8px;
  font-weight: 700;
}

.blog-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 34px;
}

.blog-content .btn {
  margin-top: 34px;
}

.blog-content .btn + .btn {
  margin-left: 12px;
}

.popular-blogs-section {
  padding-top: clamp(24px, 4vw, 48px);
  background: linear-gradient(180deg, #fff, rgba(247, 242, 234, 0.65));
}

.popular-blogs-section .section-heading {
  margin-bottom: 30px;
}

.popular-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(60px, 7vw, 100px);
  padding: clamp(38px, 6vw, 70px);
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 20% 20%, rgba(193, 160, 97, 0.26), transparent 34%), var(--primary);
  border-radius: 44px 8px 44px 8px;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  margin: 14px auto 26px;
}

.site-footer {
  padding: 58px clamp(20px, 5vw, 72px) 24px;
  background: #0d1e34;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 34px;
}

.footer-logo strong,
.site-footer h3 {
  color: #fff;
}

.site-footer h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0;
}

.site-footer strong {
  color: #fff;
}

.whatsapp-branches {
  position: fixed;
  right: 39px;
  bottom: 55px;
  z-index: 70;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.whatsapp-branch {
  display: grid;
  justify-items: center;
  width: 60px;
  color: #000;
  font-size: 12px;
  line-height: 1.2;
}

.whatsapp-branch-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  transition: box-shadow 0.2s ease;
}

.whatsapp-branch:hover .whatsapp-branch-icon,
.whatsapp-branch:focus-visible .whatsapp-branch-icon {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.32);
}

.whatsapp-branch-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-branch-name {
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  text-align: center;
}

.page-hero {
  padding: clamp(74px, 9vw, 132px) clamp(20px, 5vw, 72px) clamp(46px, 6vw, 78px);
  text-align: center;
  background: linear-gradient(135deg, rgba(247, 242, 234, 0.96), rgba(255, 255, 255, 0.86));
}

.page-hero h1 {
  max-width: 940px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  margin: 22px auto 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.two-col h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
}

.two-col p + p {
  margin-top: 16px;
}

.rounded-image {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.real-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.team-grid .team-doctor-card {
  overflow: hidden;
  padding: 0;
  box-shadow: 0 14px 34px rgba(16, 36, 62, 0.06);
}

.team-doctor-card .doctor-photo img {
  aspect-ratio: 1 / 0.82;
}

.team-doctor-card > div {
  padding: 18px 20px 22px;
}

.team-doctor-card span {
  display: inline-flex;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-doctor-card h3 {
  font-size: 23px;
  margin-top: 10px;
}

.team-doctor-card p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.team-doctor-card a:not(.doctor-photo) {
  display: inline-flex;
  color: var(--primary);
  font-weight: 800;
  margin-top: 14px;
}

.avatar {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--primary);
  background: var(--cream);
  border: 1px solid rgba(193, 160, 97, 0.35);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin-bottom: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-list h2,
.treatment-grid h2 {
  font-size: 28px;
  margin-top: 20px;
}

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

.treatment-index article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.treatment-index article > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(193, 160, 97, 0.72);
  border-radius: 50%;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.treatment-index a {
  display: inline-flex;
  color: var(--primary);
  font-weight: 850;
  margin-top: auto;
  padding-top: 18px;
}

.treatment-detail-list {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.treatment-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 36, 62, 0.07);
  scroll-margin-top: 96px;
}

.treatment-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.treatment-label::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.treatment-detail-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-top: 14px;
}

.treatment-detail-card h3 {
  color: var(--primary);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.treatment-detail-card p {
  color: var(--muted);
  margin-top: 16px;
}

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

.treatment-points li {
  position: relative;
  color: #3f4650;
  font-size: 15px;
  line-height: 1.55;
  padding-left: 26px;
}

.treatment-points li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.treatment-note {
  padding: 16px 18px;
  color: var(--primary) !important;
  background: rgba(247, 242, 234, 0.8);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list summary {
  color: var(--primary);
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-info,
.contact-form {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.contact-info h2 {
  margin-bottom: 2px;
}

.contact-info p {
  margin: 14px 0;
}

.contact-info strong {
  display: block;
  color: var(--primary);
}

.contact-branch-grid {
  display: grid;
  gap: 16px;
}

.contact-branch-card,
.contact-mail-card {
  padding: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 36, 62, 0.09);
  overflow-wrap: anywhere;
}

.contact-card-head,
.contact-link,
.contact-mail-card {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-card-head {
  margin-bottom: 14px;
}

.contact-card-head span,
.contact-mail-card strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card-head h3 {
  margin: 3px 0 0;
  color: var(--primary);
  font-size: 24px;
}

.contact-branch-card p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--primary);
  background: rgba(193, 160, 97, 0.16);
  border: 1px solid rgba(193, 160, 97, 0.28);
  border-radius: 50%;
}

.contact-icon.small {
  width: 34px;
  height: 34px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon.small svg {
  width: 17px;
  height: 17px;
}

.contact-link,
.contact-mail-card {
  margin-top: 16px;
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-mail-card {
  margin-top: 0;
}

.contact-link:hover,
.contact-mail-card:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.contact-mail-card > span:last-child {
  display: grid;
  gap: 3px;
}

.map-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(193, 160, 97, 0.22), rgba(16, 36, 62, 0.08)), var(--cream);
  border: 1px solid rgba(193, 160, 97, 0.3);
  border-radius: var(--radius);
  font-weight: 800;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(16, 36, 62, 0.14);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(193, 160, 97, 0.14);
}

.contact-form .field-error {
  border-color: #b42318;
}

.form-message {
  color: var(--primary);
  font-weight: 800;
  min-height: 24px;
}

.doctors-hero {
  position: relative;
  padding: clamp(78px, 9vw, 130px) clamp(20px, 5vw, 72px) clamp(56px, 6vw, 90px);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, rgba(247, 242, 234, 0.98), rgba(255, 255, 255, 0.88)), url("../assets/img/clinic-consultation.jpg") center/cover;
}

.doctors-hero::after {
  position: absolute;
  right: 8%;
  bottom: -70px;
  width: 360px;
  height: 180px;
  content: "";
  border-top: 3px solid rgba(193, 160, 97, 0.48);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.doctors-hero h1 {
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.doctors-hero p {
  width: 100%;
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.breadcrumb span::before {
  margin-right: 10px;
  color: rgba(16, 36, 62, 0.35);
  content: "/";
}

.doctors-section {
  padding-top: clamp(46px, 5vw, 74px);
  background: linear-gradient(180deg, #fff, #f8f6f2);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.doctor-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(16, 36, 62, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(16, 36, 62, 0.14);
}

.doctor-photo {
  display: block;
  overflow: hidden;
  background: var(--cream);
}

.doctor-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.doctor-card:hover .doctor-photo img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.doctor-card-body {
  padding: 24px 24px 28px;
  text-align: center;
}

.doctor-card-body span,
.doctor-meta {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.doctor-card-body h2 {
  font-size: 27px;
  margin-top: 12px;
}

.doctor-card-body p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.doctor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  margin-top: 20px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doctor-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 36, 62, 0.18);
}

.doctor-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, rgba(247, 242, 234, 0.96), #fff);
}

.doctor-detail-hero h1 {
  font-size: clamp(42px, 5.4vw, 76px);
}

.doctor-detail-hero p {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  margin: 22px 0 28px;
}

.doctor-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.doctor-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.doctor-detail-grid article {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 36, 62, 0.07);
}

.doctor-detail-grid h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 16px;
}

.doctor-detail-grid p {
  color: var(--muted);
}

.doctor-contact-section {
  padding-top: clamp(34px, 5vw, 68px);
  padding-bottom: clamp(34px, 5vw, 68px);
  background: rgba(247, 242, 234, 0.78);
}

.doctor-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.doctor-contact-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px 28px;
  color: #fff;
  background: #089bd8;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(8, 155, 216, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.doctor-contact-card:hover {
  background: #078fca;
  box-shadow: 0 24px 52px rgba(8, 155, 216, 0.3);
  transform: translateY(-3px);
}

.doctor-contact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 31px;
  line-height: 1;
}

.doctor-contact-card strong,
.doctor-contact-card small {
  display: block;
  color: #fff;
}

.doctor-contact-card strong {
  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
}

.doctor-contact-card small {
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
  margin-top: 6px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 12px;
    font-size: 13px;
  }

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

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

  .feature-card {
    border-right: 0;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    padding: 96px 28px 36px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(16, 36, 62, 0.14);
    transform: translateX(100%);
    transition: transform 0.24s ease;
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    border-bottom: 1px solid rgba(16, 36, 62, 0.08);
    font-size: 17px;
    text-align: center;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav a.nav-cta {
    justify-content: center;
    max-width: 280px;
    margin-top: 18px;
    border-bottom: 0;
  }

  .hero,
  .split-section,
  .two-col,
  .blog-detail-hero,
  .doctor-detail-hero,
  .doctor-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    min-height: 360px;
  }

  .feature-strip,
  .card-grid.six,
  .card-grid.four,
  .testimonial-grid,
  .blog-grid,
  .blog-grid.list,
  .doctor-contact-grid,
  .team-grid,
  .doctors-grid,
  .treatment-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .benefits-panel {
    grid-template-columns: 1fr;
  }

  .treatment-detail-card {
    grid-template-columns: 1fr;
  }

  .benefits-panel img {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .logo strong {
    font-size: 17px;
  }

  .logo small {
    font-size: 9px;
  }

  .hero {
    padding: 42px 18px 62px;
  }

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

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .doctors-hero {
    padding: 62px 18px 48px;
  }

  .doctors-hero h1 {
    font-size: clamp(27px, 7.5vw, 32px);
    letter-spacing: 0.02em;
  }

  .doctors-hero p {
    font-size: 16px;
  }

  .blog-detail-hero {
    padding: 46px 18px;
  }

  .blog-detail-hero .eyebrow,
  .blog-detail-hero h1,
  .blog-detail-hero p,
  .blog-detail-hero img {
    grid-column: 1;
    grid-row: auto;
  }

  .blog-detail-hero h1 {
    font-size: 35px;
  }

  .blog-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .blog-content p {
    font-size: 16px;
  }

  .blog-content ul {
    font-size: 16px;
  }

  .blog-content .btn {
    width: 100%;
  }

  .blog-content .btn + .btn {
    margin-top: 12px;
    margin-left: 0;
  }

  .doctor-contact-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    min-height: 84px;
  }

  .doctor-contact-icon {
    width: 48px;
    height: 48px;
    border-width: 3px;
    font-size: 25px;
  }

  .doctor-contact-card strong {
    font-size: 18px;
  }

  .doctor-contact-card small {
    font-size: 16px;
  }

  .hero-card {
    right: 14px;
    left: auto;
    bottom: 14px;
  }

  .feature-strip,
  .process-grid,
  .card-grid.six,
  .card-grid.four,
  .testimonial-grid,
  .blog-grid,
  .blog-grid.list,
  .doctor-contact-grid,
  .gallery-grid,
  .gallery-grid.large,
  .team-grid,
  .doctors-grid,
  .treatment-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    width: calc(100% - 28px);
    padding: 20px;
    margin-top: -20px;
    border-radius: 18px;
  }

  .feature-card {
    padding: 18px 8px;
    border-bottom: 1px solid rgba(16, 36, 62, 0.08);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .section,
  .split-section,
  .page-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .panel,
  .service-card,
  .testimonial-grid article,
  .blog-card,
  .doctor-contact-card,
  .team-grid article,
  .treatment-grid article,
  .service-list article,
  .contact-info,
  .contact-form {
    padding: 22px;
  }

  .cta-band {
    width: calc(100% - 28px);
    border-radius: 28px 8px 28px 8px;
  }

  .footer-grid {
    gap: 18px;
  }
}

.poster-page {
  min-height: 100vh;
  background: #f9f8f5;
}

.poster-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f8f5 0%, #fff 28%, #f8f6f2 100%);
  box-shadow: none;
}

.poster-hero {
  position: relative;
  display: grid;
  grid-template-columns: 49% 51%;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(90deg, #f8f7f3 0%, #fff 55%, #f7f0e8 100%);
}

.home-hero {
  min-height: calc(100vh - 82px);
}

.home-hero .poster-hero-image,
.home-hero .poster-hero-image img {
  min-height: calc(100vh - 82px);
}

.poster-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px clamp(28px, 5vw, 96px) 86px clamp(32px, 7vw, 120px);
}

.poster-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 58px;
}

.poster-logo-image {
  width: clamp(190px, 18vw, 250px);
  height: auto;
  object-fit: contain;
}

.tooth-mark {
  display: grid;
  width: 54px;
  height: 62px;
  place-items: center;
  color: var(--gold);
}

.tooth-mark svg {
  width: 44px;
  height: 56px;
}

.poster-logo strong {
  display: block;
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.poster-logo small {
  display: block;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 8px;
  text-transform: uppercase;
}

.poster-copy h1 {
  color: var(--primary);
  font-size: clamp(48px, 4.8vw, 58px);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.poster-copy h1 span,
.poster-copy h1 small {
  display: block;
}

.poster-copy h1 small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.45vw, 31px);
  font-weight: 500;
  letter-spacing: 0.035em;
  margin-top: 8px;
}

.poster-copy p {
  max-width: 460px;
  color: #1f2933;
  font-size: 18px;
  line-height: 1.65;
  margin-top: 34px;
}

.poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.poster-actions a,
.poster-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.poster-actions a:first-child {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(16, 36, 62, 0.16);
}

.poster-actions a:last-child {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(193, 160, 97, 0.42);
}

.poster-actions a:hover,
.poster-cta a:hover,
.poster-services a:hover {
  transform: translateY(-2px);
}

.poster-hero-image {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  isolation: isolate;
}

.poster-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: 52% 44%;
  filter: saturate(1.03) contrast(1.03) brightness(1.01);
}

.poster-hero-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 30%), linear-gradient(0deg, rgba(16, 36, 62, 0.06), transparent 34%);
}

.gold-swoosh {
  position: absolute;
  right: 37%;
  bottom: -18px;
  z-index: 3;
  width: 440px;
  height: 140px;
  border-top: 5px solid rgba(193, 160, 97, 0.86);
  border-radius: 50% 50% 0 0;
  transform: rotate(-14deg);
}

@media (min-width: 981px) {
  .poster-copy h1 small {
    white-space: nowrap;
  }
}

.poster-advantages {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1280px, calc(100% - 48px));
  margin: -78px auto 0;
  padding: 34px 22px 38px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(16, 36, 62, 0.08);
}

.poster-advantages article {
  min-height: 190px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid rgba(16, 36, 62, 0.12);
}

.poster-advantages article:last-child {
  border-right: 0;
}

.poster-icon {
  display: grid;
  height: 74px;
  place-items: center;
  color: var(--gold);
}

.poster-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poster-advantages h2,
.poster-process-grid h3 {
  color: #111827;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  margin-top: 18px;
  text-transform: uppercase;
}

.poster-advantages p,
.poster-process-grid p {
  color: #242b33;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.poster-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding: 22px 0 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 246, 242, 0.72));
}

.poster-trust article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(193, 160, 97, 0.22);
}

.poster-trust article:first-child {
  border-radius: 8px 0 0 8px;
}

.poster-trust article:last-child {
  border-radius: 0 8px 8px 0;
}

.poster-trust strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  line-height: 1;
}

.poster-trust span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.poster-process {
  padding: 56px clamp(22px, 4vw, 70px) 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 246, 242, 0.95));
}

.poster-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 auto 26px;
}

.poster-title span {
  height: 1px;
  background: rgba(193, 160, 97, 0.62);
}

.poster-title h2,
.poster-panel h2 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 39px);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.poster-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.poster-process-grid article {
  position: relative;
  padding-bottom: 18px;
  text-align: center;
  overflow: visible;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 36, 62, 0.06);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(16, 36, 62, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-process-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 36, 62, 0.11);
}

.poster-process-grid img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
  transition: filter 0.28s ease;
}

.poster-process-grid article:hover img {
  filter: saturate(1.08);
}

.process-number {
  position: absolute;
  top: -16px;
  left: -14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: #fff;
  background: linear-gradient(180deg, #cdb06f, #b7954e);
  border-radius: 50%;
  border: 4px solid #f9f8f5;
  box-shadow: 0 10px 22px rgba(116, 88, 37, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.poster-process-grid h3 {
  margin-top: 18px;
}

.poster-process-grid p {
  padding: 0 10px;
}

.poster-services {
  display: grid;
  grid-template-columns: 1.65fr repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 16px clamp(22px, 4vw, 70px) 20px;
  background: #f9f8f5;
}

.poster-services div,
.poster-services a {
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 36, 62, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(16, 36, 62, 0.05);
}

.poster-services div {
  background: linear-gradient(135deg, rgba(16, 36, 62, 0.96), rgba(16, 36, 62, 0.86));
}

.poster-services span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poster-services h2 {
  color: #fff;
  font-size: 25px;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.poster-services a {
  display: flex;
  align-items: flex-end;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-services a::before {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 38px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.poster-services a:hover {
  box-shadow: 0 18px 42px rgba(16, 36, 62, 0.12);
}

.poster-bottom {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 16px;
  padding: 18px clamp(22px, 4vw, 70px) 22px;
  background: #f9f8f5;
}

.poster-panel {
  min-height: 315px;
  padding: 28px 18px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 36, 62, 0.05);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16, 36, 62, 0.07);
}

.poster-panel h2 {
  font-size: clamp(24px, 2.35vw, 31px);
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}

.poster-comparison {
  aspect-ratio: 1.9 / 1;
  border-radius: 16px;
}

.poster-benefits {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  padding-right: 0;
  overflow: hidden;
}

.poster-benefits h2 {
  text-align: left;
}

.poster-benefits .check-list {
  gap: 13px;
  font-size: 16px;
}

.poster-benefits img {
  align-self: end;
  width: 100%;
  height: 275px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px 0 20px 8px;
  filter: saturate(1.05) contrast(1.02);
}

.poster-cta {
  position: relative;
  z-index: 1;
  padding: 30px 22px 36px;
  color: #fff;
  text-align: center;
  background: var(--primary);
  overflow: hidden;
}

.poster-cta::before {
  position: absolute;
  top: -90px;
  right: -110px;
  z-index: -1;
  width: 390px;
  height: 220px;
  content: "";
  background: #f9f8f5;
  border-radius: 0 0 0 100%;
}

.poster-cta h2 {
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: 0.06em;
}

.poster-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  margin-top: 10px;
}

.poster-cta a {
  color: var(--primary);
  background: #fff;
  margin-top: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.poster-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px clamp(28px, 5vw, 92px) 30px;
  background: #f9f8f5;
}

.poster-contact a {
  display: inline-grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  color: #1f2933;
  font-size: 15px;
  line-height: 1.35;
}

.poster-contact span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(193, 160, 97, 0.72);
  border-radius: 50%;
  font-size: 18px;
}

@media (max-width: 980px) {
  .poster-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .poster-copy {
    padding: 34px 28px 28px;
  }

  .poster-logo {
    margin-bottom: 38px;
  }

  .poster-hero-image,
  .poster-hero-image img {
    min-height: 430px;
  }

  .gold-swoosh {
    right: 18%;
    bottom: 360px;
  }

  .poster-advantages,
  .poster-process-grid,
  .poster-trust,
  .poster-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-services div {
    grid-column: 1 / -1;
  }

  .poster-advantages article {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 36, 62, 0.1);
    padding: 22px;
  }

  .poster-bottom,
  .poster-benefits {
    grid-template-columns: 1fr;
  }

  .poster-benefits {
    padding-right: 18px;
  }

  .poster-benefits img {
    height: 360px;
    border-radius: 8px;
  }

  .poster-contact {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px;
  }
}

@media (max-width: 620px) {
  .poster-copy {
    padding: 28px 18px 24px;
  }

  .poster-logo {
    gap: 12px;
    margin-bottom: 28px;
  }

  .poster-logo strong {
    font-size: 19px;
  }

  .poster-logo small {
    font-size: 9px;
  }

  .poster-copy h1 {
    font-size: 41px;
  }

  .poster-copy h1 small {
    font-size: 24px;
  }

  .poster-copy p {
    font-size: 16px;
  }

  .gold-swoosh {
    display: none;
  }

  .poster-advantages,
  .poster-process-grid,
  .poster-trust,
  .poster-services,
  .poster-contact {
    grid-template-columns: 1fr;
  }

  .poster-advantages {
    width: calc(100% - 24px);
    margin: -24px auto 0;
    padding: 8px 14px;
  }

  .poster-trust {
    width: calc(100% - 24px);
    padding: 16px 18px 4px;
  }

  .poster-trust article,
  .poster-trust article:first-child,
  .poster-trust article:last-child {
    border-radius: 8px;
  }

  .poster-services {
    padding: 14px 12px 18px;
  }

  .poster-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .poster-title span {
    display: none;
  }

  .poster-bottom {
    padding: 14px 12px 18px;
  }

  .poster-panel {
    padding: 22px 14px;
  }

  .poster-contact {
    gap: 14px;
  }
}
