:root {
  --bg: #000000;
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .08);
  --text: rgba(255, 255, 255, .88);
  --muted: rgba(255, 255, 255, .68);

  --green: #D4AF37;
  --green2: #C08C2E;
  --lime: #FFE066;

  --shadow: 0 18px 60px rgba(0, 0, 0, .35);
  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, #D4AF37, transparent 60%),
    radial-gradient(900px 600px at 85% 0%, #FFE066, transparent 55%),
    var(--bg);
  color: var(--text);
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 0;
  position: relative;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 30px;
}

.brand-text span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.nav {
  display: none;
  gap: 16px;
  align-items: center;
  position: absolute;
  left: 0;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 18px;
}

.nav a:hover {
  color: var(--text);
}

.burger {
  position: absolute;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: background .18s ease, border-color .18s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(255, 255, 255, .85);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform .3s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 20px 16px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  font-weight: 600;
  transition: background .18s ease, color .18s ease;
  text-align: center;
  display: block;
  width: 100%;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #FFE066;
  background: linear-gradient(135deg, #FFE066, #9e873b);
  color: rgba(255, 255, 255, .92);
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn:active {
  transform: translateY(0);
}

.btn-ghost {
  background: linear-gradient(135deg, #FFE066, #9e873b);
}

.btn-small {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
}

.btn-wide {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 48px 0 26px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}

.hero-copy h1 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.6vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-copy .accent {
  color: var(--lime);
  text-shadow: 0 0 28px rgba(183, 243, 151, .18);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .75);
  font-weight: 700;
  font-size: 13px;
}

.pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(57, 211, 83, .35);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

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

.trust-item {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.trust-item strong {
  display: block;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  display: block;
  margin-top: 4px;
}

.hero-card {
  display: grid;
  gap: 12px;
}

.hero-photo {
  height: 220px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .55)),
    url("https://images.pexels.com/photos/6474193/pexels-photo-6474193.jpeg?cs=srgb&dl=pexels-tima-miroshnichenko-6474193.jpg&fm=jpg");
  background-size: cover;
  background-position: center;
}

.card {
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 6px;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 14px;
}

.mini {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  font-weight: 650;
  font-size: 14px;
}

.mini-ico {
  width: 22px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -180px -160px auto -160px;
  height: 360px;
  background: radial-gradient(closest-side at 30% 30%, rgba(57, 211, 83, .22), transparent 70%),
    radial-gradient(closest-side at 70% 50%, rgba(183, 243, 151, .12), transparent 75%);
  filter: blur(10px);
  pointer-events: none;
}

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

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .03), transparent);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 14px;
}

.services {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 243, 151, .20);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.service-body {
  padding: 16px;
}

.service-body--noimg {
  padding: 18px;
}

.service-body h3 {
  margin: 0 0 6px;
}

.service-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.service-body ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .80);
}

.service-body li {
  margin: 6px 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(57, 211, 83, .10);
  border: 1px solid rgba(57, 211, 83, .22);
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  font-size: 12px;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius2);
  background: rgba(183, 243, 151, .08);
  border: 1px solid rgba(183, 243, 151, .22);
}

.note p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}

.about-card,
.contact-card {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
  padding: 18px;
}

.about-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.about-item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.about-ico {
  width: 26px;
  text-align: center;
}

.about-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.35;
}

.kv {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 12px;
  margin: 12px 0 16px;
}

.k {
  color: rgba(255, 255, 255, .70);
  font-weight: 800;
  font-size: 13px;
}

.v {
  color: rgba(255, 255, 255, .88);
}

.v a {
  color: var(--lime);
  font-weight: 800;
}

/* Contact Tabs */
.contact-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius2);
  padding: 6px;
}

.contact-tab {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.contact-tab:hover {
  background: rgba(255, 255, 255, .06);
}

.contact-tab.active {
  background: linear-gradient(135deg, rgba(57, 211, 83, .22), rgba(24, 179, 107, .14));
  color: rgba(255, 255, 255, .92);
  transform: translateY(-1px);
}

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

.form {
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, .82);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .88);
  outline: none;
  font-size: 14px;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .45);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(183, 243, 151, .30);
  box-shadow: 0 0 0 4px rgba(183, 243, 151, .10);
}

/* Select dropdown styling */
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.88)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

select option {
  background: #0b1220;
  color: rgba(255, 255, 255, .88);
  padding: 10px 12px;
  border: none;
}

select option:checked {
  background: linear-gradient(rgb(57, 211, 83), rgb(57, 211, 83));
  color: white;
}

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

.side {
  display: grid;
  gap: 12px;
}

.side-box {
  padding: 18px;
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
}

.side-box h3 {
  margin: 0 0 10px;
}

.checklist {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .82);
}

.checklist li {
  margin: 7px 0;
}

.side-box-accent {
  background: linear-gradient(135deg, rgba(57, 211, 83, .12), rgba(183, 243, 151, .08));
  border-color: rgba(183, 243, 151, .22);
}

.big a {
  font-size: 22px;
  font-weight: 900;
  color: var(--lime);
}

/* Footer */
.footer {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .10);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
}

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

.fine {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  line-height: 1.5;
}

.footer-fine {
  margin-top: 10px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero-card {
    margin-top: 12px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head p {
    max-width: 100%;
  }
}

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

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

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

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    order: 3;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .header-inner {
    justify-content: flex-start;
    padding-right: 52px;
  }

  .brand {
    flex: 1;
    min-width: 0;
    margin-right: 8px;
  }

  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-text strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .mobile-nav:not([hidden]) {
    display: flex !important;
  }

  .hero-copy h1 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .lead {
    font-size: 15px;
  }

  .hero-photo {
    height: 180px;
  }

  .section {
    padding: 40px 0;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .contact-grid,
  .hero-grid {
    gap: 12px;
  }

  .kv {
    grid-template-columns: 100px 1fr;
    gap: 8px 10px;
  }
}