:root {
  --primary: #082640;
  --primary-2: #0e3557;
  --accent: #d6a52b;
  --accent-soft: rgba(214, 165, 43, 0.14);
  --text: #17202a;
  --muted: #5f6f82;
  --white: #ffffff;
  --soft: #f5f8fc;
  --border: #e6ecf3;
  --shadow: 0 20px 60px rgba(8, 38, 64, 0.10);
  --shadow-strong: 0 25px 80px rgba(8, 38, 64, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #ffffff;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-shell {
  overflow: hidden;
  min-height: 100vh;
}

.container {
  width: min(1200px, calc(100% - 34px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,236,243,0.9);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 38, 64, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-subtitle {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 2px;
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #253445;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 78px 0 50px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-bg-shape-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(214,165,43,0.13), transparent 68%);
  top: -120px;
  left: -100px;
}

.hero-bg-shape-b {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(8,38,64,0.08), transparent 66%);
  right: -180px;
  top: -60px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9d7208;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.eyebrow-dark {
  background: rgba(255,255,255,0.08);
  color: #f6d277;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5.3vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 780px;
}

.hero-text {
  margin: 18px 0 0;
  font-size: 1.03rem;
  line-height: 1.85;
  color: #334155;
  max-width: 760px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.btn-light {
  background: white;
  color: var(--primary);
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span,
.pill-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 10px 24px rgba(8,38,64,0.06);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-logo-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, #082640 0%, #0d3556 60%, #153f63 100%);
  box-shadow: var(--shadow-strong);
  padding: 22px;
  overflow: hidden;
}

.hero-logo-card::before,
.hero-logo-card::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(214,165,43,0.55);
  border-radius: 30px;
}

.hero-logo-card::before {
  width: 150px;
  height: 150px;
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}

.hero-logo-card::after {
  width: 120px;
  height: 120px;
  right: 18px;
  bottom: 18px;
  border-left: 0;
  border-top: 0;
}

.logo-frame {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 24px;
}

.hero-logo {
  width: min(100%, 450px);
  margin: 0 auto;
  border-radius: 24px;
}

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

.mini-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  min-height: 128px;
}

.mini-card.full-card {
  grid-column: 1 / -1;
  min-height: auto;
}

.mini-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.mini-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
}

.mini-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7fbff 0%, #f3f7fb 100%);
}

.stats-strip {
  padding-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card,
.service-card,
.quote-panel,
.contact-box {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-card {
  border-radius: 28px;
  padding: 28px;
}

.stat-card h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.service-card {
  border-radius: 28px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(214,165,43,0.10), transparent 66%);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 16px 30px rgba(8,38,64,0.18);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: center;
}

.showcase-copy h2,
.contact-main h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lead {
  margin: 16px 0 0;
  color: #334155;
  line-height: 1.9;
  font-size: 1.02rem;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.showcase-card {
  position: relative;
  min-height: 420px;
  border-radius: 32px;
  background: linear-gradient(145deg, #082640 0%, #103a5d 100%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 28px;
}

.quote-panel {
  position: relative;
  z-index: 1;
  max-width: 420px;
  border-radius: 28px;
  padding: 30px;
  background: rgba(255,255,255,0.92);
}

.quote-panel p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.8;
  font-weight: 600;
}

.logo-watermark {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 310px;
  opacity: 0.14;
}

.contact-section {
  background: linear-gradient(145deg, #082640 0%, #0f3558 60%, #143f66 100%);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.contact-main p {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-list span {
  display: block;
  color: #f2c95b;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.contact-list a,
.contact-list p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: white;
}

.contact-box {
  border-radius: 30px;
  padding: 28px;
}

.contact-box h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.3rem;
}

.contact-box p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  background: #061d31;
  color: rgba(255,255,255,0.88);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  background: white;
}

.footer-brand strong {
  display: block;
}

.footer-brand p,
.footer-meta span {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f1bf44);
  color: #082640;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(8, 38, 64, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 1024px) {
  .hero-grid,
  .showcase-grid,
  .contact-grid,
  .stats-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .topbar-inner {
    min-height: 76px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 17px;
    left: 17px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
    padding: 10px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
  }

  .nav a:hover {
    background: #f4f8fc;
  }

  .nav a::after { display: none; }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-info-grid,
  .stats-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

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

  .footer-meta {
    text-align: left;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    font-size: 0.76rem;
  }

  .hero h1,
  .section-heading h2,
  .showcase-copy h2,
  .contact-main h2 {
    line-height: 1.02;
  }

  .quote-panel p {
    font-size: 1.05rem;
  }

  .floating-call {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
