:root {
  --bg: #07111f;
  --bg-alt: #0f172a;
  --panel: #111d2d;
  --panel-soft: rgba(17, 29, 45, 0.8);
  --card: #16263a;
  --text: #edf4ff;
  --muted: #b4bfd1;
  --accent: #f6c84c;
  --accent-strong: #f0b400;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(1, 7, 18, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(246, 200, 76, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #081523 100%);
  color: var(--text);
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(7, 17, 31, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(246, 200, 76, 0.22));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
  padding: 0.8rem 1.2rem;
  background: var(--accent);
  color: #111827;
  box-shadow: 0 10px 30px rgba(246, 200, 76, 0.28);
}

.btn {
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111827;
  box-shadow: 0 16px 35px rgba(246, 200, 76, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.hero-copy h1,
.section-header h2,
.about-copy h2,
.contact-panel h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 620px;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: var(--text);
}

.highlights li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-frame {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.logo-frame {
  background: radial-gradient(circle at top, rgba(246, 200, 76, 0.18), rgba(15, 23, 42, 0.8) 42%);
  padding: 32px 18px;
}

.image-frame img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 18px;
  background: transparent;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(6, 214, 160, 0.12);
  border: 1px solid rgba(6, 214, 160, 0.25);
  color: #d9ffee;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2be38c;
  box-shadow: 0 0 0 8px rgba(43, 227, 140, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 36px;
}

.stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--accent);
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 72px 0 0;
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2,
.about-copy h2,
.contact-panel h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.narrow {
  text-align: center;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: rgba(246, 200, 76, 0.12);
  border: 1px solid rgba(246, 200, 76, 0.3);
}

.service-card h3 {
  margin: 1.1rem 0 0.6rem;
  font-size: 1.2rem;
}

.service-card p,
.feature-item p,
.contact-panel p,
.about-copy p,
.step p,
blockquote,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process {
  padding-top: 84px;
}

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

.step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.7rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(246, 200, 76, 0.12);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.75rem;
}

.about {
  padding-top: 92px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.feature-item span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(43, 227, 140, 0.12);
  color: #7ef0b7;
  font-weight: 800;
}

.feature-item h3 {
  margin: 0 0 0.35rem;
}

.about-panel {
  background: linear-gradient(180deg, rgba(246, 200, 76, 0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.7rem;
  box-shadow: var(--shadow);
}

.about-panel h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 2;
}

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

blockquote {
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  font-size: 1.03rem;
}

blockquote footer {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.contact {
  padding: 94px 0 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel,
.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.8rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-list div {
  display: grid;
  gap: 4px;
}

.contact-list span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

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

.form-note {
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(7, 17, 31, 0.6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .card-grid,
  .testimonial-grid,
  .steps,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .nav {
    min-height: 68px;
    flex-wrap: wrap;
    row-gap: 12px;
    padding: 10px 0;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 118px);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav-cta {
    margin-left: auto;
    width: auto;
    padding: 0.7rem 0.9rem;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 56px;
  }

  .stats,
  .card-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

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