/* ═══════════════════════════════════════════════════
   VELORÉ CYPRUS — style.css
   Mediterranean · Light · Premium
═══════════════════════════════════════════════════ */

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

:root {
  --white:         #FFFFFF;
  --ivory:         #FAF8F5;
  --sand:          #F2EDE6;
  --beige:         #EAE2D8;
  --warm-mid:      #D5C9BB;
  --gold:          #B5975A;
  --gold-light:    #CDB483;
  --blue-deep:     #2A5FA5;
  --blue-mid:      #4A80C4;
  --blue-soft:     #8BAED4;
  --blue-pale:     #D6E4F0;
  --blue-ultra:    #EEF4FA;
  --text-primary:  #1A1F2E;
  --text-secondary:#4A5568;
  --text-muted:    #8898AA;
  --border:        rgba(0,0,0,0.07);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.10);
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', -apple-system, sans-serif;
  --font-dm:       'DM Sans', sans-serif;
  --section-gap:   100px;
  --container:     1200px;
  --container-wide:1360px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── CONTAINERS ── */
.container      { max-width: var(--container);      margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 32px; }

/* ── SECTION ── */
.section { padding: var(--section-gap) 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-dm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.section-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
  margin-top: 16px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-body { margin: 16px auto 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-dm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42,95,165,0.3);
}
.btn-primary:hover {
  background: #1F4A8A;
  box-shadow: 0 8px 32px rgba(42,95,165,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep);
}
.btn-outline:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; border-radius: 12px; padding: 16px; font-size: 15px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}
.nav.scrolled .logo-text { color: var(--text-primary); }
.nav.scrolled .logo-sub  { color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--text-primary); }
.nav.scrolled .nav-hamburger span { background: var(--text-primary); }

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color 0.35s;
}
.logo-sub {
  font-family: var(--font-dm);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.35s;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-dm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta-link {
  padding: 10px 22px;
  border-radius: 40px;
  background: var(--white);
  color: var(--blue-deep) !important;
  transition: background 0.2s;
}
.nav-links .nav-cta-link:hover { background: var(--blue-pale); }
.nav.scrolled .nav-links .nav-cta-link {
  background: var(--blue-deep);
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.35s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu .mm-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--text-primary);
  padding: 10px 0;
  transition: color 0.2s;
}
.mobile-menu .mm-link:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.04);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,22,44,0.42) 0%,
    rgba(12,22,44,0.28) 40%,
    rgba(12,22,44,0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 0; /* top clears fixed 72px nav + 48px visual gap */
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-dm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4AE88A;
  box-shadow: 0 0 0 3px rgba(74,232,138,0.3);
  animation: pulse-green 2.4s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,232,138,0.3); }
  50%       { box-shadow: 0 0 0 7px rgba(74,232,138,0.08); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: #C8DCF2; }

.hero-sub {
  font-family: var(--font-dm);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 32px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-family: var(--font-dm);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: hint-float 2.8s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes hint-float {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.9;  transform: translateX(-50%) translateY(-8px); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
.hero-scroll-hint span {
  font-family: var(--font-dm);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── VALUE ── */
.section-value { background: var(--white); }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.value-text .btn { margin-top: 36px; }

.value-cards-stack { position: relative; height: 300px; }

.vcard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  width: 88%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vcard-1 { top: 20px;  left: 0;   z-index: 3; }
.vcard-2 { top: 110px; left: 24px; z-index: 2; }
.vcard-3 { top: 200px; left: 12px; z-index: 1; }

.vcard-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-ultra);
  border-radius: 12px;
  color: var(--blue-deep);
  flex-shrink: 0;
}
.vcard-icon svg { width: 22px; height: 22px; }
.vcard-info { flex: 1; min-width: 0; }
.vcard-info span { display: block; font-size: 14px; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vcard-info small { font-size: 12px; color: var(--text-muted); margin-top: 2px; display: block; }
.vcard-score {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  flex-shrink: 0;
  background: #E8F5E9;
  color: #2E7D32;
}

/* ── HOW IT WORKS ── */
.section-how { background: var(--ivory); }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-number {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon { width: 52px; height: 52px; margin: 0 auto 20px; color: var(--blue-deep); }
.step-icon svg { width: 100%; height: 100%; }
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

.step-connector {
  width: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  color: var(--warm-mid);
}
.step-connector svg { width: 72px; }

/* ── BUYERS ── */
.section-buyers { background: var(--white); }

.buyers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.buyers-visual { position: relative; }
.buyers-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.buyers-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  font-family: var(--font-dm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: var(--blue-ultra);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-deep);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-list strong { display: block; font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.feature-list span { font-size: 13px; color: var(--text-muted); }
.buyers-content .btn { margin-top: 36px; }

/* ── AGENCIES ── */
.section-agencies { background: var(--sand); }

.agencies-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.agency-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.agency-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ac-icon {
  width: 48px; height: 48px;
  background: var(--blue-ultra);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.ac-icon svg { width: 26px; height: 26px; }
.agency-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.agency-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

.agencies-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.cta-note { font-family: var(--font-dm); font-size: 13px; color: var(--text-muted); }

/* ── TRUST ── */
.section-trust { background: var(--blue-deep); }

.trust-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.section-trust .section-label { color: var(--gold-light); }
.section-trust .section-title { color: var(--white); }
.section-trust .section-body  { color: rgba(255,255,255,0.7); margin: 16px auto 0; }

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 52px;
}
.trust-metric {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 24px;
  transition: background 0.25s;
}
.trust-metric:hover { background: rgba(255,255,255,0.09); }
.tm-icon {
  width: 44px; height: 44px;
  margin: 0 auto 16px;
  color: var(--gold-light);
}
.tm-icon svg { width: 100%; height: 100%; }
.trust-metric h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.trust-metric p { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.65; }

/* ── WHY CYPRUS ── */
.section-whycyprus { background: var(--ivory); overflow: hidden; }

.whycyprus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cyprus-reasons { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.reason { display: flex; align-items: flex-start; gap: 14px; }
.reason-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--blue-ultra);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-deep);
}
.reason-icon svg { width: 18px; height: 18px; }
.reason strong { display: block; font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.reason span { font-size: 13px; color: var(--text-muted); }

.map-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.map-visual { position: relative; margin-bottom: 20px; }
.cyprus-map-svg { width: 100%; display: block; }
.pulse-ring { animation: map-pulse 2.8s ease-out infinite; }
@keyframes map-pulse {
  0%   { r: 5;  opacity: 0.7; }
  100% { r: 20; opacity: 0; }
}
.map-overlay-tag {
  position: absolute;
  top: 10px; right: 0;
  background: var(--blue-ultra);
  border: 1px solid var(--blue-pale);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-dm);
  font-size: 11px;
  color: var(--blue-deep);
  font-weight: 500;
}
.map-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.ms { text-align: center; flex: 1; }
.ms strong { display: block; font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; color: var(--blue-deep); }
.ms span { font-family: var(--font-dm); font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }
.ms-d { width: 1px; height: 30px; background: var(--border); }

/* ── AI ── */
.section-ai { background: var(--white); }

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-visual { position: relative; }
.ai-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.ai-badge {
  position: absolute;
  top: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  font-family: var(--font-dm);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.ai-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(74,128,196,0.25);
  animation: pulse-blue 2.2s ease-in-out infinite;
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,128,196,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(74,128,196,0.08); }
}

.ai-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.aif-bar span {
  display: block;
  font-family: var(--font-dm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.bar {
  height: 5px;
  background: var(--beige);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-soft));
  border-radius: 3px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── CTA / CONTACT ── */
.section-cta { background: var(--sand); }

.cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.cta-sub {
  font-family: var(--font-dm);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { margin-bottom: 24px; }

label {
  font-family: var(--font-dm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--beige);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(74,128,196,0.08);
}
textarea { resize: none; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238898AA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-success.visible { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: var(--text-secondary); }

/* ── FOOTER ── */
.footer { background: var(--text-primary); padding: 72px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); font-size: 20px; }
.footer-brand .logo-sub  { color: var(--gold); }
.footer-brand > p {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.social-link svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-family: var(--font-dm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-family: var(--font-dm); font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal       { transform: translateY(24px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }

/* ── SHAKE ── */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-8px); }
  30%       { transform: translateX(8px); }
  50%       { transform: translateX(-5px); }
  70%       { transform: translateX(5px); }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1100px) {
  .agencies-cards { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-gap: 72px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .value-grid,
  .buyers-grid,
  .ai-inner,
  .whycyprus-inner { grid-template-columns: 1fr; gap: 48px; }

  .value-cards-stack { height: 240px; }

  .steps-row { flex-direction: column; gap: 14px; }
  .step-connector { display: none; }

  .trust-metrics { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 680px) {
  :root { --section-gap: 60px; }
  .container, .container-wide { padding: 0 20px; }

  .hero-stats { gap: 16px; padding: 16px 20px; }
  .stat-divider { height: 22px; }

  .agencies-cards { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .sticky-cta { right: 16px; bottom: 20px; }

  .hero-sub br { display: none; }
}

/* ── LANG SWITCHER — mobile ── */
@media (max-width: 900px) {
  .lang-switcher { display: none; }
}

/* ── HERO mobile — no vertical centering (content can overflow 100svh) ── */
@media (max-width: 1024px) {
  /* On tablets and wide phones the lang-switcher may still be visible;
     give the hero badge extra clearance so it never overlaps the nav */
  .hero-content {
    padding-top: 140px;
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 150px; /* 72px nav + 78px breathing — badge safely below nav on all phones */
    padding-bottom: 60px;
  }
}

/* ── HERO headline — small screens ── */
@media (max-width: 480px) {
  .hero-content {
    padding-top: 160px; /* extra room on narrow phones — badge well below nav */
  }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-divider { display: none; }
  .cta-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}

/* ── NAV inner — tight on small screens ── */
@media (max-width: 400px) {
  .nav-inner { padding: 0 16px; }
  .nav { padding: 0; }
}
