*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #05060a;
  color: #f8fafc;
}

body {
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3);
}

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

.brand-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e5e7eb;
  font-weight: 600;
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #64748b;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: #cbd5f5;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #a855f7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
}

.btn-small {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-accent {
  background: radial-gradient(circle at 0 0, #22d3ee, #6366f1 40%, #a855f7 80%);
  color: #f9fafb;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.4);
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(59, 130, 246, 0.6);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.3);
  color: #e5e7eb;
}

.btn-ghost:hover {
  border-color: rgba(129, 140, 248, 0.6);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/gentlemen-hero.jpg');
  background-position: center;
  background-size: cover;
  filter: saturate(0.9);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.55), transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(244, 63, 94, 0.4), transparent 55%),
              rgba(15, 23, 42, 0.89);
  mix-blend-mode: normal;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px 64px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero h1 span {
  display: inline-block;
}

.hero-subtitle {
  margin: 0 0 28px;
  color: #cbd5f5;
  font-size: 15px;
  max-width: 460px;
}

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

.section {
  padding: 72px 20px;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.12), transparent 55%),
              #020617;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: 24px;
  margin: 0 0 18px;
  color: #c4b5fd;
}

.section-text {
  margin: 0;
  max-width: 640px;
  font-size: 15px;
  color: #e5e7eb;
}

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

.card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 22px 20px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, #22d3ee, #a855f7 80%);
  font-size: 20px;
}

.card h3 {
  margin: 4px 0 4px;
  font-size: 16px;
  color: #f9fafb;
}

.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5f5;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

label {
  font-size: 13px;
  color: #cbd5f5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

input,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  padding: 10px 11px;
  font-size: 14px;
  color: #f9fafb;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
textarea:focus {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.8);
  background: rgba(15, 23, 42, 0.95);
}

textarea {
  resize: vertical;
}

.form-full {
  width: 100%;
}

.form-submit {
  align-self: flex-start;
  margin-top: 4px;
}

.contact-extra {
  margin-top: 18px;
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.link {
  color: #38bdf8;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.dot {
  opacity: 0.6;
}

.footer {
  border-top: 1px solid rgba(30, 64, 175, 0.7);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 60%),
              #020617;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #9ca3af;
}

.footer-right {
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 56px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 4px;
  }

  .hero {
    min-height: 460px;
  }

  .hero-inner {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .hero-content {
    max-width: none;
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
