:root {
  --brand-green: #1a9f49;
  --brand-green-light: #7bcf58;
  --brand-blue: #0f4f8f;
  --ink-deep: #1f2a34;
  --ink-muted: #4f6576;
  --paper: #f1f5f7;
  --line-soft: rgba(21, 88, 131, 0.2);
  --shadow: 0 28px 56px rgba(14, 44, 69, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Hind", sans-serif;
  color: var(--ink-deep);
  background:
    radial-gradient(circle at 12% 16%, rgba(123, 207, 88, 0.16), transparent 34%),
    radial-gradient(circle at 85% 82%, rgba(15, 79, 143, 0.12), transparent 38%),
    linear-gradient(130deg, #eef5f3 0%, #f5f7f9 48%, #ebf0f4 100%);
  position: relative;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 159, 73, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 79, 143, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000 36%, transparent 100%);
  pointer-events: none;
}

.page-shell {
  width: min(1120px, 92vw);
  margin: 4.5rem auto;
}

.hero-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  backdrop-filter: blur(8px);
  padding: clamp(1.75rem, 3.2vw, 3rem);
}

.brand-block {
  display: flex;
  align-items: center;
  min-height: 120px;
}

.brand-logo {
  max-width: min(340px, 100%);
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-fallback {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-green);
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-blue);
}

h1 {
  margin: 0.6rem 0 1rem;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  color: #133a66;
  max-width: 16ch;
}

.hero-copy > p {
  margin: 0;
  max-width: 54ch;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.contact-footer {
  margin-top: 1.25rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(14, 44, 69, 0.12);
  padding: clamp(1.25rem, 2.8vw, 2rem);
}

.contact-footer h2 {
  margin: 0 0 1.35rem;
  font-family: "Exo 2", sans-serif;
  font-size: 2.05rem;
  color: var(--brand-blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.6rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  align-items: start;
  gap: 0.72rem;
  margin-bottom: 1rem;
}

.icon {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(123, 207, 88, 0.22), rgba(26, 159, 73, 0.18));
  color: var(--brand-green);
  font-size: 1.18rem;
}

.label {
  margin: 0;
  color: #0c4a86;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0.1rem 0;
  font-size: 1.02rem;
  color: var(--ink-deep);
  line-height: 1.42;
}

a {
  color: #0d5ca7;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.24s ease, color 0.24s ease;
}

a:hover,
a:focus-visible {
  color: #0b4378;
  border-color: currentColor;
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-up 0.72s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.34s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-card {
    gap: 1.5rem;
  }

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

@media (max-width: 640px) {
  .page-shell {
    margin: 2rem auto;
  }

  .hero-card {
    border-radius: 24px;
    padding: 1.25rem;
  }

  h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.4rem);
  }

  .contact-footer h2 {
    font-size: 1.6rem;
  }
}
