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

:root {
  --black:   #0a0a0a;
  --dark:    #111318;
  --dark2:   #1a1d24;
  --dark3:   #22262f;
  --gold:    #c9a84c;
  --gold2:   #e2c06e;
  --white:   #f5f5f5;
  --muted:   #8a8f9e;
  --border:  rgba(201,168,76,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 72px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.lang-toggle {
  display: flex; gap: 0.3rem;
}
.lang-btn {
  background: none; border: 1px solid var(--border);
  color: var(--muted); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; padding: 4px 10px;
  border-radius: 3px; cursor: pointer; transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 6vw 80px;
  position: relative; overflow: hidden;
}

.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  opacity: 0.18;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(160deg, rgba(10,10,10,0.97) 0%, rgba(17,19,24,0.88) 55%, rgba(13,17,23,0.95) 100%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 2; opacity: 0.03;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 3; max-width: 860px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 1.6rem;
}
.hero h1 em {
  font-style: normal; color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted); max-width: 580px;
  line-height: 1.7; margin-bottom: 3rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0a0a0a;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; border: 1.5px solid rgba(245,245,245,0.2);
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-1px); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 2rem; font-weight: 900; color: var(--gold);
  letter-spacing: -1px; line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ─── SECTION SHARED ─── */
section { padding: 96px 6vw; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-tag::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--gold);
}

.section-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; letter-spacing: -0.8px; line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-h2 em { font-style: normal; color: var(--gold); }

.section-lead {
  font-size: 1.05rem; color: var(--muted); max-width: 600px; line-height: 1.7;
}

/* ─── WHY SWITZERLAND ─── */
.why-ch { background: var(--black); }

.why-ch-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}

.why-ch-img {
  width: 100%; height: 220px; object-fit: cover; object-position: center 60%;
  border-radius: 12px 12px 0 0;
  display: block;
  border: 1px solid var(--border); border-bottom: none;
}

.flag-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-top: none; border-radius: 0 0 12px 12px;
  padding: 36px 40px 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.flag-icon {
  width: 60px; height: 60px; background: #d52b1e;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.flag-card h3 { font-size: 1.3rem; font-weight: 800; }
.flag-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 2rem; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.feature-list li .icon {
  flex-shrink: 0; width: 32px; height: 32px;
  background: rgba(201,168,76,0.12); border: 1px solid var(--border);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gold);
}
.feature-list li .text strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.feature-list li .text span { font-size: 0.85rem; color: var(--muted); }

/* ─── SERVICES ─── */
.services { background: var(--dark); }
.services-header { margin-bottom: 3.5rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden;
}

.service-card {
  background: var(--dark2); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.service-card:hover { background: var(--dark3); }

.service-card.featured {
  background: linear-gradient(135deg, #16191f 0%, #1e2028 100%);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  margin: -1.5px;
  z-index: 1;
}

.service-badge {
  display: inline-block;
  background: var(--gold); color: #0a0a0a;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  margin-bottom: 1.4rem;
}

.service-num {
  font-size: 3.5rem; font-weight: 900; color: rgba(201,168,76,0.08);
  position: absolute; top: 20px; right: 24px;
  line-height: 1; letter-spacing: -2px;
}

.service-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.9rem; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.service-points {
  list-style: none; margin-top: 1.4rem;
  display: flex; flex-direction: column; gap: 8px;
}
.service-points li {
  font-size: 0.84rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.service-points li::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ─── HOW IT WORKS ─── */
.process { background: var(--black); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}

.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px; background: var(--border);
}

.step { text-align: center; padding: 0 20px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--dark2); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
}
.step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; }
.step p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ─── WHY US ─── */
.why-us { background: var(--dark); }
.why-us-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 3.5rem;
}
.why-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 10px; padding: 36px 30px;
  transition: border-color 0.25s, transform 0.2s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.why-card .wicon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.7rem; }
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── CONTACT ─── */
.contact { background: var(--black); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.contact-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }

.contact-detail {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.2rem;
}
.contact-detail .cicon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.82rem; color: var(--gold); margin-bottom: 2px; }
.contact-detail span { font-size: 0.9rem; color: var(--muted); }

.contact-form {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px;
}
.contact-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.6rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark3); border: 1px solid rgba(138,143,158,0.2);
  border-radius: 6px; padding: 12px 14px;
  color: var(--white); font-family: inherit; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 6px; justify-content: center; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer .logo { font-size: 1.2rem; }
footer p { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .why-ch-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .hero-stats { gap: 1.8rem; flex-wrap: wrap; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
}
