:root{
  --bg: #0b0c0f;
  --card: #12141a;
  --muted: #9aa3b2;
  --text: #eef1f6;
  --accent: #f5c542; /* cashew-ish gold */
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 500px at 20% 0%, rgba(245,197,66,0.12), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(120,180,255,0.10), transparent 60%),
              var(--bg);
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11,12,15,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

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

.logo{
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 6px;
}

.brand-text h1{
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
}
.brand-text p{
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.nav{
  display: flex;
  gap: 14px;
}
.nav a{
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  border: 1px solid transparent;
}
.nav a:hover{
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}

.hero{
  padding: 26px 0 10px;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.hero-left h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
}
.hero-left p{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero-image{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}

.badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge{
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.section{
  padding: 36px 0;
}
.section-alt{
  padding: 36px 0 54px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h3{
  margin: 0 0 10px;
  font-size: 24px;
}
.lead{
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.about-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
.card h4{
  margin: 0 0 8px;
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.two-col{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  align-items: start;
}

.panel{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.services{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.88);
}
.services li{
  margin: 8px 0;
  color: var(--muted);
}

.note{
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(245,197,66,0.35);
  background: rgba(245,197,66,0.06);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.table-wrap{
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.price-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.price-table th, .price-table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
}
.price-table thead th{
  background: rgba(255,255,255,0.04);
  text-align: left;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.price-table tbody td{
  color: var(--muted);
}
.price-table tbody tr:hover td{
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
}
.right{ text-align: right; }

.cta-strip{
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(245,197,66,0.25);
  background: rgba(245,197,66,0.07);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.9);
  transition: transform 0.08s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{
  background: rgba(245,197,66,0.18);
  border-color: rgba(245,197,66,0.35);
}
.btn.ghost{
  background: rgba(255,255,255,0.03);
}
.btn.small{
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.footer{
  padding: 22px 0;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-image{ height: 280px; }
  .about-cards{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}
