/* ═══════════════════════════════════════════
   Ulysse Nardin Repair — style.css
   Hero-card layout (TAG Heuer Mini Program style)
   ═══════════════════════════════════════════ */

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

:root {
  --rd-black: #000000;
  --rd-white: #FFFFFF;
  --rd-grey: #808080;
  --rd-grey-light: #BBBBBB;
  --rd-border: #4B4B4B;
  --rd-btn-text: #BEBEBE;
  --font-display: 'Jost', sans-serif;
  --font-body: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--rd-grey);
  background: var(--rd-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── STATUS BAR (simulated) ── */
.rd-statusbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 44px;
  background: var(--rd-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--rd-white);
  font-size: 12px;
  font-weight: 600;
}
.rd-statusbar .sb-time { font-weight: 700; }
.rd-statusbar .sb-icons { display: flex; gap: 6px; align-items: center; }
.rd-statusbar .sb-icons svg { width: 14px; height: 14px; fill: #999999; }

/* ── TOP NAV ── */
.rd-topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 199;
  height: 52px;
  background: var(--rd-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.rd-topnav .nav-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--rd-white);
  letter-spacing: 1px;
}
.rd-topnav .nav-title .gold { color: var(--rd-white); }
.rd-topnav .nav-logo {
  display: block;
  height: 18px;
  width: auto;
}
.rd-topnav .nav-logo img {
  display: block;
  height: 12px;
  width: auto;
}
.rd-topnav .nav-hamburger {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
}
.rd-topnav .nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--rd-white);
  border-radius: 1px;
  opacity: .8;
}

/* ── HERO CARD STACK — one-screen layout ── */
.rd-stack {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 64px; /* footer space */
  display: flex;
  flex-direction: column;
}

.rd-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.rd-card + .rd-card {
  border-top: 1.5px solid rgba(255,255,255,.12);
}

.rd-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rd-card:hover .bg {
  transform: scale(1.05);
}

.rd-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,15,35,.75) 0%, rgba(10,31,63,.25) 50%, transparent 100%);
  pointer-events: none;
}

.rd-card .text {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 23%;
  text-align: center;
  padding: 0 20px;
}

.rd-card .text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--rd-white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.rd-card .text p {
  font-size: clamp(11px, 1.2vw, 13px);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  max-width: 380px;
  font-weight: 300;
  letter-spacing: .3px;
  margin: 0 auto;
}

/* ── Card Background — banner images ── */
.card-1 .bg {
  background: url('images/banner1.jpg') center center / cover no-repeat;
  filter: brightness(.85) saturate(.75);
}
.card-2 .bg {
  background: url('images/banner2.jpg') center center / cover no-repeat;
  filter: brightness(.85) saturate(.75);
}
.card-3 .bg {
  background: url('images/gs2.jpg') center center / cover no-repeat;
  filter: brightness(.85) saturate(.75);
}

/* ── Decorative nautical elements ── */
.rd-card .deco-anchor {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 32px;
  opacity: .08;
  pointer-events: none;
  z-index: 1;
}

/* ── SUBPAGES ── */
.rd-subpage {
  display: none;
  min-height: 100vh;
  background: var(--rd-white);
}
.rd-subpage.active {
  display: block;
}

/* Subpage: Service List - cards style */
.sp-service {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.sp-service .sp-title {
  text-align: center;
  padding: 40px 0 32px;
}
.sp-service .sp-title .brand {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--rd-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-service .sp-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--rd-black);
}
.sp-service .sp-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #999999;
  cursor: pointer;
  transition: background .2s;
}
.sp-service .sp-item:hover { background: #F8F7F4; margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }
.sp-service .sp-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(197,165,90,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  font-size: 18px;
}
.sp-service .sp-item-body { flex: 1; }
.sp-service .sp-item-body .label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--rd-black);
  margin-bottom: 2px;
}
.sp-service .sp-item-body .desc {
  font-size: 13px;
  color: var(--rd-grey);
  line-height: 1.5;
}
.sp-service .sp-item-arrow {
  color: #999999;
  font-size: 16px;
  margin-left: 12px;
}

/* Subpage: FAQ */
.sp-faq {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.sp-faq .sp-title {
  text-align: center;
  padding: 40px 0 32px;
}
.sp-faq .sp-title .brand {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--rd-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-faq .sp-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--rd-black);
}
.faq-item {
  border-bottom: 1px solid #999999;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid #999999; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: #3A3630;
  transition: color .2s;
}
.faq-item:hover .faq-q { color: var(--rd-black); }
.faq-chev {
  width: 16px; height: 16px; flex-shrink: 0; margin-left: 12px;
  transition: transform .3s;
}
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  font-size: 14px; line-height: 1.8; color: var(--rd-grey);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* Subpage: Contact */
.sp-contact {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.sp-contact .sp-title {
  text-align: center;
  padding: 40px 0 32px;
}
.sp-contact .sp-title .brand {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--rd-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-contact .sp-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--rd-black);
}
.contact-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #999999;
  cursor: pointer;
  transition: background .2s;
}
.contact-item:hover { background: #F8F7F4; margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(197,165,90,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
  position: relative;
}
.contact-icon::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(197,165,90,.1);
}
.contact-icon .icon { font-size: 18px; }
.contact-body { flex: 1; }
.contact-body .cl {
  font-size: 11px; font-weight: 600;
  color: #999999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-body .cv {
  font-size: 15px;
  font-weight: 500;
  color: var(--rd-black);
}
.contact-body .cs {
  font-size: 12px;
  color: var(--rd-grey);
  margin-top: 2px;
}
.contact-arrow {
  color: #999999;
  font-size: 14px;
  margin-left: 12px;
}

/* ── SUBPAGE NAV ── */
.rd-subnav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 200;
  height: 56px;
  background: var(--rd-white);
  border-bottom: 1px solid #999999;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.rd-subnav .back-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  cursor: pointer;
  color: #333;
  margin-right: 8px;
}
.rd-subnav .back-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.rd-subnav .sp-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--rd-black);
}
.rd-subnav .sp-brand .gold { color: var(--rd-white); }

/* ── BOTTOM FIXED NAV ── */
.rd-bottom-nav {
  display: none;
}

/* ── FOOTER ── */
.rd-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--rd-black);
  color: var(--rd-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  text-align: center;
  z-index: 3;
}
.rd-footer .disclaimer {
  font-size: 9px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  max-width: 640px;
}
.rd-footer .disclaimer strong { color: rgba(255,255,255,.35); }
.rd-footer .copy {
  font-size: 9px;
  color: rgba(255,255,255,.15);
  margin-top: 2px;
}

/* ── MOBILE MENU ── */
.rd-menu-overlay {
  display: none;
  position: fixed; top: 52px; left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
}
.rd-menu-overlay.open {
  display: block;
  opacity: 1;
}

.rd-menu {
  display: none;
  position: fixed; top: 52px; right: 0; bottom: 0;
  z-index: 151;
  width: 240px;
  max-width: 70vw;
  background: var(--rd-black);
  padding: 16px 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rd-menu.open {
  display: block;
  transform: translateX(0);
}

.rd-menu-item {
  display: block;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--rd-white);
  text-decoration: none;
  transition: color .2s, background .2s;
  letter-spacing: 1px;
}
.rd-menu-item:hover {
  color: var(--rd-white);
  background: rgba(255,255,255,.04);
}

/* ── SECTION TITLE (shared) ── */
.rd-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--rd-black);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

/* ── COMPARISON BAR ── */
.rd-compare-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px) 0;
  background: #FAF9F7;
}
.rd-compare-inner {
  max-width: 960px;
  margin: 0 auto;
}
.rd-compare-inner .rd-label {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--rd-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.rd-compare-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: #999999;
}
.rd-compare-col {
  background: var(--rd-white);
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
}
.rd-compare-col:first-child {
  background: #F5F4F0;
}
.rd-compare-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #E8E5DF;
  color: var(--rd-black);
}
.rd-compare-icon svg {
  width: 20px;
  height: 20px;
}
.rd-compare-col h3 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rd-grey);
  font-weight: 500;
  margin-bottom: 8px;
}
.rd-compare-price {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  color: var(--rd-black);
  margin-bottom: 6px;
}
.rd-compare-price em {
  font-style: normal;
  color: var(--rd-grey);
  font-size: 14px;
}
.rd-compare-desc {
  font-size: 12px;
  color: var(--rd-grey);
  line-height: 1.6;
}
.rd-compare-note {
  margin-top: 8px;
  padding: 8px 14px;
  background: #F5F4F0;
  font-size: 10px;
  color: var(--rd-grey);
  line-height: 1.8;
  text-align: center;
}

/* ── PRICING TABLE ── */
.rd-pricing-section {
  padding: clamp(32px, 5vw, 60px) clamp(20px, 4vw, 48px) clamp(48px, 6vw, 80px);
  background: #FAF9F7;
}
.rd-pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}
.rd-pricing-inner .rd-label {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--rd-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.rd-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--rd-white);
}
.rd-pricing-table thead th {
  background: var(--rd-black);
  color: var(--rd-white);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 16px;
  text-align: left;
}
.rd-pricing-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.08);
}
.rd-pricing-table tbody td {
  padding: 14px 16px;
  font-size: 13px;
  color: #3A3630;
  border-bottom: 1px solid #E8E5DF;
  vertical-align: middle;
}
.rd-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.rd-pricing-table tbody tr:hover {
  background: #F8F7F4;
}
.rd-pricing-table tbody td:first-child {
  font-weight: 500;
}
.rd-pricing-table .rd-price-highlight {
  font-weight: 600;
  color: var(--rd-black);
}
.rd-pricing-table .rd-price-free {
  font-weight: 600;
  color: #2e7d32;
}
.rd-pricing-table .rd-badge-inline {
  display: inline-block;
  padding: 2px 8px;
  font-size: 9px;
  letter-spacing: 1px;
  background: var(--rd-white);
  color: var(--rd-black);
  margin-left: 6px;
  font-weight: 600;
}

/* ── NOTE ── */
.rd-pricing-note {
  margin: 20px -20px 0;
  padding: 16px 20px;
  background: #000;
  border-left: 3px solid #333;
  font-size: 12px;
  color: #888;
  line-height: 1.8;
}
.rd-pricing-note a { color: #aaa; text-decoration: underline; }
.rd-pricing-note strong { color: #ccc; }

@media (max-width: 640px) {
  .rd-compare-bar {
    grid-template-columns: 1fr;
  }
  .rd-pricing-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── SUBHERO (service page) ── */
.rd-subhero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--rd-black);
  padding: 100px 24px 60px;
}
.rd-subhero-bg {
  position: absolute; inset: 0;
  background: url('images/banner1.jpg') center center / cover no-repeat;
  filter: brightness(.4) saturate(.7);
  pointer-events: none;
}
.rd-subhero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}
.rd-subhero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.rd-subhero-content .rd-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: #999999;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.rd-subhero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--rd-white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rd-subhero-content .rd-rule {
  width: 40px;
  height: 1px;
  background: #4B4B4B;
  margin: 0 auto 20px;
}
.rd-subhero-content p {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── STEPS SECTION (service page) ── */
.rd-steps-section {
  padding: clamp(40px, 5vw, 80px) clamp(16px, 4vw, 48px);
  background: #FAF9F7;
}
.rd-steps-inner {
  max-width: 960px;
  margin: 0 auto;
}
.rd-step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  background: var(--rd-white);
  min-height: 300px;
  border-radius: 0;
  overflow: hidden;
  transition: all .4s ease;
}
.rd-step-card:nth-child(even) .rd-step-image { order: 1; }
.rd-step-card:nth-child(even) .rd-step-info { order: 0; }
.rd-step-image {
  overflow: hidden;
  position: relative;
}
.rd-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.rd-step-card:hover .rd-step-image img {
  transform: scale(1.05);
}
.rd-step-info {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rd-step-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rd-step-num {
  font-size: 32px;
  font-weight: 300;
  color: var(--rd-white);
  line-height: 1;
  letter-spacing: -1px;
}
.rd-step-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rd-grey);
  font-weight: 500;
  padding-top: 6px;
}
.rd-step-info h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--rd-black);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.rd-step-info p {
  font-size: 13px;
  color: var(--rd-grey);
  line-height: 1.9;
}

/* ═══ TICKER (service page) ═══ */
.rd-ticker-section {
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  padding: 12px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.rd-ticker-track {
  display: flex;
  width: max-content;
  animation: rdTickerScroll 30s linear infinite;
}
.rd-ticker-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
  white-space: nowrap;
}
.rd-ticker-item {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.rd-ticker-item .rd-ticker-en {
  display: inline;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  margin-left: 6px;
  font-weight: 300;
  letter-spacing: 1px;
}
.rd-ticker-dot {
  font-size: 8px;
  color: rgba(255,255,255,.15);
}
@keyframes rdTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .rd-ticker-section { padding: 10px 0; }
  .rd-ticker-item { font-size: 10px; letter-spacing: 1.5px; }
  .rd-ticker-item .rd-ticker-en { font-size: 9px; }
}

/* ── CTA FULL (service page) ── */
.rd-cta-full {
  background: var(--rd-black);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.rd-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--rd-white);
}
.rd-cta-inner .rd-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--rd-white);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.rd-cta-inner h2,
.rd-article-body .rd-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--rd-white);
  letter-spacing: 1px;
}
.rd-cta-inner p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 28px;
}
.rd-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.rd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--rd-white);
  border: 1px solid var(--rd-white);
  color: var(--rd-black);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
}
.rd-btn-primary:hover {
  background: #C99F4A;
  border-color: #C99F4A;
}
.rd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
}
.rd-btn-outline:hover {
  border-color: var(--rd-white);
  color: var(--rd-white);
}

/* ── SERVICE RESPONSIVE ── */
@media (max-width: 768px) {
  .rd-step-card,
  .rd-step-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .rd-step-card .rd-step-image { order: 0 !important; aspect-ratio: 16/9; }
  .rd-step-card .rd-step-info { order: 1 !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .rd-card .text {
    padding: 14px 20px 18px;
  }
  .rd-card .text h2 {
    font-size: 20px;
  }
  .rd-card .text p {
    font-size: 11px;
    max-width: 280px;
  }
}

@media (min-width: 768px) {
  .rd-stack {
    flex-direction: row;
  }
  .rd-card + .rd-card {
    border-top: none;
    border-left: 1.5px solid rgba(255,255,255,.12);
  }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
}

/* ── FAQ ── */
.rd-faq-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  background: #FAF9F7;
}
.rd-faq-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}
.rd-faq-sidebar {
  position: sticky;
  top: 100px;
}
.rd-faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.rd-faq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--rd-black);
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.rd-faq-head .rd-rule {
  width: 40px;
  height: 1px;
  background: #4B4B4B;
  margin: 16px auto;
}
.rd-faq-head p {
  font-size: 13px;
  color: var(--rd-grey);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}
.rd-faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.rd-faq-item {
  border-bottom: 1px solid rgba(212,175,55,.12);
  transition: background .3s;
}
.rd-faq-item:hover {
  background: rgba(212,175,55,.02);
}
.rd-faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--rd-black);
  line-height: 1.5;
  font-family: var(--font-body);
}
.rd-faq-header:hover {
  color: var(--rd-white);
}
.rd-faq-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  color: var(--rd-white);
}
.rd-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.rd-faq-content p {
  padding: 0 0 22px 0;
  font-size: 14px;
  color: var(--rd-grey);
  line-height: 1.85;
  margin: 0;
}
.rd-faq-content a {
  color: var(--rd-white);
  text-decoration: none;
}
.rd-faq-content a:hover {
  text-decoration: underline;
}

/* ── CTA GRID (faq page) ── */
.rd-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.rd-cta-grid > div {
  display: flex;
  flex-direction: column;
}
@media (max-width: 680px) {
  .rd-cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── FORM ── */
.rd-cta-form {
  width: 100%;
}
.rd-cta-form .gf-row {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}
.rd-cta-form .gf-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rd-cta-form .gf-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.rd-cta-form .gf-group .req {
  color: rgba(255,180,150,.6);
}
.rd-cta-form .gf-group input,
.rd-cta-form .gf-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.rd-cta-form .gf-group input:focus,
.rd-cta-form .gf-group textarea:focus {
  border-color: var(--rd-white);
}
.rd-cta-form .gf-group input::placeholder,
.rd-cta-form .gf-group textarea::placeholder {
  color: rgba(255,255,255,.2);
}
.rd-cta-form .gf-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--rd-white);
  border: none;
  color: var(--rd-black);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
  font-family: var(--font-body);
  font-weight: 600;
}
.rd-cta-form .gf-submit:hover { opacity: .85; }
.rd-cta-form .gf-submit:disabled { opacity: .4; cursor: not-allowed; }
.rd-cta-form .gf-feedback {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  min-height: 20px;
}
.rd-cta-form .gf-feedback.success { color: rgba(255,255,255,.7); }
.rd-cta-form .gf-feedback.error { color: rgba(255,200,200,.8); }

@media (max-width: 500px) {
  .rd-cta-form .gf-row { flex-direction: column; gap: 12px; }
}

/* ── CONTACT INFO SIDEBAR ── */
.rd-cta-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 26px;
  min-height: 100%;
}
.rd-cta-info .ci-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rd-cta-info .ci-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
}
.rd-cta-info .ci-icon svg { width: 15px; height: 15px; }
.rd-cta-info .ci-text { display: flex; flex-direction: column; gap: 2px; }
.rd-cta-info .ci-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.rd-cta-info .ci-value {
  font-size: 13px;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}
.rd-cta-info .ci-value a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.rd-cta-info .ci-value a:hover { color: var(--rd-white); }

/* ── ARTICLE LAYOUT (blog) ── */
.rd-article-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5px;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  align-items: start;
  background: #FAF9F7;
}
.rd-article-main {
  max-width: 90%;
  margin-left: 10px;
}
}

.rd-article-body {
  font-size: 15px;
  line-height: 2;
  color: var(--rd-grey);
}
.rd-article-body .article-lead {
  font-size: 16px;
  color: #3A3630;
  line-height: 2;
}
.rd-article-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--rd-black);
  margin: 48px 0 16px;
  letter-spacing: .5px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,175,55,.12);
}
.rd-article-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--rd-black);
  margin: 32px 0 12px;
}
.rd-article-body p { margin-bottom: 16px; }
.rd-article-body strong { font-weight: 600; color: var(--rd-black); }
.rd-article-body ul {
  margin: 12px 0 20px 20px;
  list-style: none;
}
.rd-article-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.rd-article-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rd-white);
}
.rd-article-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: rgba(212,175,55,.06);
  border-left: 3px solid var(--rd-white);
  font-size: 13px;
  color: var(--rd-grey);
  line-height: 1.8;
}
.rd-article-body blockquote strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rd-white);
}

/* ── TOC ACCORDION ── */
/* ── ACCORDION (rd-care-faq page) ── */
.rd-accordion-section {
  margin: 40px 0;
}
.rd-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rd-accordion-item {
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s;
}
.rd-accordion-item:hover {
  box-shadow: 0 2px 12px rgba(10,31,63,.06);
}
.rd-accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--rd-black);
  transition: background .2s;
}
.rd-accordion-header:hover {
  background: rgba(212,175,55,.04);
}
.rd-accordion-icon-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--rd-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rd-accordion-title {
  flex: 1;
}
.rd-accordion-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: rgba(10,31,63,.3);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}
.rd-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.rd-accordion-content p {
  padding: 0 20px 18px 50px;
  font-size: 14px;
  color: #5A5650;
  line-height: 1.8;
}
@media (max-width: 500px) {
  .rd-accordion-header { font-size: 14px; padding: 14px 16px; }
  .rd-accordion-content p { padding: 0 16px 14px 44px; font-size: 13px; }
}

.toc-accordion {
  background: #EFEDE8;
  border: 1px solid rgba(212,175,55,.15);
  padding: 24px;
  margin-bottom: 32px;
}
.toc-accordion h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--rd-black);
  border-bottom: 1px solid var(--rd-white);
  padding-bottom: 12px;
  margin-bottom: 20px;
  margin-top: 0;
}
.toc-item { border-bottom: 1px solid rgba(0,0,0,.06); }
.toc-item:last-child { border-bottom: none; }
.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  cursor: pointer;
  transition: background .2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--rd-black);
  gap: 12px;
  font-family: var(--font-body);
}
.toc-header:hover { background: rgba(212,175,55,.06); }
.toc-header .toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--rd-black);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.toc-header .toc-label { flex: 1; }
.toc-header .toc-hint {
  font-size: 10px;
  color: var(--rd-grey);
  font-weight: 400;
  margin-left: 6px;
  white-space: nowrap;
  transition: opacity .25s;
}
.toc-header.open .toc-hint { opacity: 0; }
.toc-header .toc-icon {
  font-size: 12px;
  color: var(--rd-grey);
  transition: transform .3s;
  flex-shrink: 0;
}
.toc-header.open .toc-icon { transform: rotate(180deg); }
.toc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 8px;
}
.toc-body.open { max-height: 600px; padding: 0 8px 16px; }
.toc-body p {
  font-size: 13px;
  color: var(--rd-grey);
  margin-bottom: 10px;
  line-height: 1.8;
}
.toc-body .read-btn {
  display: inline-block;
  padding: 6px 18px;
  background: var(--rd-black);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.toc-body .read-btn:hover {
  background: var(--rd-white);
  color: var(--rd-black);
}

/* ── ARTICLE SECTIONS ── */
.article-section { display: none; animation: fadeIn .3s ease; }
.article-section.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Back button ── */
.back-btn {
  display: inline-block;
  margin: 24px 0;
  padding: 8px 24px;
  background: var(--rd-black);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
  font-family: var(--font-body);
}
.back-btn:hover { background: var(--rd-white); color: var(--rd-black); }

/* ── Info boxes ── */
.tip-box {
  background: rgba(212,175,55,.08);
  border-left: 3px solid var(--rd-white);
  padding: 16px 20px;
  margin: 24px 0;
}
.tip-box strong { color: var(--rd-white); display: block; margin-bottom: 8px; font-size: 14px; }
.tip-box p { margin: 0; font-size: 14px; }
.warn-box {
  background: rgba(230,81,0,.08);
  border-left: 3px solid #e65100;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--rd-grey);
}
.warn-box strong { color: #e65100; }
.note-box {
  background: rgba(0,0,0,.04);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 2;
  color: var(--rd-grey);
}
.note-box strong { color: var(--rd-black); }
.info-box {
  background: #EFEDE8;
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 2;
  color: var(--rd-grey);
}
.info-box strong { color: var(--rd-black); }

/* ── Table ── */
.article-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.article-table thead {
  background: var(--rd-black);
  color: #fff;
}
.article-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}
.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  color: #3A3630;
}
.article-table tbody tr:hover { background: #F8F7F4; }

/* ── Pros/Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pros-box {
  background: #e8f5ee;
  padding: 16px;
}
.pros-box h4 { color: #2e7d32; font-size: 15px; margin-bottom: 8px; }
.pros-box ul { padding-left: 18px; font-size: 14px; line-height: 1.8; }
.pros-box ul li::before { display: none; }
.cons-box {
  background: #fff3e0;
  padding: 16px;
}
.cons-box h4 { color: #e65100; font-size: 15px; margin-bottom: 8px; }
.cons-box ul { padding-left: 18px; font-size: 14px; line-height: 1.8; }
.cons-box ul li::before { display: none; }

/* ── Scenario tags ── */
.scenario-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 4px;
}
.scenario-tag.tag-official { background: var(--rd-black); color: #fff; }
.scenario-tag.tag-third { background: #2e7d32; color: #fff; }
.scenario-tag.tag-both { background: #f57c00; color: #fff; }

/* ── Numbered list ── */
.article-list-numbered {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: item-counter;
}
.article-list-numbered li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
}
.article-list-numbered li::before {
  counter-increment: item-counter;
  content: counter(item-counter);
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  background: var(--rd-black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* ── Decision grid ── */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.decision-grid .d-item {
  padding: 16px;
  background: #EFEDE8;
  border: 1px solid rgba(212,175,55,.12);
  font-size: 13px;
  color: var(--rd-grey);
  transition: all .2s;
}
.decision-grid .d-item.shang-official {
  background: var(--rd-black);
  border-color: var(--rd-white);
  color: #fff;
}
.decision-grid .d-item.shang-official strong { color: #fff; }
.decision-grid .d-item strong { display: block; margin-bottom: 4px; color: var(--rd-black); }
.decision-grid .d-item:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,.1); }

/* ── Sidebar ── */
.rd-article-sidebar {
  position: sticky;
  top: 100px;
}
.rd-sidebar-widget { margin-bottom: 36px; }
.rd-sidebar-widget h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rd-white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,175,55,.12);
}
.rd-related-sidebar-list { list-style: none; margin: 0; padding: 0; }
.rd-related-sidebar-list li { margin-bottom: 1px; }
.rd-related-sidebar-list a {
  display: flex; gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,.1);
  transition: background .2s;
}
.rd-related-sidebar-list a:hover {
  background: #EFEDE8;
  margin: 0 -8px; padding-left: 8px; padding-right: 8px;
}
.rd-related-sidebar-list .rsb-img {
  width: 70px; height: 70px;
  flex-shrink: 0; object-fit: cover;
}
.rd-related-sidebar-list .rsb-body { flex: 1; min-width: 0; }
.rd-related-sidebar-list .rsb-tag {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--rd-white); margin-bottom: 2px;
}
.rd-related-sidebar-list .rsb-title {
  font-size: 13px; font-weight: 500; color: var(--rd-black);
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.rd-related-sidebar-list .rsb-desc {
  font-size: 11px; color: var(--rd-grey); line-height: 1.5;
  margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA BUTTONS ── */
.rd-cta-buttons {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .rd-article-two-col { grid-template-columns: 1fr !important; }
  .rd-article-sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
  .decision-grid { grid-template-columns: 1fr; }
  .article-table td, .article-table th { padding: 8px 10px; font-size: 13px; }
  .toc-header { font-size: 14px; }
  .toc-header .toc-num { width: 22px; height: 22px; font-size: 11px; }
}

/* ── ABOUT SECTION ── */
.rd-section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px);
}
.rd-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.rd-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--rd-black);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.rd-section-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--rd-grey);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 40px;
}
.rd-section-bg {
  background: #FAF9F7;
}
.rd-section-dark {
  background: var(--rd-black);
  color: var(--rd-white);
}
.rd-section-dark .rd-section-title {
  color: var(--rd-white);
}

/* ── ABOUT GRID ── */
.rd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
.rd-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.rd-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rd-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 1;
}
.rd-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.rd-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(10,31,63,.85));
  color: var(--rd-white);
}
.rd-carousel-overlay h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.rd-carousel-overlay p {
  font-size: 12px;
  opacity: .75;
}
.rd-carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 10;
  pointer-events: none;
}
.rd-carousel-arrows button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--rd-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.rd-carousel-arrows button:hover {
  background: rgba(255,255,255,.35);
}
.rd-carousel-arrows button svg {
  width: 18px;
  height: 18px;
}
.rd-carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.rd-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212,175,55,.25);
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.rd-carousel-dot.active {
  background: var(--rd-white);
  width: 24px;
  border-radius: 4px;
}

/* ── ABOUT TEXT ── */
.rd-about-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--rd-black);
  margin-bottom: 16px;
}
.rd-about-text p {
  font-size: 14px;
  color: var(--rd-grey);
  line-height: 2;
  margin-bottom: 16px;
}
.rd-about-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.rd-about-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,175,55,.1);
}
.rd-af-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFEDE8;
  border-radius: 50%;
  color: var(--rd-black);
}
.rd-af-icon svg { width: 16px; height: 16px; }
.rd-af-text { flex: 1; font-size: 13px; color: var(--rd-grey); line-height: 1.6; }
.rd-af-text strong { color: var(--rd-black); display: inline; }

.rd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.rd-badge {
  padding: 5px 14px;
  background: var(--rd-black);
  color: var(--rd-white);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── CONTACT + MAP ── */
.rd-contact-map {
  display: grid;
  grid-template-columns: 32% 1fr;
  min-height: 480px;
}
.rd-contact-left {
  background: var(--rd-black);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rd-contact-left .rd-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--rd-white);
  text-transform: uppercase;
  font-weight: 500;
}
.rd-contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--rd-white);
  letter-spacing: .5px;
  margin-top: -12px;
}
.rd-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.rd-ci-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--rd-white);
}
.rd-ci-icon svg { width: 16px; height: 16px; }
.rd-ci-body { flex: 1; }
.rd-ci-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 3px;
}
.rd-ci-value {
  font-size: 14px;
  color: var(--rd-white);
  line-height: 1.5;
}
.rd-ci-value a {
  color: var(--rd-white);
  text-decoration: none;
}
.rd-ci-value a:hover { color: var(--rd-white); }
.rd-ci-sub {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}

.rd-contact-wa {
  display: inline-block;
  padding: 14px 28px;
  background: var(--rd-white);
  color: var(--rd-black);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: opacity .2s;
}
.rd-contact-wa:hover { opacity: .85; }
.rd-contact-maps {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  transition: all .2s;
  background: rgba(255,255,255,.04);
}
.rd-contact-maps:hover {
  border-color: var(--rd-white);
  color: var(--rd-white);
  background: rgba(212,175,55,.06);
}
.rd-contact-map-full {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.rd-contact-map-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .rd-about-grid { grid-template-columns: 1fr; }
  .rd-contact-map { grid-template-columns: 1fr; }
  .rd-contact-map-full { min-height: 280px; }
  .rd-carousel { aspect-ratio: 3/2; }
  .rd-faq-two-col { grid-template-columns: 1fr; }
  .rd-faq-sidebar { position: static; }
}

/* ═══ Language Toggle ═══ */
.lang-toggle{
  background:none;
  border:1px solid var(--rd-white);
  border-radius:0;
  color:var(--rd-white);
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  padding:6px 12px;
  cursor:pointer;
  transition:all .3s;
  font-family:inherit;
  white-space:nowrap;
  text-transform:uppercase;
  line-height:1;
}
.lang-toggle:hover{
  color:#fff;
  border-color:#fff;
}
.rd-topnav{position:relative;}
.nav-title { display:flex; align-items:center; gap:8px; }
.rd-topnav .lang-toggle{position:absolute;left:14px;top:50%;transform:translateY(-50%);flex-shrink:0;}
@media(max-width:600px){
  .lang-toggle{ font-size:9px; padding:5px 8px; }
  .rd-topnav .lang-toggle{left:10px;}
}
