:root{
  --bg:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --soft:#f7f7fb;

  /* palette (calm + premium accent) */
  --primary:#0EA5E9;
  --secondary:#7C3AED;

  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

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

/* ===== TOPBAR ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__dot{
  width:12px; height:12px; border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(14,165,233,.14);
}
.brand__text span{
  display:block;
  font-size:.85rem;
  color:var(--muted);
}

.nav{display:flex; gap:14px; flex-wrap:wrap}
.nav a{font-size:.95rem; color:var(--muted)}
.nav a:hover{color:var(--text); text-decoration:none}

.topbar__cta{display:flex; gap:10px; align-items:center}

/* ===== LANGUAGE FLAGS (inside topbar) ===== */
.langbar__inner{
  display:flex;
  gap:10px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,0.10);
  backdrop-filter: blur(8px);
}

.lang-btn{
  border:0;
  background:transparent;
  cursor:pointer;
  padding:6px 8px;
  border-radius:12px;
  line-height:1;
  transition: transform .12s ease, background .12s ease, outline-color .12s ease;
}

.lang-btn:hover{
  transform: translateY(-1px);
  background: rgba(14,165,233,.12);
}

.flag{
  font-size: 22px;
  line-height: 1;
  display:block;
}

.lang-btn.active{
  background: rgba(14,165,233,.18);
  outline: 1px solid rgba(14,165,233,.28);
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--card);
  cursor:pointer;
  font-weight:700;
}

.btn--lg{
  padding:12px 18px;
  font-size:1rem;
}

.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color:#fff;
  border:none;
  border-radius:14px;
  padding:14px 22px;
  box-shadow: 0 14px 28px rgba(14,165,233,.25);
}

.btn--primary:hover{
  text-decoration:none;
  box-shadow: 0 18px 34px rgba(124,58,237,.28);
  transform: translateY(-1px);
}

.btn--outline{
  background:transparent;
  border-color: rgba(14,165,233,.45);
  color: var(--primary);
}

.btn--outline:hover{
  border-color: rgba(124,58,237,.55);
  text-decoration:none;
}

.btn--ghost{
  background:transparent;
}

.btn--ghost:hover{
  text-decoration:none;
  border-color: rgba(0,0,0,.12);
}

/* ===== HERO ===== */
.hero{
  padding:56px 0 34px;
  background:
    radial-gradient(1200px 500px at 10% 10%, rgba(14,165,233,.14), transparent 60%),
    radial-gradient(900px 400px at 80% 20%, rgba(124,58,237,.10), transparent 55%),
    linear-gradient(180deg, rgba(14,165,233,.07), rgba(255,255,255,1));
  border-bottom:1px solid var(--line);
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:start;
}

.badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(14,165,233,.22);
  color:var(--muted);
  font-weight:700;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height:1.15;
}

h1 span{
  color:var(--muted);
  font-weight:800;
  font-size: .62em;
  display:block;
  margin-top:8px;
}

.hero__subtitle{
  font-size:1.05rem;
  color:var(--text);
  font-weight:800;
  margin:0 0 10px;
}

.hero__text{
  color:var(--muted);
  font-size:1.02rem;
  margin:0 0 18px;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.disclaimer{
  margin:14px 0 0;
  color:var(--muted);
  font-size:.92rem;
}

/* ===== HERO CARD ===== */
.hero__card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding:18px;
}

.profile{
  display:flex;
  gap:14px;
  align-items:center;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}

.profile__photo{
  width:64px; height:64px;
  border-radius:16px;
  background: var(--soft);
  display:grid;
  place-items:center;
  color:var(--muted);
  font-weight:800;
}

.profile__name{margin:0}
.profile__role{margin:4px 0 0; color:var(--muted)}

.quick{display:grid; gap:10px; margin-top:14px}

.quick__item{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.06);
  background:rgba(247,247,251,.75);
}

.quick__label{
  font-size:.82rem;
  color:var(--muted);
  font-weight:800;
}

.quick__value{
  font-weight:800;
}

/* ===== SECTIONS ===== */
.section{padding:56px 0}

.section--alt{
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__title{
  margin:0 0 10px;
  font-size:1.8rem;
}

.section__lead{
  margin:0 0 22px;
  color:var(--muted);
  font-size:1.03rem;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
  padding:18px;
}

.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

/* Services grid */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.service{
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
}

.service h3{margin:0 0 6px}
.service p{margin:0; color:var(--muted)}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.step{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:var(--card);
  font-weight:800;
}

.step span:first-child{
  display:inline-grid;
  place-items:center;
  width:28px; height:28px;
  border-radius:999px;
  background:rgba(14,165,233,.14);
  color: var(--primary);
  margin-right:8px;
}

/* Center CTA area */
.center{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}

/* FAQ */
.faq details{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 16px;
  background:var(--card);
  margin-bottom:12px;
}

.faq summary{
  cursor:pointer;
  font-weight:900;
}

.faq p{
  color:var(--muted);
  margin:10px 0 0;
}

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

.infoBox{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background:var(--card);
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}

.note{
  margin-top:12px;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.6);
  color:var(--muted);
}

.contact__form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background:var(--card);
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}

.contact__form h3{margin:0 0 12px}

label{display:block; font-weight:900; margin:12px 0 6px}

input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--line);
  outline:none;
  font:inherit;
}

input:focus, textarea:focus{
  border-color: rgba(14,165,233,.55);
}

/* Testimonial author */
.testimonial-author{
  margin-top: 10px;
  font-weight: 800;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background:#fff;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
}

.footer__small{font-size:.92rem}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px){
  .hero__grid{grid-template-columns: 1fr}
  .nav{display:none}

  /* flags: keep them visible on mobile; if you want to hide, change to display:none */
  .langbar__inner{
    padding: 6px 8px;
    gap: 8px;
  }
  .flag{ font-size: 20px; }

  .cards{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
}
.flag-img{
  width: 26px;
  height: 18px;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(15,23,42,.12);
}
.profile__photo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}

.profile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.profile__photo {
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
