:root {
  --brand-blue: #159fe2;
  --brand-blue-dark: #0f8fcd;
  --brand-blue-soft: #eef8fd;
  --brand-blue-soft-2: #f6fbfe;
  --brand-text: #2c2c2c;
  --brand-muted: #5d6771;
  --brand-muted-2: #66707a;
  --brand-border: #dbe9f2;
  --brand-border-strong: #cfe4f1;
  --brand-bg-soft: #fbfdff;
  --brand-white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(15, 54, 84, 0.06);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--brand-text);
  background: var(--brand-white);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #d7e7f3;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #4b5560;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-blue);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: all 0.25s ease;
  text-align: center;
}

.btn--primary {
  background: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 10px 30px rgba(21, 159, 226, 0.18);
}

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

.btn--outline {
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-white);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--brand-blue-soft);
}

.btn--ghost {
  border: 1px solid #d2e6f3;
  color: #3d4650;
  background: var(--brand-white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #f7fbfe;
}

.section {
  padding: 1.5rem 0;
}

.section--soft {
  background: var(--brand-bg-soft);
}

.section-divider {
  border-bottom: 1px solid #e7eef4;
}

.hero-section {
  padding: 1rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow,
.section-kicker,
.card-tag,
.stat-card__label,
.service-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.eyebrow {
  padding: 0.75rem 1rem;
  border: 1px solid #cfe7f5;
  border-radius: 999px;
  background: var(--brand-blue-soft-2);
}

.hero-copy h1,
.section-heading h2,
.info-card h2,
.info-card h3,
.service-card h3,
.contact-panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  color: var(--brand-text);
}

.hero-copy h1 {
  max-width: 13ch;
  margin-top: 1.5rem;
  font-size: clamp(3rem, 3vw, 5.15rem);
  line-height: 1.02;
}

.lead,
.section-heading p,
.info-card p,
.service-card p,
.contact-panel p,
.site-footer p {
  margin: 0;
  color: var(--brand-muted);
}

.lead {
  max-width: 44rem;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card,
.service-card,
.info-card,
.contact-card {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1.4rem;
}

.stat-card strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.85rem;
  line-height: 1.2;
  color: var(--brand-text);
}

.hero-panel {
  background: #f8fbfd;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.hero-panel__grid {
  display: grid;
  /*grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);*/
  gap: 1.5rem;
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
}

.info-card h2 {
  margin-top: 1rem;
  font-size: 2.1rem;
  line-height: 1.15;
}

.info-card h3 {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.15;
}

.info-card p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.bullet-boxes {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.bullet-box {
  padding: 1rem 1rem;
  border-radius: 1rem;
  background: var(--brand-blue-soft);
  color: #35607a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}

.info-card--mascot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 31rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef8fd 100%);
  border-color: var(--brand-border-strong);
}

.info-card__content {
  position: relative;
  z-index: 2;
}

.mascot-orb {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #dff4fd;
}

.mascot-image {
  position: relative;
  z-index: 2;
  width: auto;
  height: 24rem;
  margin: 1.25rem auto 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(21, 159, 226, 0.12));
}

.section-heading--narrow {
  max-width: 52rem;
}

.section-heading--left {
  max-width: 40rem;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.section-heading p {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

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

.service-card {
  padding: 1.75rem;
}

.service-card h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.2;
}

.service-card strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--brand-blue);
  font-size: 1.12rem;
  font-weight: 800;
}

.service-card p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.service-card--featured {
  border-color: var(--brand-blue);
  background: #f4fbff;
}

.service-card--soft {
  background: var(--brand-bg-soft);
}

.corporate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  background: #f8fbfd;
}

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

.contact-card {
  display: block;
  padding: 1.5rem;
  min-height: 100%;
}

.contact-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.contact-card span {
  display: block;
  margin-top: 0.65rem;
  line-height: 1.7;
}

.contact-card--light {
  color: var(--brand-text);
  background: var(--brand-white);
}

.contact-card--light span {
  color: var(--brand-muted);
}

.contact-card--accent {
  color: var(--brand-white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.contact-card--accent span {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e4edf4;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 54rem;
}

.site-footer__brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__brand p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--brand-muted-2);
}

.site-footer__meta {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-align: right;
}

@media (max-width: 1180px) {
  .hero-grid,
  .corporate-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    /*padding-top: 0.35rem;*/
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-panel__grid,
  .cards-grid--4,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section,
  .hero-section {
    padding: 2rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    display: flex;
    justify-content: center;
  }

  .main-nav,
  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .lead,
  .section-heading p,
  .service-card p,
  .contact-panel p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-panel,
  .contact-panel {
    padding: 1.25rem;
  }

  .hero-panel__grid,
  .cards-grid--4,
  .cards-grid--2,
  .hero-stats,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .info-card,
  .service-card,
  .stat-card,
  .contact-card {
    padding: 1.35rem;
  }

  .info-card h2,
  .info-card h3 {
    font-size: 1.7rem;
  }

  .mascot-image {
    height: 20rem;
  }

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

  .site-footer__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .main-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .header-actions,
  .hero-actions {
    /*flex-direction: column;*/
  }

  .btn {
    width: 100%;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .stat-card strong {
    font-size: 1.6rem;
  }

  .info-card--mascot {
    min-height: auto;
  }

  .mascot-image {
    height: 17rem;
  }
}
