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

:root {
  --navy:   #1A1055;
  --brand:  #231D68;
  --gold:   #C9A84C;
  --gold-light: #E8C96A;
  --white:  #FFFFFF;
  --light:  #E2E8F0;
  --muted:  #94A3B8;
  --text:   #1E293B;
  --section-bg: #0F0A3C;
}

html { scroll-behavior: smooth; }

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { line-height: 1.75; }

.gold       { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

/* ── Layout helpers ───────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-dark { background: var(--section-bg); color: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.text-center  { text-align: center; }
.label-chip { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); border-radius: 20px; padding: 4px 14px; margin-bottom: 16px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: inherit; font-weight: 600; font-size: 15px; padding: 14px 30px; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-gold  { background: var(--gold); color: #1A1055; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(35,29,104,.08);
  padding: 0 24px;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(35,29,104,.12); }
.navbar-inner { max-width: 1100px; margin: 0 auto; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.navbar-logo img { height: 38px; }
.navbar-cta { display: flex; gap: 12px; align-items: center; }
.navbar-phone { color: var(--brand); font-size: 14px; font-weight: 600; text-decoration: none; }
.navbar-phone:hover { color: var(--gold); }

/* Navbar gombok: .com stílusú */
.navbar .btn-gold  { background: var(--gold); color: var(--navy); font-size: 14px; padding: 9px 22px; border-radius: 6px; }
.navbar .btn-outline { border: 2px solid var(--brand); color: var(--brand); font-size: 14px; padding: 9px 22px; border-radius: 6px; }
.navbar .btn-outline:hover { background: var(--brand); color: #fff; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
  text-align: center;
}

/* Dubai háttérkép */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../img/dubai-landscape.jpg') center center / cover no-repeat;
}
/* Overlay – könnyű fehér, épületek látszanak mint a .com-on */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.62);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
  width: 100%;
  padding: 0 24px;
}

/* .com: nagy, centrált, sötét navy szöveg */
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--brand);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-content h1 em { color: var(--gold); font-style: normal; }

.hero-content .lead {
  color: #4B5563;
  font-size: clamp(16px, 2vw, 19px);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* CTA gombok – centrálva, .com stílus */
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-content .btn-navy   { background: var(--brand); color: #fff; border-radius: 50px; padding: 16px 40px; font-size: 16px; border: none; }
.hero-content .btn-navy:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(35,29,104,.28); }
.hero-content .btn-ghost  { background: transparent; color: var(--brand); font-size: 16px; padding: 16px 28px; border: none; font-weight: 600; }
.hero-content .btn-ghost:hover { color: var(--gold); }

.hero-badges { display: flex; gap: 32px; margin-top: 56px; flex-wrap: wrap; justify-content: center; }
.hero-badge  { display: flex; align-items: center; gap: 8px; color: #374151; font-size: 13px; font-weight: 500; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── Why ──────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
@media(max-width:768px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.2); border-radius: 12px; padding: 32px; }
.why-card .icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 { color: var(--white); margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,.65); font-size: 14px; }

/* ── Process ──────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
@media(max-width:900px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { text-align: center; padding: 24px 16px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-step h3 { font-size: 15px; margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: var(--muted); }

/* ── Funnel banner ────────────────────────────────────────── */
.funnel-banner { background: linear-gradient(135deg, var(--brand), #3730A3); border-radius: 16px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-top: 48px; }
.funnel-banner h3 { color: var(--white); font-size: 22px; max-width: 520px; }
.funnel-banner p  { color: rgba(255,255,255,.7); margin-top: 8px; font-size: 14px; }

/* ── Form section ─────────────────────────────────────────── */
.form-section { background: #F8FAFC; }
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-card { background: var(--white); border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.10); padding: 48px; }
@media(max-width:600px) { .form-card { padding: 28px 20px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media(max-width:560px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #E2E8F0; border-radius: 8px; padding: 12px 14px;
  font-size: 14px; font-family: inherit; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(35,29,104,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--brand); }
.form-check label { font-size: 13px; color: #6B7280; }
.form-check a { color: var(--brand); }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 16px; padding: 16px; }
.form-msg { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; }
.form-msg.success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.form-msg.error   { background: #FFF1F2; color: #991B1B; border: 1px solid #FECACA; }

/* ── Calendly ─────────────────────────────────────────────── */
.calendly-section { background: var(--white); }
.calendly-wrap { max-width: 900px; margin: 48px auto 0; border-radius: 16px; overflow: hidden; border: 1px solid #E2E8F0; box-shadow: 0 4px 24px rgba(0,0,0,.08); }

/* ── Trust bar ────────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 32px 0; }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { text-align: center; color: var(--white); }
.trust-item .num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.trust-item .lbl { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: #0F0A3C; padding: 48px 0 28px; color: rgba(255,255,255,.6); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-logo img { height: 32px; margin-bottom: 12px; }
.footer-logo p { font-size: 13px; max-width: 280px; line-height: 1.6; }
.footer-links h4 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.footer-links a { display: block; color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; margin-bottom: 8px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Sticky CTA bar (mobile) ──────────────────────────────── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--navy); padding: 12px 16px; border-top: 2px solid var(--gold); }
@media(max-width:640px) { .sticky-cta { display: flex; gap: 10px; } }
.sticky-cta .btn { flex: 1; justify-content: center; padding: 12px; font-size: 14px; }

/* ── Scrolled navbar ──────────────────────────────────────── */
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.3); }

/* ── Divider ──────────────────────────────────────────────── */
.gold-line { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 32px; }
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── Notification dot ─────────────────────────────────────── */
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
