body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  background: linear-gradient(135deg, #050816, #071a2f);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(5,8,22,0.75);
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

nav a:hover {
  color: #00d4ff;
}

.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  color: #cbd5e1;
  line-height: 1.8;
}

.hero-text span {
  color: #00d4ff;
}

.btn {
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #6f5cff, #00c2ff);
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
}

.btn:hover {
  opacity: 0.95;
}

.glass {
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.glass::before {
  content: "";
  position: absolute;
  inset: -25px;
  background:
    radial-gradient(circle, #00c2ff33, transparent 60%),
    radial-gradient(circle, #8a5cff33, transparent 60%);
  filter: blur(30px);
  z-index: -1;
}

.hero-art img {
  width: 100%;
  filter: saturate(1.3) contrast(1.05) brightness(1.05)
          drop-shadow(0 30px 70px rgba(0,0,0,0.6));
}

.chips {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 15px;
}

.chip,
.card,
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}

.chip {
  padding: 12px;
}

.chip h4,
.card h3 {
  margin-top: 0;
}

.chip p,
.card p,
.contact-intro p,
.contact-intro li {
  color: #cbd5e1;
}

.services {
  padding: 60px 0;
}

.services h2,
.contact-intro h2 {
  font-size: 34px;
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.card {
  padding: 20px;
}

.contact-section {
  padding: 20px 0 70px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-intro ul {
  padding-left: 18px;
  line-height: 1.8;
}

.contact-form-card {
  padding: 24px;
}

.form-row {
  display: grid;
  gap: 16px;
}

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

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 15px;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.submit-btn {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 700;
}

.form-status.pending {
  color: #93c5fd;
}

.form-status.success {
  color: #86efac;
}

.form-status.error {
  color: #fca5a5;
}

.footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

  .chips,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 38px;
  }
}
