:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #5f6b7a;
  --line: rgba(15, 23, 42, 0.08);
  --card: rgba(255, 255, 255, 0.84);
  --shadow: 0 20px 50px rgba(31, 41, 55, 0.08);
  --pink: #e91e63;
  --orange: #f97316;
  --yellow: #facc15;
  --green: #84cc16;
  --blue: #06b6d4;
  --navy: #0f172a;
  --purple: #7c3aed;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.09), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.08), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

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

 a {
  text-decoration: none;
 }

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

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

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

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

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.83rem;
  white-space: nowrap;
}

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

.nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-button,
.primary-btn,
.secondary-btn,
.contact-box,
.floating-call {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-button {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(233, 30, 99, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  padding: 56px 0 30px;
}

.eyebrow,
.mini-title {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  color: var(--navy);
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 22px 0 0;
}

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

.primary-btn,
.secondary-btn {
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  box-shadow: 0 14px 30px rgba(6, 182, 212, 0.23);
}

.secondary-btn {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.quick-points {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-points li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(31, 41, 55, 0.04);
}

.quick-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--blue));
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-card {
  position: relative;
  width: min(100%, 560px);
  padding: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  object-fit: contain;
}

.logo-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.45;
  z-index: 1;
}

.glow-1 {
  width: 180px;
  height: 180px;
  top: -20px;
  left: -20px;
  background: rgba(233, 30, 99, 0.32);
}

.glow-2 {
  width: 210px;
  height: 210px;
  right: -40px;
  bottom: -30px;
  background: rgba(6, 182, 212, 0.28);
}

.section-card,
.feature-band {
  margin-top: 28px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow);
}

.section-card {
  padding: 34px;
}

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

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.1;
}

.section-card p,
.feature-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.services {
  padding: 34px 0 6px;
}

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

.service-card {
  position: relative;
  min-height: 170px;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 34px rgba(31, 41, 55, 0.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 110px;
  height: 110px;
  border-radius: 24px;
  opacity: 0.12;
  transform: rotate(22deg);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 22px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.35;
  color: var(--navy);
}

.accent-pink .service-number, .accent-pink::after { background: var(--pink); }
.accent-yellow .service-number, .accent-yellow::after { background: #eab308; }
.accent-green .service-number, .accent-green::after { background: var(--green); }
.accent-blue .service-number, .accent-blue::after { background: var(--blue); }
.accent-orange .service-number, .accent-orange::after { background: var(--orange); }
.accent-purple .service-number, .accent-purple::after { background: var(--purple); }

.feature-band {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.feature-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(248,250,252,0.95));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.feature-logo {
  width: min(100%, 430px);
}

.contact-panel {
  margin-top: 28px;
}

.contact-boxes {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 28px rgba(31, 41, 55, 0.05);
}

.contact-box.strong {
  background: linear-gradient(135deg, var(--navy), #253446);
}

.contact-box .label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-box .value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.contact-box.strong .label,
.contact-box.strong .value {
  color: #fff;
}

.footer {
  margin: 28px 0 0;
  padding: 28px 8px 90px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer p {
  margin: 0;
  max-width: 740px;
  line-height: 1.8;
}

.footer a {
  color: var(--navy);
  font-weight: 800;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.22);
}

.cta-button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.contact-box:hover,
.floating-call:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .topbar {
    border-radius: 28px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 6px;
  }

  .hero,
  .feature-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .site-shell {
    width: min(calc(100% - 18px), var(--max));
    padding-top: 10px;
  }

  .topbar {
    position: static;
    border-radius: 24px;
  }

  .brand {
    width: 100%;
  }

  .brand-tag {
    white-space: normal;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 32px;
  }

  .quick-points,
  .services-grid,
  .contact-boxes {
    grid-template-columns: 1fr;
  }

  .section-card,
  .feature-band {
    padding: 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 96px;
  }

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