:root {
  --bg: #0b0f14;
  --card: #111826;
  --text: #e6eef8;
  --muted: #a8b3c7;
  --accent: #7dd3fc;
  --accent2: #a78bfa;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(125, 211, 252, 0.18), transparent 60%),
    radial-gradient(900px 600px at 110% 0%, rgba(167, 139, 250, 0.16), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-header {
  min-height: 420px;
  background:
    linear-gradient(rgba(6, 11, 19, 0.5), rgba(6, 11, 19, 0.62)),
    url("../images/header-bg.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.2), rgba(11, 15, 20, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 48px;
}

.brand-row {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.9), rgba(167, 139, 250, 0.9));
  box-shadow: var(--shadow);
}

.brand h1 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.brand p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  color: var(--text);
  transition: transform 0.06s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pill:active {
  transform: translateY(1px);
}

.hero-copy {
  max-width: 640px;
  margin-top: 72px;
}

.hero-copy h2 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.08;
}

.hero-copy p {
  margin: 0;
  font-size: 17px;
  color: rgba(230, 238, 248, 0.9);
}

main.wrap {
  padding-top: 28px;
  padding-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.card {
  background: rgba(17, 24, 38, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: center;
}

.portrait {
  width: 160px;
  height: 200px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    url("../images/portrait.jpg") center/cover no-repeat;
}

.hero-card h2 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.sub,
.muted {
  color: var(--muted);
}

.sub {
  margin: 0 0 12px;
  font-size: 14px;
}

.kpis {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
}

.section {
  padding: 16px 18px 18px;
}

.section-top-border {
  border-top: 1px solid var(--border);
}

.section h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.2px;
}

ul {
  margin: 10px 0 0 18px;
  padding: 0;
  color: var(--text);
}

li {
  margin: 6px 0;
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-item b {
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 18px 18px;
}

.img {
  height: 140px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  position: relative;
}

.img.one {
  background: url("../images/notary-1.jpg") center/cover no-repeat;
}

.img.two {
  background: url("../images/notary-2.jpg") center/cover no-repeat;
}

form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

label {
  font-size: 12px;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  outline: none;
}



textarea {
  min-height: 110px;
  resize: vertical;
}

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

.btn {
  cursor: pointer;
  border: none;
  padding: 12px 14px;
  border-radius: 14px;
  color: #07111f;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 30px rgba(125, 211, 252, 0.15);
}

.form-note,
.fineprint {
  margin-top: 0;
  font-size: 12px;
}

.hidden-field {
  display: none;
}

footer {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
}

.footer-title {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-copy {
    margin-top: 48px;
  }
}

@media (max-width: 520px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h2 {
    font-size: 34px;
  }
}
