:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --surface: #121212;
  --surface-raised: #171717;
  --gold: #c9a45c;
  --gold-light: #d6b56d;
  --white: #ffffff;
  --text: #d5d5d5;
  --muted: #9c9c9c;
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(201, 164, 92, 0.35);
  --whatsapp: #25d366;
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: 1280px;
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

h1 {
  max-width: 1060px;
  margin-bottom: 30px;
  font-size: clamp(3.15rem, 6vw, 6.2rem);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 5.2vw, 5.5rem);
}

h3 {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
}

p {
  margin-bottom: 1.4rem;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-140%);
  border: 1px solid var(--gold);
  background: var(--bg);
  color: var(--white);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(96px, 10vw, 168px) 0;
}

.section-muted {
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section-intro {
  margin-bottom: clamp(52px, 7vw, 88px);
}

.section-intro > p:last-child,
.faq-intro > p,
.trust-header > p:last-child {
  color: var(--muted);
}

.section-intro.centered {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.section-intro.centered p:last-child {
  max-width: 640px;
  margin-inline: auto;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 8vw;
  align-items: end;
}

.split-intro h2 {
  margin-bottom: 0;
}

.large-copy {
  color: var(--text);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 25px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 250ms var(--ease), background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--gold);
  background: linear-gradient(115deg, var(--gold-light), #b78d43);
  box-shadow: 0 15px 45px rgba(201, 164, 92, 0.17);
  color: #090909;
}

.button-primary:hover {
  background: linear-gradient(115deg, #e0c27f, var(--gold));
  box-shadow: 0 20px 50px rgba(201, 164, 92, 0.26);
}

.button-outline {
  border-color: rgba(201, 164, 92, 0.52);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--bg);
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 300ms var(--ease);
}

.text-link:hover span {
  background-size: 100% 1px;
}

.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 250ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, height 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 1002;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  color: var(--white);
  line-height: 1;
}

.brand-primary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.09em;
}

.brand-secondary {
  margin-top: 7px;
  color: var(--gold-light);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.46em;
}

.nav-panel {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 28px);
}

.nav-links a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.69rem;
  font-weight: 560;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 200ms ease;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 250ms var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions,
.desktop-language,
.language-options {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 18px;
}

.desktop-language {
  gap: 8px;
}

.desktop-language span {
  width: 1px;
  height: 9px;
  background: rgba(255, 255, 255, 0.2);
}

.desktop-language button,
.language-options button {
  min-width: 26px;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.desktop-language button:hover,
.language-options button:hover,
.desktop-language button[aria-pressed="true"],
.language-options button[aria-pressed="true"] {
  color: var(--gold-light);
}

.mobile-language,
.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: max(720px, 100svh);
  align-items: flex-end;
  overflow: hidden;
  background: #090909;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(4, 4, 4, 0.95) 0%, rgba(4, 4, 4, 0.82) 35%, rgba(4, 4, 4, 0.28) 72%, rgba(4, 4, 4, 0.4) 100%), linear-gradient(0deg, rgba(4, 4, 4, 0.92) 0%, transparent 38%, rgba(4, 4, 4, 0.25) 100%), url("/assets/images/north-cyprus-coast-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  animation: heroIn 1.4s var(--ease) both;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: linear-gradient(90deg, transparent calc(25% - 0.5px), rgba(255, 255, 255, 0.4) 25%, transparent calc(25% + 0.5px), transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.4) 50%, transparent calc(50% + 0.5px), transparent calc(75% - 0.5px), rgba(255, 255, 255, 0.4) 75%, transparent calc(75% + 0.5px));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 92px);
  padding-bottom: clamp(102px, 12vh, 146px);
}

.hero-copy {
  max-width: 960px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 37px;
  color: #d2d2d2;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-trust {
  display: grid;
  max-width: 940px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(52px, 8vh, 90px);
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.hero-trust > div {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 11px;
  padding: 18px 16px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.68rem;
  font-weight: 580;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-trust > div + div {
  padding-left: 20px;
}

.hero-trust > div:last-child {
  border-right: 0;
}

.hero-trust svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--gold);
  content: "";
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes heroIn {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1.01); }
}

@keyframes scrollLine {
  50%, 100% { transform: translateX(100%); }
}

/* Countries */
.countries {
  background: var(--bg);
}

.language-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  color: var(--white);
  font-size: 0.88rem;
}

.language-note span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.country {
  display: flex;
  min-height: 122px;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-right: 1px solid var(--line);
  transition: background 250ms ease, color 250ms ease;
}

.country:last-child {
  border-right: 0;
}

.country:hover {
  background: rgba(201, 164, 92, 0.06);
}

.country span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.country strong {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 285px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
  transition: background 350ms var(--ease), transform 350ms var(--ease);
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  transition: transform 450ms var(--ease);
}

.service-card:hover {
  z-index: 1;
  background: rgba(201, 164, 92, 0.055);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card > svg {
  width: 29px;
  height: 29px;
  margin-bottom: 52px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-card h3 {
  max-width: 220px;
  margin-bottom: 13px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.section-disclaimer {
  max-width: 890px;
  margin: 30px auto 0;
  padding-left: 18px;
  border-left: 1px solid var(--gold);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: left;
}

/* Management */
.management {
  overflow: hidden;
  background: linear-gradient(115deg, var(--bg) 0%, var(--bg) 65%, #10100e 100%);
}

.management::after {
  position: absolute;
  z-index: 0;
  top: 10%;
  right: -12%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 164, 92, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(201, 164, 92, 0.015), 0 0 0 180px rgba(201, 164, 92, 0.01);
  content: "";
}

.management-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 90px minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
}

.management-index {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.management-index i {
  width: 1px;
  flex: 1;
  margin-top: 20px;
  background: linear-gradient(var(--gold), transparent);
}

.management-copy h2 {
  max-width: 760px;
}

.management-copy .text-link {
  margin-top: 14px;
}

.management-points {
  margin-top: 75px;
  border-top: 1px solid var(--line-gold);
}

.management-points > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 0.83rem;
}

.management-points svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* Process */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 35px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 10%, var(--line-gold) 90%, transparent);
  content: "";
}

.timeline-item {
  position: relative;
  padding: 0 clamp(15px, 2vw, 30px);
  text-align: center;
}

.step-marker {
  position: relative;
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 32px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: var(--bg-soft);
  box-shadow: 0 0 0 9px var(--bg-soft);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.05rem;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease;
}

.timeline-item:hover .step-marker {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}

.step-label {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 13px;
}

.timeline-item p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.process-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  text-align: center;
}

.process-cta p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Why North Cyprus */
.cyprus-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(54px, 8vw, 124px);
  align-items: center;
}

.cyprus-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.cyprus-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.12);
  content: "";
  pointer-events: none;
}

.cyprus-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.cyprus-image:hover img {
  transform: scale(1.025);
  filter: saturate(0.92) contrast(1.02);
}

.cyprus-image figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(8, 8, 8, 0.76);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cyprus-copy .large-copy {
  max-width: 680px;
  margin-bottom: 44px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-list > div {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 17px;
  padding: 17px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.feature-list strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
}

/* Trust */
.trust {
  overflow: hidden;
  border-block: 1px solid rgba(201, 164, 92, 0.14);
  background: #0b0b0b;
}

.trust-glow {
  position: absolute;
  top: -320px;
  left: 50%;
  width: min(80vw, 1100px);
  height: 620px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.1), transparent 67%);
  pointer-events: none;
}

.trust-header {
  max-width: 870px;
  margin: 0 auto clamp(52px, 7vw, 82px);
  text-align: center;
}

.trust-header .eyebrow {
  justify-content: center;
}

.trust-header > p:last-child {
  max-width: 680px;
  margin-inline: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-card {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  padding: 27px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 250ms ease;
}

.trust-card:hover {
  background: rgba(201, 164, 92, 0.045);
}

.trust-card > span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.trust-card svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.trust-card h3 {
  max-width: 220px;
  align-self: end;
  margin: 34px 0 0;
}

.trust-statement {
  max-width: 900px;
  margin: 70px auto 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro .text-link {
  margin-top: 18px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 82px;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: 1rem;
  font-weight: 500;
}

.faq-item button i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  transition: background 250ms ease, transform 350ms var(--ease);
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--gold-light);
  content: "";
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 250ms ease;
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(180deg);
  background: rgba(201, 164, 92, 0.08);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 50px 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

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

.contact-card {
  position: relative;
  display: grid;
  min-height: 470px;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 60px;
  align-items: end;
  padding: clamp(42px, 7vw, 92px);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: radial-gradient(circle at 85% 12%, rgba(201, 164, 92, 0.16), transparent 33%), linear-gradient(120deg, #15130f 0%, #0d0d0d 68%);
  box-shadow: var(--shadow);
  transition: border-color 300ms ease, transform 400ms var(--ease);
}

.contact-card::before {
  position: absolute;
  top: -40%;
  right: -11%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(201, 164, 92, 0.025), 0 0 0 150px rgba(201, 164, 92, 0.015);
  content: "";
}

.contact-card:hover {
  border-color: rgba(214, 181, 109, 0.72);
  transform: translateY(-4px);
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 6px clamp(0px, 2vw, 35px);
  border-left: 1px solid var(--line-gold);
}

.whatsapp-round {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  color: var(--whatsapp);
}

.whatsapp-round svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-action > span {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-action strong {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 400;
}

.contact-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 300ms var(--ease);
}

.contact-card:hover .contact-arrow {
  transform: translate(5px, -5px);
}

/* Footer */
.footer {
  padding-top: 82px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #060606;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.6fr) repeat(3, minmax(130px, 0.6fr));
  gap: 52px;
  padding-bottom: 66px;
}

.footer-brand > p {
  max-width: 340px;
  margin: 28px 0 21px;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 0.84rem;
}

.footer-phone svg {
  width: 19px;
  height: 19px;
  fill: var(--whatsapp);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  display: flex;
  min-height: 28px;
  align-items: center;
  padding: 1px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: left;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--white);
}

.footer-disclaimer {
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-disclaimer p {
  max-width: 1050px;
  margin: 0;
  color: #777;
  font-size: 0.71rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #6e6e6e;
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

/* Floating conversion controls */
.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: #1fbd5b;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.25);
  color: #fff;
  animation: whatsappPulse 3.2s ease-out infinite;
  transition: transform 250ms var(--ease), background 250ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  background: #25d366;
}

.floating-whatsapp > svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 13px);
  padding: 8px 12px;
  transform: translateX(8px);
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.94);
  color: var(--white);
  font-size: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  white-space: nowrap;
}

.floating-whatsapp:hover .whatsapp-tooltip,
.floating-whatsapp:focus-visible .whatsapp-tooltip {
  transform: translateX(0);
  opacity: 1;
}

.mobile-whatsapp {
  display: none;
}

@keyframes whatsappPulse {
  0%, 40% { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.24); }
  70%, 100% { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Legal dialogs */
.legal-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: min(82vh, 760px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-gold);
  background: var(--surface);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
  color: var(--text);
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.dialog-inner {
  position: relative;
  padding: clamp(34px, 6vw, 66px);
}

.dialog-inner h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: border-color 200ms ease, background 200ms ease;
}

.dialog-close:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.08);
}

.dialog-copy p {
  color: var(--muted);
  font-size: 0.93rem;
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  background: #fff;
  color: #000;
  font-size: 0.82rem;
  text-align: center;
}

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

.reveal-delay {
  transition-delay: 180ms;
}

/* Tablet */
@media (max-width: 1100px) {
  :root { --header-height: 78px; }

  .nav-contact,
  .desktop-language {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.25);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 350ms var(--ease), opacity 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-panel {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    padding: 110px max(28px, 8vw) 42px;
    transform: translateY(-18px);
    background: radial-gradient(circle at 80% 10%, rgba(201, 164, 92, 0.1), transparent 30%), rgba(8, 8, 8, 0.985);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease, transform 450ms var(--ease), visibility 320ms;
  }

  .nav-panel.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .nav-links a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 3.4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.12;
    text-transform: none;
  }

  .mobile-language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .language-options {
    gap: 14px;
  }

  .language-options button {
    min-width: 42px;
    min-height: 42px;
    border: 1px solid var(--line);
  }

  .language-options button[aria-pressed="true"] {
    border-color: var(--gold);
    background: rgba(201, 164, 92, 0.08);
  }

  .hero-content {
    padding-bottom: 100px;
  }

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

  .country:nth-child(4) { border-right: 0; }
  .country:nth-child(n + 5) { border-top: 1px solid var(--line); }

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

  .service-card {
    min-height: 270px;
  }

  .management-layout {
    grid-template-columns: 55px minmax(0, 1.25fr) minmax(250px, 0.75fr);
  }

  .timeline {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 34px;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, var(--line-gold) 10%, var(--line-gold) 90%, transparent);
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
    min-height: 190px;
    padding: 0;
    text-align: left;
  }

  .step-marker {
    margin: 0;
  }

  .timeline-item > div:last-child {
    padding: 5px 0 42px;
  }

  .cyprus-layout {
    grid-template-columns: minmax(330px, 0.8fr) minmax(350px, 1.2fr);
    gap: 60px;
  }
}

@media (min-width: 1101px) {
  html[lang="ru"] .hero-content,
  html[lang="tr"] .hero-content {
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 78px;
  }

  html[lang="ru"] .hero-trust,
  html[lang="tr"] .hero-trust {
    margin-top: 52px;
  }
}

@media (max-width: 820px) {
  .split-intro,
  .management-layout,
  .cyprus-layout,
  .faq-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .split-intro {
    gap: 30px;
  }

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

  .management-index {
    display: none;
  }

  .management-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    margin-top: 15px;
  }

  .cyprus-image {
    max-width: 600px;
  }

  .cyprus-layout {
    gap: 62px;
  }

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

  .faq-layout {
    gap: 48px;
  }

  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .contact-card {
    min-height: 0;
    gap: 52px;
  }

  .contact-action {
    padding-left: 0;
    border-top: 1px solid var(--line-gold);
    border-left: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root { --header-height: 72px; }

  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

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

  .section {
    padding: 88px 0;
  }

  h1 {
    margin-bottom: 23px;
    font-size: clamp(2.75rem, 12.5vw, 4.25rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.4rem, 10.5vw, 3.55rem);
    line-height: 1.02;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 0.63rem;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .hero {
    min-height: max(690px, 100svh);
  }

  .hero-backdrop {
    background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.42) 28%, rgba(5, 5, 5, 0.91) 72%, rgba(5, 5, 5, 0.99) 100%), url("/assets/images/north-cyprus-coast-hero.jpg");
    background-position: 68% center;
  }

  .hero-grid,
  .scroll-cue {
    display: none;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 49px;
  }

  .hero-lead {
    margin-bottom: 29px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
    margin-top: 47px;
  }

  .hero-trust > div,
  .hero-trust > div + div {
    min-height: 63px;
    padding: 15px 10px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.57rem;
  }

  .hero-trust > div:nth-child(2n) {
    padding-left: 14px;
    border-right: 0;
  }

  .hero-trust > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero-trust svg {
    width: 18px;
    height: 18px;
  }

  .country-list {
    grid-template-columns: 1fr 1fr;
  }

  .country,
  .country:nth-child(4),
  .country:nth-child(n + 5) {
    min-height: 84px;
    padding: 14px 11px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .country:nth-child(2n) {
    border-right: 0;
  }

  .country:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .country:last-child {
    border-right: 1px solid var(--line);
  }

  .country span {
    width: 31px;
    height: 31px;
  }

  .country strong {
    font-size: 0.7rem;
  }

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

  .service-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 44px 1fr;
    padding: 27px 24px;
  }

  .service-card > svg {
    grid-row: 1 / 3;
    margin: 1px 0 0;
  }

  .service-card h3 {
    margin-bottom: 9px;
  }

  .service-card p {
    font-size: 0.84rem;
  }

  .management::after {
    opacity: 0.5;
  }

  .management-points {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .timeline-item {
    grid-template-columns: 58px 1fr;
    gap: 22px;
    min-height: 178px;
  }

  .timeline::before {
    left: 28px;
  }

  .step-marker {
    width: 58px;
    height: 58px;
    box-shadow: 0 0 0 6px var(--bg-soft);
    font-size: 0.9rem;
  }

  .process-cta {
    margin-top: 35px;
  }

  .process-cta .button {
    width: 100%;
  }

  .cyprus-image figcaption {
    right: 12px;
    bottom: 12px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list > div {
    min-height: 65px;
  }

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

  .trust-card {
    min-height: 160px;
    padding: 22px 18px;
  }

  .trust-card svg {
    width: 23px;
    height: 23px;
  }

  .trust-card h3 {
    margin-top: 28px;
    font-size: 0.9rem;
  }

  .trust-statement {
    margin-top: 55px;
  }

  .faq-item button {
    min-height: 76px;
    gap: 15px;
  }

  .faq-answer p {
    padding-right: 15px;
  }

  .contact-card {
    gap: 42px;
    padding: 34px 26px;
  }

  .contact-action {
    padding-top: 28px;
  }

  .contact-arrow {
    right: 2px;
    bottom: 3px;
  }

  .footer {
    padding-top: 66px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 30px;
  }

  .footer-column a,
  .footer-column button {
    min-height: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 105px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: calc(80px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp > svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 899;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: calc(66px + env(safe-area-inset-bottom));
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 18px 22px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(214, 181, 109, 0.52);
    background: linear-gradient(115deg, #d6b56d, #b78d43);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.28);
    color: #080808;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .mobile-whatsapp svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
  }

  .legal-dialog {
    width: calc(100% - 20px);
    max-height: 86vh;
  }

  .dialog-inner {
    padding: 52px 26px 34px;
  }

  .dialog-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-primary { font-size: 0.94rem; }
  .brand-secondary { font-size: 0.5rem; }

  .hero-content {
    padding-top: 116px;
  }

  h1 {
    font-size: 2.78rem;
  }

  .hero-lead {
    font-size: 0.91rem;
  }

  .hero-trust > div {
    gap: 7px;
  }

  .service-card {
    grid-template-columns: 38px 1fr;
    padding-inline: 20px;
  }

  .trust-card {
    min-height: 148px;
    padding: 19px 15px;
  }

  .trust-card h3 {
    font-size: 0.8rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (hover: none) {
  .service-card:hover,
  .contact-card:hover,
  .floating-whatsapp:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
