:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #0f2f73;
  --text: #10203a;
  --muted: #4d5d7a;
  --brand: #1650d2;
  --brand-deep: #0b2c79;
  --gold: #f2b33d;
  --gold-soft: #ffe3a3;
  --border: rgba(16, 32, 58, 0.08);
  --shadow: 0 24px 60px rgba(10, 31, 79, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 179, 61, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(22, 80, 210, 0.2), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #eef3fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 80%);
}

.site-shell {
  position: relative;
}

.hero,
.section,
.footer {
  padding-inline: 24px;
}

.topbar,
.hero-panel,
.section > *,
.footer > * {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.hero {
  padding-top: 24px;
  padding-bottom: 36px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(20, 42, 95, 0.08);
}

.brand img {
  display: block;
  width: 180px;
  max-width: 100%;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.section-accent,
.contact-card,
.service-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 46px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 246, 255, 0.84)),
    linear-gradient(160deg, rgba(22, 80, 210, 0.1), transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 179, 61, 0.45), rgba(242, 179, 61, 0));
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.section-text,
.service-card p,
.value-item p,
.contact-card p,
.info-card p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #081631;
  background: linear-gradient(135deg, #ffd67c, var(--gold));
  box-shadow: 0 12px 24px rgba(242, 179, 61, 0.3);
}

.button-secondary {
  color: var(--brand-deep);
  background: rgba(22, 80, 210, 0.08);
  border: 1px solid rgba(22, 80, 210, 0.18);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 80, 210, 0.08);
  font-weight: 700;
  line-height: 1.5;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface-strong), rgba(235, 242, 255, 0.96));
}

.logo-wrap {
  display: grid;
  place-items: center;
  padding: 20px;
  min-height: 310px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, #ffffff, #f7faff),
    radial-gradient(circle at top right, rgba(22, 80, 210, 0.1), transparent 50%);
  border: 1px solid rgba(22, 80, 210, 0.08);
}

.logo-wrap img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff;
}

.info-card p,
.info-card h2 {
  color: inherit;
}

.info-card p {
  margin-top: 12px;
  opacity: 0.92;
}

.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 16ch;
}

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

.service-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 80, 210, 0.12), rgba(22, 80, 210, 0));
}

.service-number {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242, 179, 61, 0.16);
  color: #9a6504;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3,
.value-item h3,
.contact-card h3 {
  margin-bottom: 10px;
}

.section-accent {
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(125deg, rgba(11, 44, 121, 0.98), rgba(22, 80, 210, 0.92)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 35%);
  color: #fff;
}

.section-accent .eyebrow,
.section-accent .section-text,
.section-accent p,
.section-accent h2,
.section-accent h3 {
  color: inherit;
}

.section-accent .eyebrow {
  color: var(--gold-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-item {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.contact-card a {
  color: var(--brand-deep);
  font-weight: 700;
}

.contact-cta {
  background:
    linear-gradient(135deg, rgba(242, 179, 61, 0.18), rgba(255, 255, 255, 0.94)),
    #fff;
}

.footer {
  padding-top: 10px;
  padding-bottom: 40px;
}

.footer > * {
  padding-top: 20px;
  border-top: 1px solid rgba(16, 32, 58, 0.08);
}

.footer p {
  margin: 0;
}

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

  .hero-panel {
    align-items: start;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .footer {
    padding-inline: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 14px;
  }

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

  .hero-copy,
  .hero-card,
  .section-accent,
  .contact-card,
  .service-card {
    padding: 22px;
  }

  .logo-wrap {
    min-height: 220px;
  }

  h1 {
    max-width: 100%;
  }
}
