/* ============================================
   CyprusRealReturns v2 — Main Stylesheet
   Premium Mediterranean Real Estate Investment
   ============================================ */

/* === CSS Custom Properties === */
:root {
  --blue: #1863DC;
  --navy: #19388A;
  --navy-dark: #0A1628;
  --gold: #D4AF37;
  --gold-light: #E8C94A;
  --gold-dark: #B8941F;
  --dark: #212121;
  --text: #333333;
  --text-light: #666666;
  --bg-light: #F4F6FA;
  --white: #FFFFFF;
  --border: #E0E4ED;
  --shadow: 0 2px 16px rgba(24,99,220,0.08);
  --shadow-lg: 0 8px 32px rgba(24,99,220,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --max-width: 1200px;
  --header-height: 80px;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header / Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 0 32px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo span {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

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

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 7px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
  background: rgba(24,99,220,0.06);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  padding: 4px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.lang-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 6px;
  transition: all var(--transition);
}

.lang-switcher a:hover {
  background: var(--white);
  color: var(--blue);
}

.lang-switcher a.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0A1628 0%, #1863DC 50%, #19388A 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 24px 80px;
}

.hero[style*="background-image"] {
  background-blend-mode: overlay;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to bottom, rgba(5,15,40,0.72) 0%, rgba(5,15,40,0.62) 60%, rgba(5,15,40,0.78) 100%),
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(24,99,220,0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(25,56,138,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero .subtitle {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero .desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.95);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.4);
  color: var(--navy-dark);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}

.btn-gold:hover {
  background: #c9a227;
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,175,55,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--navy);
  transform: translateY(-2px);
}

/* === Trust Bar === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item .label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

/* === Section Styles === */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-gold {
  background: linear-gradient(135deg, #B8941F 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy-dark);
}

.section-gold h2,
.section-gold h3 {
  color: var(--navy-dark);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.section-navy .section-header p,
.section-gold .section-header p {
  color: rgba(255,255,255,0.8);
}

.section-gold .section-header p {
  color: rgba(10,22,40,0.7);
}

/* === How It Works === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(24,99,220,0.2);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Feature Cards === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(24,99,220,0.08);
  color: var(--blue);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === Investment Tiers === */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.tier-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.tier-card.featured {
  border-color: var(--gold);
  position: relative;
}

.tier-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.tier-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.tier-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.tier-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.tier-header .roi {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

.tier-card.featured .tier-header .roi {
  color: var(--gold-dark);
}

.tier-header .min-invest {
  font-size: 0.95rem;
  color: var(--text-light);
}

.tier-features {
  padding: 24px 28px;
  list-style: none;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.925rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-light);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features .check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-card.featured .tier-features .check {
  color: var(--gold-dark);
}

.tier-ideal {
  padding: 16px 28px;
  background: var(--bg-light);
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.tier-cta {
  padding: 20px 28px 28px;
  text-align: center;
}

.tier-cta .btn {
  width: 100%;
  justify-content: center;
}

.tiers-shared {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.tiers-shared h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.tiers-shared ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.tiers-shared li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.925rem;
  color: var(--text);
}

.tiers-shared .check {
  color: var(--blue);
  font-weight: 700;
}

/* === Calculator === */
.calculator-section {
  position: relative;
}

.calculator-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(10,22,40,0.4);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.15);
}

.section-gold .calculator-wrap {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
}

.calc-slider-group {
  margin-bottom: 32px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-label span {
  font-weight: 600;
  font-size: 0.95rem;
}

.calc-label .calc-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

.section-gold .calc-label .calc-value {
  color: var(--navy-dark);
}

/* Custom Range Slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 3px solid var(--white);
  transition: transform var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 3px solid var(--white);
}

/* Calc Toggle */
.calc-toggles {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.calc-toggle-group {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.calc-toggle-group button {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.section-gold .calc-toggle-group button {
  color: rgba(10,22,40,0.6);
}

.calc-toggle-group button.active {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Calc Results */
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.calc-result-card {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.section-gold .calc-result-card {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
}

.calc-result-card .result-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-weight: 500;
}

.section-gold .calc-result-card .result-label {
  color: rgba(10,22,40,0.6);
}

.calc-result-card .result-value {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.section-gold .calc-result-card .result-value {
  color: var(--navy-dark);
}

.calc-cta {
  text-align: center;
}

.calc-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  line-height: 1.5;
}

.section-gold .calc-disclaimer {
  color: rgba(10,22,40,0.5);
}

/* === Pitch Page Calculator Aliases === */
/* pitch.php uses different class names — aliased to match main calculator CSS */
.calculator-widget {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(10,22,40,0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(25,56,138,0.15);
}

.calc-slider-wrap {
  margin-bottom: 32px;
}

.calc-slider-wrap label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.calc-amount-display {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 10px;
}

.calc-result-card .calc-period {
  font-size: 0.85rem;
  color: rgba(10,22,40,0.6);
  margin-bottom: 8px;
  font-weight: 500;
}

.calc-result-card .calc-return {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.calc-result-featured {
  background: rgba(25,56,138,0.08);
  border-color: rgba(25,56,138,0.25) !important;
}

.calc-tier-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1.5rem;
  min-height: 1.2em;
}

/* Cards inside light calculator widget */
.calculator-widget .calc-result-card {
  background: rgba(25,56,138,0.05);
  border: 1px solid rgba(25,56,138,0.12);
}

/* Range slider track in light context */
.calculator-widget input[type="range"] {
  background: rgba(25,56,138,0.15);
}

/* === Why Cyprus Stats === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.stat-card .stat-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.stat-card p {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

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

.benefit-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
}

.benefit-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-info .name {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--dark);
}

.testimonial-info .details {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* === CTA Banner === */
.cta-banner {
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-navy .cta-banner h2 {
  color: var(--white);
}

.cta-banner p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* === FAQ === */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--blue);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question .icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === Contact Form === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(24,99,220,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
  display: block;
}

.form-message.error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
  display: block;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.contact-card .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: all var(--transition);
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.whatsapp:hover {
  background: #1DA851;
  color: var(--white);
  transform: translateY(-2px);
}

.social-btn.telegram {
  background: #0088CC;
}

.social-btn.telegram:hover {
  background: #006DAA;
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact sidebar — light background overrides */
.contact-sidebar .contact-card-inner {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(25,56,138,0.08);
}

.contact-sidebar .contact-card-inner h3 {
  color: var(--navy);
}

.contact-sidebar .contact-card-response,
.contact-sidebar .contact-card-hours {
  color: var(--text-light);
  opacity: 1;
}

/* Book a Call card */
.contact-book-card {
  display: flex;
  align-items: flex-start;
}

.contact-book-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%;
  text-align: center;
}

.contact-book-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-book-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-book-inner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

/* === About Page === */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro .story-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-intro .story-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.about-visual {
  background: linear-gradient(135deg, var(--navy-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
}

.about-visual .big-number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.about-visual .big-label {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
}

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

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(24,99,220,0.08);
  color: var(--blue);
}

.value-card .value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* === Legal Page === */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* === Page Hero (inner pages) === */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* === Footer === */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* === Animations === */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.animate-in:nth-child(2),
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3),
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4),
.fade-up:nth-child(4) { transition-delay: 0.25s; }
.animate-in:nth-child(5),
.fade-up:nth-child(5) { transition-delay: 0.3s; }
.animate-in:nth-child(6),
.fade-up:nth-child(6) { transition-delay: 0.35s; }

/* === Responsive === */
@media (max-width: 1024px) {
  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .features-grid,
  .stats-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .logo span {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .features-grid,
  .stats-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .calc-results {
    grid-template-columns: 1fr;
  }

  .calculator-wrap {
    padding: 28px 20px;
  }

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

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    padding: calc(var(--header-height) + 24px) 20px 60px;
  }

  .hero .desc {
    font-size: 1rem;
  }

  .lang-switcher {
    margin-left: 8px;
  }

  .cta-banner {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .calc-toggles {
    flex-direction: column;
  }

  .calc-toggle-group {
    width: 100%;
  }

  .calc-toggle-group button {
    flex: 1;
  }
}

/* ============================================
   NEW SECTIONS — Investor Pitch Homepage
   ============================================ */

/* === Scroll Progress Bar === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* === Euro Symbol Floating Animation === */
.euro-symbols {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.euro-symbols span {
  position: absolute;
  bottom: -60px;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.12);
  animation: float-euro linear infinite;
  font-family: var(--font-mono);
  font-weight: 700;
}

@keyframes float-euro {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* === Hero Line-by-Line Animation === */
.hero-line {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-in 0.8s ease forwards;
}

.hero-line-1 { animation-delay: 0.2s; }
.hero-line-2 { animation-delay: 0.6s; }
.hero-line-3 { animation-delay: 1.0s; }

@keyframes hero-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Section Dark (Problem) === */
.section-dark {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 100px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.problem-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(24,99,220,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all var(--transition);
}
.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.problem-icon {
  color: #D4AF37;
  margin-bottom: 20px;
}

.problem-item p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.problem-solution {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(212,175,55,0.3);
  margin-top: 20px;
}
.problem-solution p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* === Numbers Section === */
.section-numbers {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

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

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
}

.number-item .number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.number-item .label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.numbers-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  gap: 8px;
}

.badge-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
}

.badge-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-light);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
}

.badge-seal svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* === Trust & Security Section === */
.section-trust {
  background: var(--bg-light);
  padding: 100px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.trust-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(24,99,220,0.08);
  color: var(--blue);
  margin-bottom: 20px;
}

.trust-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.6;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.trust-logo-badge svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* === Consultation Section === */
.consultation-section .consultation-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.consultation-form iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius);
}

.consultation-contact-card {
  display: flex;
  align-items: flex-start;
}

.contact-card-inner {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-card-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-card-response,
.contact-card-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 8px;
}

.contact-card-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  word-break: break-all;
}

.contact-card-email:hover {
  background: var(--navy-dark, #0f2260);
  transform: translateY(-2px);
}

.calculator-consultation {
  text-align: center;
  margin-top: 32px;
}

/* === Why Cyprus Layout === */
.why-cyprus-layout {
  position: relative;
}

.cyprus-map-silhouette {
  text-align: center;
  margin-top: 48px;
  opacity: 0.6;
}

/* === Properties Page === */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.property-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
}

.property-status-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.status-active {
  background: #065f46;
  color: #6ee7b7;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.status-small {
  background: var(--navy);
  color: #ffffff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* === Property Sourcing Section === */
.sourcing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.sourcing-step {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}

.sourcing-step-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.sourcing-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.sourcing-step p {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .sourcing-steps {
    grid-template-columns: 1fr;
  }
}

.property-info {
  padding: 28px;
}

.property-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.property-location svg {
  color: var(--blue);
  flex-shrink: 0;
}

.property-info p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.property-meta {
  margin-bottom: 20px;
}

.property-range {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
}

.property-info .btn {
  width: 100%;
  justify-content: center;
}

/* === Thank You Page === */
.thankyou-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.thankyou-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.thankyou-icon {
  color: var(--blue);
  margin-bottom: 24px;
}

.thankyou-text {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 32px;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Responsive — New Sections === */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .consultation-section .consultation-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .section-dark {
    padding: 64px 0;
  }

  .section-numbers {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .numbers-badges {
    flex-direction: column;
    align-items: center;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Team Grid ── */
/* ===== TEAM SECTION ===== */
.team-section {
  padding: 0;
  background: var(--light-bg, #f8f9fc);
}

/* Group photo banner */
.team-banner {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.team-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.team-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24,99,220,0.55) 0%, rgba(25,56,138,0.82) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-banner-text {
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}
.team-banner-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.team-banner-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto;
}

/* Individual cards grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3.5rem 0 4rem;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .team-banner { height: 300px; }
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(24,99,220,0.10);
  border: 1px solid rgba(24,99,220,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(24,99,220,0.18);
}

/* Card header — navy band with avatar overlapping */
.team-card-header {
  background: linear-gradient(135deg, var(--royal, #1863DC) 0%, var(--navy, #19388A) 100%);
  height: 90px;
  position: relative;
  display: flex;
  justify-content: center;
}
.team-avatar {
  position: absolute;
  bottom: -44px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold, #D4AF37);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  background: #eee;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Card body */
.team-card-body {
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy, #19388A);
  margin-bottom: 0.4rem;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold, #D4AF37);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.team-card-body p {
  font-size: 0.9rem;
  color: var(--text-light, #6b7280);
  line-height: 1.65;
}

/* ===== PITCH PAGE — NEW SECTIONS (v2.1) ===== */

/* Overview Grid: Entry / Advantages / Exit */
.pitch-overview .overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .pitch-overview .overview-grid { grid-template-columns: 1fr; }
}
.overview-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid var(--blue);
}
.overview-card-featured {
  border-top-color: var(--gold);
  background: var(--blue);
  color: #fff;
}
.overview-card.overview-card-featured h3 { color: var(--gold) !important; }
.overview-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.overview-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blue);
}
.overview-card-featured .overview-icon,
.overview-card-featured ul.overview-list li { color: rgba(255,255,255,0.9); }
.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overview-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.overview-card-featured .overview-list li { border-bottom-color: rgba(255,255,255,0.15); }
.overview-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.overview-card-featured .overview-list li::before { color: var(--gold); }

/* PDF Materials & Language Flags */
.pitch-materials { background: #f8f9fa; }
.lang-flags-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}
.lang-flag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.lang-flag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--gold);
  color: var(--blue);
}
.lang-flag-card img { border-radius: 4px; }
.pdf-preview {
  text-align: center;
  margin-top: 1rem;
}
.pdf-download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s;
}
.pdf-preview a:hover .pdf-download-btn { background: var(--blue); color: #fff; }

/* Video Section */
.pitch-video { background: var(--dark); }
.section-dark { background: var(--dark); }
.pitch-video .section-title { color: #fff; }
.video-wrapper {
  max-width: 860px;
  margin: 2rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.video-wrapper iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

/* Active language flag highlight */
.lang-flag-card.lang-flag-active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
}
.lang-flag-card.lang-flag-active span { color: var(--blue); font-weight: 700; }

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ============================================ */

/* --- Missing Base Styles (Pitch Page Components) --- */

.section-light {
  background: var(--bg-light);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.pitch-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  margin-top: 48px;
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Why Cyprus grid (pitch page) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.why-card-content {
  padding: 1.5rem;
}

.why-stat {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Stat cards on light backgrounds (pitch trust numbers) */
.section-light .stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

/* Trust items inside trust-grid (pitch page uses trust-item, not trust-card) */
.trust-grid .trust-item {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 32px 24px;
  text-align: center;
}

.trust-grid .trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.trust-grid .trust-item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.trust-grid .trust-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}


/* === RESPONSIVE: Tablet (max-width: 1024px) === */

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

  .trust-grid .trust-item {
    border-right: none;
  }
}


/* === RESPONSIVE: Mobile (max-width: 768px) === */

@media (max-width: 768px) {
  /* Container */
  .container {
    padding: 0 20px;
  }

  .header .container {
    padding: 0 16px;
  }

  /* Hero — all pages */
  .hero {
    min-height: 80vh;
    padding: calc(var(--header-height) + 20px) 20px 48px;
  }

  .pitch-hero {
    min-height: 75vh !important;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero .subtitle,
  .hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  }

  .hero .desc {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .pitch-badge {
    font-size: 0.78rem;
    padding: 6px 16px;
  }

  .scroll-indicator {
    margin-top: 32px;
  }

  /* Page hero (inner pages) */
  .page-hero {
    padding: calc(var(--header-height) + 32px) 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .page-hero p {
    font-size: 1rem;
    padding: 0 16px;
  }

  /* Section padding — override 64px → 48px */
  .section {
    padding: 48px 0;
  }

  .section-dark,
  .section-trust,
  .section-numbers {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  /* Section titles (pitch) */
  .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Trust items inside trust-grid (pitch page) */
  .trust-grid .trust-item {
    padding: 24px 20px;
  }

  /* Trust badges */
  .trust-badges {
    gap: 10px;
  }

  .trust-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  /* Calculator widget (pitch light version) */
  .calculator-widget {
    padding: 28px 20px;
  }

  /* CTA banner — override 60px → 48px */
  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  /* Tiers shared */
  .tiers-shared {
    padding: 24px 20px;
  }

  .tiers-shared ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* About */
  .about-intro {
    gap: 32px;
    margin-bottom: 48px;
  }

  .about-visual {
    padding: 32px 24px;
  }

  .about-visual .big-number {
    font-size: 3rem;
  }

  /* Consultation */
  .consultation-section .consultation-content {
    gap: 24px;
  }

  /* Legal */
  .legal-content h2 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
  }

  /* Prevent horizontal scroll */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  iframe {
    max-width: 100%;
  }

  /* PDF preview */
  .pdf-preview img {
    border-radius: 8px !important;
  }

  /* Video */
  .video-wrapper {
    border-radius: 10px;
  }
}


/* === RESPONSIVE: Small Mobile (max-width: 480px) === */

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }

  .header .container {
    padding: 0 12px;
  }

  /* Typography */
  body {
    font-size: 15px;
  }

  /* Sections */
  .section {
    padding: 32px 0;
  }

  .section-dark,
  .section-trust,
  .section-numbers,
  .section-light {
    padding: 32px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
    padding: calc(var(--header-height) + 16px) 16px 36px;
  }

  .pitch-hero {
    min-height: 70vh !important;
  }

  .hero h1,
  .hero-title {
    font-size: 1.6rem;
  }

  .hero .subtitle,
  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero .desc {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .pitch-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-cta .btn {
    max-width: none;
  }

  /* Page hero */
  .page-hero {
    padding: calc(var(--header-height) + 20px) 0 28px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  /* Section title */
  .section-title {
    font-size: 1.35rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Steps */
  .step-number {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
  }

  .step-card h3 {
    font-size: 1.1rem;
  }

  /* Stat cards */
  .stat-card {
    padding: 24px 16px;
  }

  .stat-card .stat-number {
    font-size: 2.25rem;
  }

  /* Stats grid — reinforce 1-col */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* Feature cards */
  .feature-card {
    padding: 24px 20px;
  }

  /* Trust cards */
  .trust-card {
    padding: 24px 20px;
  }

  .trust-grid .trust-item {
    padding: 20px 16px;
  }

  /* Testimonial cards */
  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: 10px;
    left: 16px;
  }

  /* Tier cards */
  .tier-header {
    padding: 24px 20px 20px;
  }

  .tier-header h3 {
    font-size: 1.25rem;
  }

  .tier-features {
    padding: 20px;
  }

  .tier-cta {
    padding: 16px 20px 24px;
  }

  .tier-ideal {
    padding: 12px 20px;
  }

  /* Tiers shared */
  .tiers-shared {
    padding: 20px 16px;
  }

  /* Calculator */
  .calculator-wrap {
    padding: 24px 16px;
  }

  .calculator-widget {
    padding: 24px 16px;
  }

  .calc-label .calc-value {
    font-size: 1.25rem;
  }

  .calc-result-card .result-value,
  .calc-result-card .calc-return {
    font-size: 1.35rem;
  }

  .calc-result-card {
    padding: 16px 12px;
  }

  /* Overview cards */
  .overview-card {
    padding: 1.5rem;
  }

  /* Why cards */
  .why-card img {
    height: 180px;
  }

  .why-stat {
    font-size: 1.5rem;
  }

  /* FAQ */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 0.875rem;
  }

  /* Contact */
  .contact-grid {
    gap: 24px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card-inner {
    padding: 24px 20px;
  }

  .contact-book-inner {
    padding: 24px 20px;
  }

  .contact-card-email {
    font-size: 0.8rem;
    padding: 12px 14px;
  }

  /* About */
  .about-intro {
    gap: 24px;
    margin-bottom: 40px;
  }

  .about-visual {
    padding: 28px 20px;
  }

  .about-visual .big-number {
    font-size: 2.5rem;
  }

  /* Number items */
  .number-item {
    padding: 20px 12px;
  }

  .number-item .number {
    font-size: 1.75rem;
  }

  /* Problem items */
  .problem-item {
    padding: 24px 16px;
  }

  /* Values cards */
  .value-card {
    padding: 24px 16px;
  }

  /* Footer */
  .footer {
    padding: 32px 0 0;
  }

  .footer-brand p {
    font-size: 0.8rem;
    max-width: none;
  }

  .footer h4 {
    font-size: 0.85rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.72rem;
    padding: 16px 0;
  }

  /* CTA banner */
  .cta-banner {
    padding: 32px 0;
  }

  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.925rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Lang switcher compact */
  .lang-switcher a {
    width: 28px;
    height: 24px;
    font-size: 0.7rem;
  }

  /* Scroll indicator */
  .scroll-indicator {
    margin-top: 24px;
  }

  .scroll-indicator span {
    font-size: 1.5rem;
  }

  /* Team */
  .team-banner {
    height: 220px;
  }

  .team-banner-text h2 {
    font-size: 1.4rem;
  }

  .team-banner-text p {
    font-size: 0.9rem;
  }

  /* Consultation */
  .consultation-section .consultation-content {
    gap: 20px;
  }

  /* Legal */
  .legal-content h2 {
    font-size: 1.15rem;
    margin: 24px 0 10px;
  }

  /* Materials */
  .lang-flag-card {
    padding: 0.75rem 1rem;
  }

  .lang-flags-grid {
    gap: 0.75rem;
  }
}


/* === RESPONSIVE: Extra Small (max-width: 360px) === */

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .header .container {
    padding: 0 10px;
  }

  .hero h1,
  .hero-title {
    font-size: 1.4rem;
  }

  .hero .subtitle,
  .hero-subtitle {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .number-item .number {
    font-size: 1.5rem;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 0.925rem;
  }

  .lang-switcher {
    gap: 1px;
  }

  .lang-switcher a {
    width: 26px;
    height: 22px;
    font-size: 0.65rem;
  }

  /* Prevent text overflow */
  h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  .logo img {
    height: 36px;
  }

  /* Tier header */
  .tier-header h3 {
    font-size: 1.15rem;
  }

  .tier-header .roi {
    font-size: 1.05rem;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 14px;
    font-size: 0.85rem;
    gap: 10px;
  }
}
