:root {
  --color-background: #f7f7fb;
  --color-surface: #ffffff;
  --color-primary: #2b59c3;
  --color-primary-dark: #1f4190;
  --color-text: #1f2933;
  --color-muted: #4a5568;
  --shadow-soft: 0 12px 30px rgba(36, 62, 99, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
}

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

a:hover,
a:focus-visible {
  color: var(--color-primary);
}

.container {
  width: min(100% - 3rem, 1100px);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: 100%;
}

.honeypot {
  display: none;
}

.form-message {
  margin: 0;
  font-weight: 700;
  display: none;
}

.form-message.success {
  color: #2d9d78;
}

.form-message.error {
  color: #c0392b;
}

.brand {
  max-width: 240px;
  width: 100px;
  height: 100px
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.hero {
  padding: 6rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(43, 89, 195, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(43, 89, 195, 0.08), rgba(247, 179, 43, 0.12));
}

.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-text h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.hero .lead {
  color: var(--color-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

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

.panel-item p {
  margin: 0;
  color: var(--color-muted);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(43, 89, 195, 0.15);
}

.btn.primary {
  background: var(--color-primary);
  color: white;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--color-primary-dark);
}

.btn.ghost {
  border-color: rgba(43, 89, 195, 0.4);
  color: var(--color-primary);
  background: transparent;
}

.contact {
  padding: 5rem 0;
}

.contact .container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.contact-copy p {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
}

.contact-details {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #d8dee9;
  font: inherit;
  background: #fdfdfd;
}

input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(43, 89, 195, 0.35);
  border-color: rgba(43, 89, 195, 0.65);
}

textarea {
  resize: vertical;
}

.site-footer {
  background: #0f172a;
  color: #e4e9f2;
  padding: 1.5rem 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.5rem;
  }

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